diff --git a/.browserslistrc b/.browserslistrc new file mode 100755 index 0000000..8e09ab4 --- /dev/null +++ b/.browserslistrc @@ -0,0 +1,9 @@ +# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries +# For IE 9-11 support, please uncomment the last line of the file and adjust as needed +> 0.5% +last 2 versions +Firefox ESR +not dead +# IE 9-11 \ No newline at end of file diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 0000000..6e87a00 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# Editor configuration, see http://editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +max_line_length = off +trim_trailing_whitespace = false diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..79cd71a --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,42 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + name: MoE Kenya Web Dash Build + runs-on: node + + strategy: + matrix: + node-version: [14.15.5] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + + # - name: Adding to Known Hosts + # run: | + # ssh-keygen -R "[domain.com]:22" || true + # ssh-keyscan -T 100 -t rsa -4 domain.com >> ~/.ssh/known_hosts || true + + - name: Install Packages + run: npm ci + + - name: Build + run: npm run build-prod + + # - name: Deploy to RequestAfrica + # run: rsync -av -e ssh -r dist/* user@domain.com:/usr/www/html/dash diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..085fcd0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. + +# compiled output +/dist +/tmp + +# dependencies +/node_modules + +# IDEs and editors +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# misc +/.angular/cache +/.sass-cache +/connect.lock +/coverage/* +/libpeerconnection.log +npm-debug.log +testem.log +/typings + +# e2e +/e2e/*.js +/e2e/*.map + +#System Files +.DS_Store +Thumbs.db diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100755 index 0000000..7a73a41 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..739a117 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:1.15 +COPY dist/ /usr/share/nginx/html +COPY ./nginx.conf /etc/nginx/conf.d/default.conf \ No newline at end of file diff --git a/README.md b/README.md new file mode 100755 index 0000000..c7f1146 --- /dev/null +++ b/README.md @@ -0,0 +1,151 @@ +# Digital Attendance Dashboard v2 + +## Introduction + +Digital Attendance is an open-source project supported by UNICEF Kenya through a collaboration with [Sisitech](hhttps://sisitech.com). The platform allows tracking of individual attendance of students in schools. + +It is comprised of three components +- API - Django Rest Framework +- Dashboard - Angular Web Application (this) +- Application - Ionic Hybrid Application + + +## User Manual +- [Onekana User Manual](https://sisitech.github.io/OnekanaDocs/) + + + +# Set up + +## 1. Prerequisites + +Before starting, ensure the following are installed: + +- **Node.js** (v14.x or above) - [Download here](https://nodejs.org/en/download/) +- **Angular CLI** (v12.x or above) - [Installation guide](https://angular.io/cli) +- Configure `.npmrc` + +Additionally, ensure the backend API is already set up and browsable, eg `http://localhost:8000` or `https://api.domain.com/`. + +--- + +### Updating .npmrc +#### Generating a GitHub Token + +1. **Log in to GitHub** + Go to [GitHub](https://github.com) and log in to your account. + +2. **Navigate to Personal Access Tokens:** + - Click on your profile icon in the upper-right corner and select **Settings**. + - On the left-hand sidebar, click **Developer settings**. + - Under **Personal access tokens**, click on **Tokens (classic)**. + - Click on **Generate new token**. + +3. **Configure the Token:** + - Add a descriptive note (e.g., “npm access token for SisiTech packages”). + - Set the token expiration according to your security policy. + - Under **Select scopes**, choose: + - `repo` (for accessing private repositories) + - `read:packages` (for reading package metadata) + +4. **Generate and Copy the Token:** + - After configuring the scopes, click **Generate token**. + - Copy the generated token. **Make sure to store it securely,** as it won’t be displayed again. + +#### Updating the `.npmrc` File + +To authenticate npm to use your GitHub token: + +- **Create or Update the `.npmrc` File in Your Project:** + + Navigate to your project’s root directory and either create or update the `.npmrc` file with the following configuration: + + ```ini + //npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN + @sisitech:registry=https://npm.pkg.github.com/ + ``` + + Replace `YOUR_GITHUB_TOKEN` with the token you copied earlier. + + This setup tells npm to use the GitHub Packages registry for all `@sisitech` scoped packages and authenticate using your token. + +- **Verify the Configuration:** + After saving the `.npmrc` file, it should look like this: + + ```ini + //npm.pkg.github.com/:_authToken=ghp_XXXXXXXXXXXXXXXXXXXX + @sisitech:registry=https://npm.pkg.github.com/ + ``` + + Make sure the token is correctly placed, and the scope `@sisitech` points to the GitHub Packages registry. + +If the packages installs without any errors, your configuration is successful otherwise you will get a `401` error. + +--- + +## 2. Cloning the Project + +Begin by cloning the project repository: + +```bash +git clone git@github.com:unicefkenya/da-dashboard-v2.git +cd da-dashboard-v2 +``` + +--- + +## 3. Installing Node Modules + +Run the following command to install the required Node modules: + +```bash +npm install --force +``` + +This command will install all the dependencies defined in the `package.json` file. + +--- + +## 4. Configuring Environment Variables + +The project’s environment configuration is stored in the `src/environments/environment.ts` file. Before running the application, make sure to update the environment variables. Here is an example configuration: + +```typescript +export const environment = { + production: true, + APIEndpoint: 'https://api.domain.com/', + APIEndpointNoSlash: 'https://api.domain.com', + APIv1Endpoint: 'https://api.domain.com/api/v1/', + APIClientID: 'CLIENT_ID_FROM_API' +}; +``` + +--- + +## 5. Generating Client ID in Django Admin + +To obtain the `APIClientID`, follow these steps: + +1. Log in to your Django-admin panel: [https://api.domain.com/admin](https://api.domain.com/admin). +2. Navigate to the **API Clients** section (assuming you have set this up). +3. Create a new client or view existing ones. +4. Copy the `Client ID` and paste it into the `APIClientID` field in the environment configuration. + +For more details on setting up API clients in Django, you can refer to the [Django OAuth Toolkit documentation](https://django-oauth-toolkit.readthedocs.io/en/latest/). + +--- + +## 6. Running the Application + +After configuring the environment, you can start the Angular application using: + +```bash +ng serve +``` + +The application will be accessible at `http://localhost:4200/`. + +--- + +## 7. Learn More +- [Angular Documentation](https://angular.io/docs) diff --git a/angular.json b/angular.json new file mode 100755 index 0000000..00903e4 --- /dev/null +++ b/angular.json @@ -0,0 +1,156 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "cli": { + "analytics": false + }, + "version": 1, + "newProjectRoot": "projects", + "projects": { + "primer": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist", + "index": "src/index.html", + "main": "src/main.ts", + "tsConfig": "src/tsconfig.app.json", + "polyfills": "src/polyfills.ts", + "assets": [ + "src/assets", + "src/favicon.ico" + ], + "styles": [ + "node_modules/quill/dist/quill.snow.css", + "node_modules/quill/dist/quill.bubble.css", + "node_modules/dragula/dist/dragula.css", + "node_modules/leaflet/dist/leaflet.css", + "node_modules/angular-calendar/scss/angular-calendar.scss", + "src/assets/fonts/pe/css/pe-icon-set-weather.css", + "src/assets/fonts/data-table/icons.css", + "src/assets/styles/highlightjs/material-light.css", + "src/assets/styles/app.scss" + ], + "scripts": [ + "node_modules/hammerjs/hammer.min.js", + "node_modules/@popperjs/core/dist/umd/popper.min.js", + "node_modules/bootstrap/dist/js/bootstrap.min.js" + ], + "vendorChunk": true, + "extractLicenses": false, + "buildOptimizer": false, + "sourceMap": true, + "optimization": false, + "namedChunks": true + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "anyComponentStyle", + "maximumWarning": "6kb" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true, + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "primer:build" + }, + "configurations": { + "production": { + "browserTarget": "primer:build:production" + }, + "development": { + "browserTarget": "primer:build:development" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "primer:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "karmaConfig": "src/karma.conf.js", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/tsconfig.spec.json", + "scripts": [ + "node_modules/hammerjs/hammer.min.js" + ], + "styles": [ + "node_modules/quill/dist/quill.snow.css", + "node_modules/quill/dist/quill.bubble.css", + "node_modules/dragula/dist/dragula.css", + "node_modules/leaflet/dist/leaflet.css", + "node_modules/angular-calendar/scss/angular-calendar.scss", + "src/assets/fonts/pe/css/pe-icon-set-weather.css", + "src/assets/fonts/data-table/icons.css", + "src/assets/styles/highlightjs/material-light.css", + "src/assets/styles/app.scss" + ], + "assets": [ + "src/assets", + "src/favicon.ico" + ] + } + } + } + }, + "primer-e2e": { + "root": "", + "sourceRoot": "", + "projectType": "application", + "architect": { + "e2e": { + "builder": "@angular-devkit/build-angular:protractor", + "options": { + "protractorConfig": "./protractor.conf.js", + "devServerTarget": "primer:serve" + } + } + } + } + }, + "defaultProject": "primer", + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..b472f9d --- /dev/null +++ b/build.sh @@ -0,0 +1,7 @@ +#/bin/bash +set -e +VERSION=v1.0.12 +# git push origin main +# npm run build-prod +docker build -t michameiu/moekedash:$VERSION . +docker push michameiu/moekedash:$VERSION diff --git a/e2e/src/app.e2e-spec.ts b/e2e/src/app.e2e-spec.ts new file mode 100755 index 0000000..3e7dccf --- /dev/null +++ b/e2e/src/app.e2e-spec.ts @@ -0,0 +1,13 @@ +import { AppPage } from './app.po'; + +describe('workspace-project App', () => { + let page: AppPage; + + beforeEach(() => { + page = new AppPage(); + }); + + it('should expect true to be true', () => { + expect(true).toBe(true); + }); +}); diff --git a/e2e/src/app.po.ts b/e2e/src/app.po.ts new file mode 100755 index 0000000..82ea75b --- /dev/null +++ b/e2e/src/app.po.ts @@ -0,0 +1,11 @@ +import { browser, by, element } from 'protractor'; + +export class AppPage { + navigateTo() { + return browser.get('/'); + } + + getParagraphText() { + return element(by.css('app-root h1')).getText(); + } +} diff --git a/e2e/tsconfig.e2e.json b/e2e/tsconfig.e2e.json new file mode 100755 index 0000000..08d4659 --- /dev/null +++ b/e2e/tsconfig.e2e.json @@ -0,0 +1,14 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "outDir": "../out-tsc/app", + "module": "commonjs", + "target": "es5", + "types": [ + // "jasmine", + // "jasminewd2", + "jest", + "node" + ] + } +} diff --git a/infrastructure/dash/docker-compose.yml b/infrastructure/dash/docker-compose.yml new file mode 100644 index 0000000..e3496bc --- /dev/null +++ b/infrastructure/dash/docker-compose.yml @@ -0,0 +1,21 @@ +version: "3.9" + +services: + dash: + image: michameiu/moekedash:v1.0.10 + + networks: + - ovencrypt + + deploy: + replicas: 2 + labels: + - "traefik.enable=true" + - "traefik.http.routers.dash.rule=Host(`dash.onekana.ke`) || Host(`onekana.naconek.ke`)" + - "traefik.http.services.dash.loadbalancer.server.port=80" + - "traefik.docker.network=ovencrypt" + +networks: + ovencrypt: + external: true + attachable: true \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..a560219 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,8 @@ +server { + listen 80; + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html =404; + } +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..c6469c5 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,20371 @@ +{ + "name": "wvdigital", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "wvdigital", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@angular/animations": "13.3.12", + "@angular/cdk": "13.3.9", + "@angular/common": "13.3.12", + "@angular/compiler": "13.3.12", + "@angular/core": "13.3.12", + "@angular/flex-layout": "^9.0.0-beta.31", + "@angular/forms": "13.3.12", + "@angular/material": "13.3.9", + "@angular/material-moment-adapter": "6.4.7", + "@angular/platform-browser": "13.3.12", + "@angular/platform-browser-dynamic": "13.3.12", + "@angular/router": "13.3.12", + "@asymmetrik/ngx-leaflet": "4.0.0", + "@ngx-loading-bar/router": "2.2.0", + "@ngx-translate/core": "10.0.2", + "@ngx-translate/http-loader": "3.0.1", + "@popperjs/core": "^2.9.1", + "@sisitech/cards": "0.0.7", + "@sisitech/charts": "^0.4.9", + "@sisitech/myform": "^0.3.1", + "@sisitech/tables": "^0.4.8", + "@sisitech/utils": "^0.3.2", + "@types/chart.js": "^2.9.40", + "@types/googlemaps": "^3.37.6", + "@types/mixpanel-browser": "^2.47.2", + "angular-calendar": "0.26.0", + "bootstrap": "^5.1.3", + "chart.js": "^4.0.1", + "core-js": "2.5.7", + "d3": "5.7.0", + "date-fns": "1.29.0", + "dragula": "3.7.2", + "hammerjs": "2.0.8", + "intl": "1.2.5", + "leaflet": "1.3.4", + "mixpanel-browser": "^2.47.0", + "moment": "^2.22.2", + "ng2-charts": "^2.2.4", + "ng2-dragula": "2.1.0", + "ng2-file-upload": "^1.4.0", + "ng2-validation": "4.2.0", + "ngx-perfect-scrollbar": "6.3.1", + "ngx-quill": "3.4.0", + "quill": "1.3.6", + "rxjs": "6.6.7", + "screenfull": "3.3.3", + "tslib": "^2.0.0", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@agm/core": "^1.0.0-beta.3", + "@angular-devkit/build-angular": "~13.3.10", + "@angular/cli": "13.3.10", + "@angular/compiler-cli": "13.3.12", + "@angular/language-service": "13.3.12", + "@types/jest": "^24.0.15", + "@types/node": "^12.11.1", + "codelyzer": "^6.0.0", + "jest": "^24.8.0", + "jest-preset-angular": "^7.1.1", + "protractor": "~7.0.0", + "ts-node": "~5.0.1", + "tslint": "~6.1.0", + "typescript": "~4.6.4" + } + }, + "node_modules/@agm/core": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@agm/core/-/core-1.1.0.tgz", + "integrity": "sha512-cMvmm3+3/uuVFurLv1FKhE0/6ssIlDvYBjQFCi8ELg7h0OY2MkIU1MXWr7z+f/xZ08E936I4eeddni6k4yUTIA==", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0", + "@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@agm/core/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/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@angular-devkit/architect": { + "version": "0.1303.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.10.tgz", + "integrity": "sha512-A8blp98GY9Lg5RdgZ4M/nT0DhWsFv+YikC6+ebJsUTn/L06GcQNhyZKGCwB69S4Xe/kcYJgKpI2nAYnOLDpJlQ==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "13.3.10", + "rxjs": "6.6.7" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular-devkit/build-angular": { + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.10.tgz", + "integrity": "sha512-eKMjwr7XHlh/lYqYvdIrHZfVPM8fCxP4isKzCDiOjsJ+4fl+Ycq8RvjtOLntBN6A1U8h93rZNE+VOTEGCJcGig==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "2.2.0", + "@angular-devkit/architect": "0.1303.10", + "@angular-devkit/build-webpack": "0.1303.10", + "@angular-devkit/core": "13.3.10", + "@babel/core": "7.16.12", + "@babel/generator": "7.16.8", + "@babel/helper-annotate-as-pure": "7.16.7", + "@babel/plugin-proposal-async-generator-functions": "7.16.8", + "@babel/plugin-transform-async-to-generator": "7.16.8", + "@babel/plugin-transform-runtime": "7.16.10", + "@babel/preset-env": "7.16.11", + "@babel/runtime": "7.16.7", + "@babel/template": "7.16.7", + "@discoveryjs/json-ext": "0.5.6", + "@ngtools/webpack": "13.3.10", + "ansi-colors": "4.1.1", + "babel-loader": "8.2.5", + "babel-plugin-istanbul": "6.1.1", + "browserslist": "^4.9.1", + "cacache": "15.3.0", + "circular-dependency-plugin": "5.2.2", + "copy-webpack-plugin": "10.2.1", + "core-js": "3.20.3", + "critters": "0.0.16", + "css-loader": "6.5.1", + "esbuild-wasm": "0.14.22", + "glob": "7.2.0", + "https-proxy-agent": "5.0.0", + "inquirer": "8.2.0", + "jsonc-parser": "3.0.0", + "karma-source-map-support": "1.4.0", + "less": "4.1.2", + "less-loader": "10.2.0", + "license-webpack-plugin": "4.0.2", + "loader-utils": "3.2.1", + "mini-css-extract-plugin": "2.5.3", + "minimatch": "3.0.5", + "open": "8.4.0", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "6.0.1", + "piscina": "3.2.0", + "postcss": "8.4.5", + "postcss-import": "14.0.2", + "postcss-loader": "6.2.1", + "postcss-preset-env": "7.2.3", + "regenerator-runtime": "0.13.9", + "resolve-url-loader": "5.0.0", + "rxjs": "6.6.7", + "sass": "1.49.9", + "sass-loader": "12.4.0", + "semver": "7.3.5", + "source-map-loader": "3.0.1", + "source-map-support": "0.5.21", + "stylus": "0.56.0", + "stylus-loader": "6.2.0", + "terser": "5.14.2", + "text-table": "0.2.0", + "tree-kill": "1.2.2", + "tslib": "2.3.1", + "webpack": "5.70.0", + "webpack-dev-middleware": "5.3.0", + "webpack-dev-server": "4.7.3", + "webpack-merge": "5.8.0", + "webpack-subresource-integrity": "5.1.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "optionalDependencies": { + "esbuild": "0.14.22" + }, + "peerDependencies": { + "@angular/compiler-cli": "^13.0.0 || ^13.3.0-rc.0", + "@angular/localize": "^13.0.0 || ^13.3.0-rc.0", + "@angular/service-worker": "^13.0.0 || ^13.3.0-rc.0", + "karma": "^6.3.0", + "ng-packagr": "^13.0.0", + "protractor": "^7.0.0", + "tailwindcss": "^2.0.0 || ^3.0.0", + "typescript": ">=4.4.3 <4.7" + }, + "peerDependenciesMeta": { + "@angular/localize": { + "optional": true + }, + "@angular/service-worker": { + "optional": true + }, + "karma": { + "optional": true + }, + "ng-packagr": { + "optional": true + }, + "protractor": { + "optional": true + }, + "tailwindcss": { + "optional": true + } + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/@babel/core": { + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz", + "integrity": "sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.16.7", + "@babel/parser": "^7.16.12", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.10", + "@babel/types": "^7.16.8", + "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/@angular-devkit/build-angular/node_modules/@babel/core/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/@angular-devkit/build-angular/node_modules/@babel/generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz", + "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.8", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/core-js": { + "version": "3.20.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.20.3.tgz", + "integrity": "sha512-vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag==", + "deprecated": "core-js@<3.23.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. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/esbuild": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.22.tgz", + "integrity": "sha512-CjFCFGgYtbFOPrwZNJf7wsuzesx8kqwAffOlbYcFDLFuUtP8xloK1GH+Ai13Qr0RZQf9tE7LMTHJ2iVGJ1SKZA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "esbuild-android-arm64": "0.14.22", + "esbuild-darwin-64": "0.14.22", + "esbuild-darwin-arm64": "0.14.22", + "esbuild-freebsd-64": "0.14.22", + "esbuild-freebsd-arm64": "0.14.22", + "esbuild-linux-32": "0.14.22", + "esbuild-linux-64": "0.14.22", + "esbuild-linux-arm": "0.14.22", + "esbuild-linux-arm64": "0.14.22", + "esbuild-linux-mips64le": "0.14.22", + "esbuild-linux-ppc64le": "0.14.22", + "esbuild-linux-riscv64": "0.14.22", + "esbuild-linux-s390x": "0.14.22", + "esbuild-netbsd-64": "0.14.22", + "esbuild-openbsd-64": "0.14.22", + "esbuild-sunos-64": "0.14.22", + "esbuild-windows-32": "0.14.22", + "esbuild-windows-64": "0.14.22", + "esbuild-windows-arm64": "0.14.22" + } + }, + "node_modules/@angular-devkit/build-angular/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/@angular-devkit/build-angular/node_modules/https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@angular-devkit/build-angular/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/@angular-devkit/build-angular/node_modules/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@angular-devkit/build-angular/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==", + "dev": true + }, + "node_modules/@angular-devkit/build-angular/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/@angular-devkit/build-angular/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@angular-devkit/build-angular/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/@angular-devkit/build-angular/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/@angular-devkit/build-angular/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "node_modules/@angular-devkit/build-angular/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/@angular-devkit/build-webpack": { + "version": "0.1303.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.10.tgz", + "integrity": "sha512-nthTy6r4YQQTrvOpOS3dqjoJog/SL9Hn5YLytqnEp2r2he5evYsKV2Jtqi49/VgW1ohrGzw+bI0c3dUGKweyfw==", + "dev": true, + "dependencies": { + "@angular-devkit/architect": "0.1303.10", + "rxjs": "6.6.7" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "webpack": "^5.30.0", + "webpack-dev-server": "^4.0.0" + } + }, + "node_modules/@angular-devkit/core": { + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.10.tgz", + "integrity": "sha512-NSjyrccES+RkVL/wt1t1jNmJOV9z5H4/DtVjJQbAt/tDE5Mo0ygnhELd/QiUmjVfzfSkhr75LqQD8NtURoGBwQ==", + "dev": true, + "dependencies": { + "ajv": "8.9.0", + "ajv-formats": "2.1.1", + "fast-json-stable-stringify": "2.1.0", + "magic-string": "0.25.7", + "rxjs": "6.6.7", + "source-map": "0.7.3" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/@angular-devkit/core/node_modules/ajv": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz", + "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==", + "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/@angular-devkit/core/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/@angular-devkit/core/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/@angular-devkit/schematics": { + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.10.tgz", + "integrity": "sha512-/G0xInGBfFiJJQET3nKMe8V7Ny+fcxAZsXxFuOpuH2jfKqty9JMmuJw6ll5qEP0h3NnKPsF+9J1Gvq8Bmb4uDQ==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "13.3.10", + "jsonc-parser": "3.0.0", + "magic-string": "0.25.7", + "ora": "5.4.1", + "rxjs": "6.6.7" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular/animations": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-13.3.12.tgz", + "integrity": "sha512-dc2JDokKJuuNxzzZa9FvuQU71kYC/e0xCLjGxEgX48sGKwajHRGBuzYFb8EmvLeA24SshYGmrxN0vGG9GhLK6g==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/core": "13.3.12" + } + }, + "node_modules/@angular/cdk": { + "version": "13.3.9", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-13.3.9.tgz", + "integrity": "sha512-XCuCbeuxWFyo3EYrgEYx7eHzwl76vaWcxtWXl00ka8d+WAOtMQ6Tf1D98ybYT5uwF9889fFpXAPw98mVnlo3MA==", + "dependencies": { + "tslib": "^2.3.0" + }, + "optionalDependencies": { + "parse5": "^5.0.0" + }, + "peerDependencies": { + "@angular/common": "^13.0.0 || ^14.0.0-0", + "@angular/core": "^13.0.0 || ^14.0.0-0", + "rxjs": "^6.5.3 || ^7.4.0" + } + }, + "node_modules/@angular/cli": { + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.10.tgz", + "integrity": "sha512-MssGlWSFv2d8d6b0+ml0NLYWr/X+2FzIleaoEwkYnLeCTBrH07xghVkCbSk8OnTvEmuBcUcsNiPprpLFY4cGEw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@angular-devkit/architect": "0.1303.10", + "@angular-devkit/core": "13.3.10", + "@angular-devkit/schematics": "13.3.10", + "@schematics/angular": "13.3.10", + "@yarnpkg/lockfile": "1.1.0", + "ansi-colors": "4.1.1", + "debug": "4.3.3", + "ini": "2.0.0", + "inquirer": "8.2.0", + "jsonc-parser": "3.0.0", + "npm-package-arg": "8.1.5", + "npm-pick-manifest": "6.1.1", + "open": "8.4.0", + "ora": "5.4.1", + "pacote": "12.0.3", + "resolve": "1.22.0", + "semver": "7.3.5", + "symbol-observable": "4.0.0", + "uuid": "8.3.2" + }, + "bin": { + "ng": "bin/ng.js" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular/cli/node_modules/debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@angular/cli/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@angular/cli/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/@angular/cli/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/@angular/cli/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@angular/cli/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/@angular/common": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.12.tgz", + "integrity": "sha512-Nk4zNKfda92aFe+cucHRv2keyryR7C1ZnsurwZW9WZSobpY3z2tTT81F+yy35lGoMt5BDBAIpfh1b4j9Ue/vMg==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/core": "13.3.12", + "rxjs": "^6.5.3 || ^7.4.0" + } + }, + "node_modules/@angular/compiler": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.12.tgz", + "integrity": "sha512-F5vJYrjbNvEWoVz9J/CqiT3Iod6g9bV0dGI5EeURcW4yHXHZ12ioQpfU3+bE7qXcTlnofbdDhK8cGxGx01SzBA==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + } + }, + "node_modules/@angular/compiler-cli": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.12.tgz", + "integrity": "sha512-6jrdVwexPihWlyitopc3rn2ReEkhAaMI8UWR0SOTnt3NaqNYWeio4bpeWlumgNPElDyY5rmyrmJgeaY8ICa8qA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.17.2", + "chokidar": "^3.0.0", + "convert-source-map": "^1.5.1", + "dependency-graph": "^0.11.0", + "magic-string": "^0.26.0", + "reflect-metadata": "^0.1.2", + "semver": "^7.0.0", + "sourcemap-codec": "^1.4.8", + "tslib": "^2.3.0", + "yargs": "^17.2.1" + }, + "bin": { + "ng-xi18n": "bundles/src/bin/ng_xi18n.js", + "ngc": "bundles/src/bin/ngc.js", + "ngcc": "bundles/ngcc/main-ngcc.js" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/compiler": "13.3.12", + "typescript": ">=4.4.2 <4.7" + } + }, + "node_modules/@angular/compiler-cli/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/@angular/compiler-cli/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/@angular/compiler-cli/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/compiler-cli/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/@angular/compiler-cli/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/@angular/compiler-cli/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/@angular/compiler-cli/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/@angular/compiler-cli/node_modules/magic-string": { + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", + "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.8" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/compiler-cli/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@angular/compiler-cli/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/@angular/compiler-cli/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/@angular/compiler-cli/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@angular/compiler-cli/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@angular/compiler-cli/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/@angular/compiler-cli/node_modules/yargs": { + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/compiler-cli/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/core": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.12.tgz", + "integrity": "sha512-jx0YC+NbPMbxGr5bXECkCEQv2RdVxR8AJNnabkPk8ZjwCpDzROrbELwwS1kunrZUhffcD15IhWGBvf1EGHAYDw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "rxjs": "^6.5.3 || ^7.4.0", + "zone.js": "~0.11.4" + } + }, + "node_modules/@angular/flex-layout": { + "version": "9.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-9.0.0-beta.31.tgz", + "integrity": "sha512-g94u2mecDl87ORvFRuOBshV/S/ETE4bybClU2e1xXKWNG+rhRHchChneHSonc29ZLyROTjHhmAtKOYojL92uLA==", + "deprecated": "This package has been deprecated. Please see https://blog.angular.io/modern-css-in-angular-layouts-4a259dca9127", + "peerDependencies": { + "@angular/cdk": "^9.0.0-rc.8", + "@angular/common": ">=9.1.5", + "@angular/core": ">=9.1.5", + "@angular/platform-browser": ">=9.1.5", + "rxjs": "^6.0.0", + "tslib": "^1.9.0" + } + }, + "node_modules/@angular/forms": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-13.3.12.tgz", + "integrity": "sha512-auow1TKZx44ha1ia8Jwg2xp2Q7BbpShG5Ft8tewL3T44aTmJY7svWOE/m+DkZ/SXHmTFnbZFobGU5aEfe0+pNw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/common": "13.3.12", + "@angular/core": "13.3.12", + "@angular/platform-browser": "13.3.12", + "rxjs": "^6.5.3 || ^7.4.0" + } + }, + "node_modules/@angular/language-service": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-13.3.12.tgz", + "integrity": "sha512-h4zYAmDLxR3DfqfHgOwxuiuX1WDYpYCYwVRYKmk4Mo2AtrRyNwQmkktPgpOFDK9F3gSZ35hbXniuSZbvyy53+g==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + } + }, + "node_modules/@angular/material": { + "version": "13.3.9", + "resolved": "https://registry.npmjs.org/@angular/material/-/material-13.3.9.tgz", + "integrity": "sha512-FU8lcMgo+AL8ckd27B4V097ZPoIZNRHiCe3wpgkImT1qC0YwcyXZVn0MqQTTFSdC9a/aI8wPm3AbTClJEVw5Vw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "peerDependencies": { + "@angular/animations": "^13.0.0 || ^14.0.0-0", + "@angular/cdk": "13.3.9", + "@angular/common": "^13.0.0 || ^14.0.0-0", + "@angular/core": "^13.0.0 || ^14.0.0-0", + "@angular/forms": "^13.0.0 || ^14.0.0-0", + "@angular/platform-browser": "^13.0.0 || ^14.0.0-0", + "rxjs": "^6.5.3 || ^7.4.0" + } + }, + "node_modules/@angular/material-moment-adapter": { + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/@angular/material-moment-adapter/-/material-moment-adapter-6.4.7.tgz", + "integrity": "sha512-OGdDtpu/yRioOQXhJFCNuiOF2OgiL9VUj8ewFPi1lDtFGUFfVwU2h3hWkKLn+yuPW+DBVYla11tCNsn5dLElmA==", + "dependencies": { + "tslib": "^1.7.1" + }, + "peerDependencies": { + "@angular/core": ">=6.0.0-beta.0 <7.0.0", + "@angular/material": "6.4.7", + "moment": "^2.18.1" + } + }, + "node_modules/@angular/material-moment-adapter/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@angular/platform-browser": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.12.tgz", + "integrity": "sha512-sfhQqU4xjTJCjkH62TQeH5/gkay/KzvNDF95J6NHi/Q6p2dbtzZdXuLJKR/sHxtF2kc505z5v9RNm6XMSXM1KA==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/animations": "13.3.12", + "@angular/common": "13.3.12", + "@angular/core": "13.3.12" + }, + "peerDependenciesMeta": { + "@angular/animations": { + "optional": true + } + } + }, + "node_modules/@angular/platform-browser-dynamic": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-13.3.12.tgz", + "integrity": "sha512-/hBggov0PxK/KNJqIu3MVc5k8f0iDbygDP8Z1k/J0FcllOSRdO4LsQd1fsCfGfwIUf0YWGyD7KraSGpBBiWlFg==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/common": "13.3.12", + "@angular/compiler": "13.3.12", + "@angular/core": "13.3.12", + "@angular/platform-browser": "13.3.12" + } + }, + "node_modules/@angular/router": { + "version": "13.3.12", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.12.tgz", + "integrity": "sha512-X+TAxTAlqUd2gPm6drFBGVzQsbQWM5wmZ8S5D5i+86x7Ku0v2CUFICT6AUPSl9+FTPiexlL4FdmvQV2CnGTSUw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" + }, + "peerDependencies": { + "@angular/common": "13.3.12", + "@angular/core": "13.3.12", + "@angular/platform-browser": "13.3.12", + "rxjs": "^6.5.3 || ^7.4.0" + } + }, + "node_modules/@assemblyscript/loader": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", + "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", + "dev": true + }, + "node_modules/@asymmetrik/ngx-leaflet": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@asymmetrik/ngx-leaflet/-/ngx-leaflet-4.0.0.tgz", + "integrity": "sha512-DT+uOaysb01Egmhd58ftR6BOKI0JD7Uwt8/g6uRthFKGjWwmnOpmXJpPa2eF/lEhl2DAHx61XqJK2t/fmIlmJA==", + "peerDependencies": { + "@angular/common": ">=6", + "@angular/core": ">=6", + "leaflet": "1" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", + "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", + "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.2.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "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.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", + "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", + "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers/node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function/node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function/node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers/node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", + "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.2" + }, + "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.18.6", + "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.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", + "@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.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", + "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@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-class-static-block/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@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-dynamic-import/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@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-export-namespace-from/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@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-json-strings/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@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-logical-assignment-operators/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@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-nullish-coalescing-operator/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@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-numeric-separator/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@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-catch-binding/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", + "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.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-optional-chaining/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", + "@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-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.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-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-transform-arrow-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", + "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", + "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", + "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", + "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/template": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties/node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", + "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name/node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-function-name/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-function-name/node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", + "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-identifier": "^7.19.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs/node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-new-target/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", + "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.10.tgz", + "integrity": "sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.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.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex/node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@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.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", + "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/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz", + "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", + "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.2", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", + "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz", + "integrity": "sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4", + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz", + "integrity": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "dev": true, + "dependencies": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/console/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", + "dev": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/core/node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/core/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/core/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/@jest/core/node_modules/braces/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/@jest/core/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/@jest/core/node_modules/fill-range/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/@jest/core/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/@jest/core/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/@jest/core/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/@jest/core/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/core/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/@jest/core/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/@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", + "dev": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/reporters/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/reporters/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/@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/source-map/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/@jest/source-map/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/@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "dev": true, + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", + "dev": true, + "dependencies": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/transform/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/@jest/transform/node_modules/braces/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/@jest/transform/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/@jest/transform/node_modules/fill-range/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/@jest/transform/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/@jest/transform/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/@jest/transform/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/@jest/transform/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/transform/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/@jest/transform/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/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@kurkle/color": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz", + "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==" + }, + "node_modules/@mattlewis92/dom-autoscroller": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@mattlewis92/dom-autoscroller/-/dom-autoscroller-2.4.2.tgz", + "integrity": "sha512-YbrUWREPGEjE/FU6foXcAT1YbVwqD/jkYnY1dFb0o4AxtP3s4xKBthlELjndZih8uwsDWgQZx1eNskRNe2BgZQ==" + }, + "node_modules/@ngtools/webpack": { + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.10.tgz", + "integrity": "sha512-QQ8ELLqW5PtvrEAMt99D0s982NW303k8UpZrQoQ9ODgnSVDMdbbzFPNTXq/20dg+nbp8nlOakUrkjB47TBwTNA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^13.0.0", + "typescript": ">=4.4.3 <4.7", + "webpack": "^5.30.0" + } + }, + "node_modules/@ngx-loading-bar/core": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ngx-loading-bar/core/-/core-2.2.0.tgz", + "integrity": "sha512-0jcnEzuhqE/c+4iAumJ/0D4GBWm4RRVas0+qXpX4Wm225SJoE5KupUOlMrvLnJNK2bn8NW31dEj80kJ+UzhE5A==", + "dependencies": { + "tslib": "^1.7.1" + }, + "peerDependencies": { + "@angular/common": ">=5.0.0", + "rxjs": "^5.6.0-forward-compat.0 || ^6.0.0-beta.0" + } + }, + "node_modules/@ngx-loading-bar/core/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@ngx-loading-bar/router": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ngx-loading-bar/router/-/router-2.2.0.tgz", + "integrity": "sha512-/lrWc0ZwGcpmuoa26/h0rC7SRVKgCtsikhy0mVXwrb1VVJ+sRU8vNKbq7aidcvEY5vdi3l0Z7DcVq9+JV/i/BQ==", + "dependencies": { + "@ngx-loading-bar/core": "2.2.0", + "tslib": "^1.7.1" + }, + "peerDependencies": { + "@angular/router": ">=5.0.0", + "rxjs": "^5.6.0-forward-compat.0 || ^6.0.0-beta.0" + } + }, + "node_modules/@ngx-loading-bar/router/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@ngx-translate/core": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@ngx-translate/core/-/core-10.0.2.tgz", + "integrity": "sha512-7nM3DrJaqKswwtJlbu2kuKNl+hE8Isr18sKsKvGGpSxQk+G0gO0reDlx2PhUNus7TJTkA1C59vU/JoN8hIvZ4g==", + "dependencies": { + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/core": ">=6.0.0", + "rxjs": ">=6.0.0" + } + }, + "node_modules/@ngx-translate/core/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@ngx-translate/http-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@ngx-translate/http-loader/-/http-loader-3.0.1.tgz", + "integrity": "sha1-ILD5i8bCUyESnT4zAqs8xInApCo=", + "dependencies": { + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/common": ">=6.0.0-rc.0", + "@angular/core": ">=6.0.0-rc.0", + "@ngx-translate/core": ">=10.0.0" + } + }, + "node_modules/@ngx-translate/http-loader/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "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/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/fs/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/@npmcli/fs/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/fs/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/@npmcli/git": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz", + "integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==", + "dev": true, + "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/@npmcli/git/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/@npmcli/git/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/git/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/git/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/@npmcli/git/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/@npmcli/installed-package-contents": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz", + "integrity": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==", + "dev": true, + "dependencies": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "installed-package-contents": "index.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/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/@npmcli/node-gyp": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz", + "integrity": "sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==", + "dev": true + }, + "node_modules/@npmcli/promise-spawn": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz", + "integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==", + "dev": true, + "dependencies": { + "infer-owner": "^1.0.4" + } + }, + "node_modules/@npmcli/run-script": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-2.0.0.tgz", + "integrity": "sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==", + "dev": true, + "dependencies": { + "@npmcli/node-gyp": "^1.0.2", + "@npmcli/promise-spawn": "^1.3.2", + "node-gyp": "^8.2.0", + "read-package-json-fast": "^2.0.1" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.4.tgz", + "integrity": "sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@schematics/angular": { + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.10.tgz", + "integrity": "sha512-sw6K8YihfcqNyfa2/65ACPixZHQJRBw1aNm8w0DRGFyO3aXRe9G5X23MkCMLH+63oK9R1cK63/fZ8zqfdSq7zA==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "13.3.10", + "@angular-devkit/schematics": "13.3.10", + "jsonc-parser": "3.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@sisitech/cards": { + "version": "0.0.7", + "resolved": "https://npm.pkg.github.com/download/@sisitech/cards/0.0.7/5b39700165a6b0f0d3dc7c79a47ca3b58beda8ab", + "integrity": "sha512-tH/b4zZ4uuyR3267lOW1iKGe0AI4ktny3tHxJgFd+Ub1J/zXfAWQdWRS2/aoGKcyOX8OlUsbk0jHg5bNmQXNhg==", + "dependencies": { + "tslib": "^2.3.0" + }, + "peerDependencies": { + "@angular/common": "^13.3.0", + "@angular/core": "^13.3.0" + } + }, + "node_modules/@sisitech/charts": { + "version": "0.4.9", + "resolved": "https://npm.pkg.github.com/download/@sisitech/charts/0.4.9/401e18143d464f959d23ef7a210128ae5f06b2e5", + "integrity": "sha512-Y5UEOpafQWLG4qtepuNprsIl2mR8Ow14OQuYq8l5WaGYZyftejmR/aY+F7AogmdcN62FbYK+1N/K1NlRFGHODw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "peerDependencies": { + "@angular/common": "^13.2.0", + "@angular/core": "^13.2.0", + "@sisitech/cards": "0.0.4" + } + }, + "node_modules/@sisitech/myform": { + "version": "0.3.1", + "resolved": "https://npm.pkg.github.com/download/@sisitech/myform/0.3.1/1ab23fba0e122a4de58dae5df1b4c84051ceae7a", + "integrity": "sha512-LujP861BVYH+yEC2qsBNrWtZeuZsM1BzaSpdzIY+SIjQ2ge6UgzCBzHljDRBSnlVkhcM6IJl71L5AGE2nk+JkA==", + "dependencies": { + "tslib": "^2.3.0" + }, + "peerDependencies": { + "@angular/common": "^13.2.0", + "@angular/core": "^13.2.0" + } + }, + "node_modules/@sisitech/tables": { + "version": "0.4.8", + "resolved": "https://npm.pkg.github.com/download/@sisitech/tables/0.4.8/64572d605caa82b4d0a789031785eaf7d67316d9", + "integrity": "sha512-Okd6GuZZep3jZUTynlqplSjbyw3/MqJM1xqVbVa4XDkcUeUPh/2cAFRAyxk6ZJ4iHwxbV0qpclJTmDl4LOk+hA==", + "dependencies": { + "tslib": "^2.3.0" + }, + "peerDependencies": { + "@angular/common": "^13.2.0", + "@angular/core": "^13.2.0" + } + }, + "node_modules/@sisitech/utils": { + "version": "0.3.3", + "resolved": "https://npm.pkg.github.com/download/@sisitech/utils/0.3.3/7aaf2e2f69fa49e4d886f5695d711ddf7d812242", + "integrity": "sha512-775/llEiH2aRF/Qt/fVHV6ED+4cqo4kyzJTHwrjngRoFybqVYXE9PMtbhlb8CuJEb9O1y/cmlZYXnuYdLMAdXA==", + "dependencies": { + "tslib": "^2.3.0" + }, + "peerDependencies": { + "@angular/common": "^13.3.0", + "@angular/core": "^13.3.0" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@types/babel__core": { + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.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/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/chart.js": { + "version": "2.9.40", + "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.40.tgz", + "integrity": "sha512-ApIH2LIDXzKTNtG4oTMmn2CIII6lvRvxyKnmLb1zYFlwXtE4lTOb2ywgXQJYVuhgWpqaCSHSYOlzO+5gs6hL+A==", + "dependencies": { + "moment": "^2.10.2" + } + }, + "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/dragula": { + "version": "2.1.36", + "resolved": "https://registry.npmjs.org/@types/dragula/-/dragula-2.1.36.tgz", + "integrity": "sha512-K1GIMqdiviBIvUsLJPO1xkjpDFS308nU2l57zmV7LEO+znF3gtZGnWQ+c/ef78r6Ngb0cniQk8pnNkObeNlXQQ==" + }, + "node_modules/@types/eslint": { + "version": "8.21.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz", + "integrity": "sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/googlemaps": { + "version": "3.43.3", + "resolved": "https://registry.npmjs.org/@types/googlemaps/-/googlemaps-3.43.3.tgz", + "integrity": "sha512-ZWNoz/O8MPEpiajvj7QiqCY8tTLFNqNZ/a+s+zTV58wFVNAvvqV4bdGfnsjTb5Cs4V6wEsLrX8XRhmnyYJ2Tdg==", + "deprecated": "Types for the Google Maps browser API have moved to @types/google.maps. Note: these types are not for the googlemaps npm package, which is a Node API." + }, + "node_modules/@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "24.9.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-24.9.1.tgz", + "integrity": "sha512-Fb38HkXSVA4L8fGKEZ6le5bB8r6MRWlOCZbVuWZcmOMSCd2wCYOwN1ibj8daIoV9naq7aaOZjrLCoCMptKU/4Q==", + "dev": true, + "dependencies": { + "jest-diff": "^24.3.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "dev": true + }, + "node_modules/@types/mixpanel-browser": { + "version": "2.47.2", + "resolved": "https://registry.npmjs.org/@types/mixpanel-browser/-/mixpanel-browser-2.47.2.tgz", + "integrity": "sha512-8tRG6+uGcZps5HLRqXDkQ8Rm1WGNkpqQMvf4oCOsejDWyKBFbdKqtBddc1vhI4DhMt1VXeGuk95xCQq329Y++A==" + }, + "node_modules/@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "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/q": { + "version": "0.0.32", + "resolved": "https://registry.npmjs.org/@types/q/-/q-0.0.32.tgz", + "integrity": "sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug==", + "dev": true + }, + "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/quill": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@types/quill/-/quill-1.3.3.tgz", + "integrity": "sha512-QngAyrmDusY3Jg3SwUWDMPPSE7HbErJTTj1K6fMkKkopUyp/JWuATyb2/wK7RaFJ886oSR6s6vjsL/fRAV7Xyw==" + }, + "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/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/selenium-webdriver": { + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.20.tgz", + "integrity": "sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA==", + "dev": true + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dev": true, + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "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/@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/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dev": true, + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "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/acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/adm-zip": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", + "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/agent-base": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", + "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", + "dev": true, + "dependencies": { + "es6-promisify": "^5.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/agentkeepalive": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/agentkeepalive/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz", + "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==", + "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-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "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/ajv-formats/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/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/angular-calendar": { + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/angular-calendar/-/angular-calendar-0.26.0.tgz", + "integrity": "sha512-ZTf0u/uxBo8T0a4CzoBrU3/F0YmdpvoaNt99CbgUqwGQ17YPJM8N1G9dBSh2FWQfeO7aGslgb9TOQlhKHqTQQQ==", + "dependencies": { + "angular-draggable-droppable": "^4.0.1", + "angular-resizable-element": "^3.2.2", + "calendar-utils": "^0.2.0", + "positioning": "^1.4.0", + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/animations": ">=6.0.0 <8.0.0", + "@angular/common": ">=6.0.0 <8.0.0", + "@angular/core": ">=6.0.0 <8.0.0" + } + }, + "node_modules/angular-calendar/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/angular-draggable-droppable": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/angular-draggable-droppable/-/angular-draggable-droppable-4.6.0.tgz", + "integrity": "sha512-+8JhTDMKkc/NuFFqb8/H/QHpB+v4Z7YNrgvEbV+PQxXry19rkr89ofZgjNIXhZexTvJNb03BYlSQoknzXE9b3g==", + "dependencies": { + "@mattlewis92/dom-autoscroller": "^2.4.2", + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/core": ">=6.0.0" + } + }, + "node_modules/angular-draggable-droppable/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/angular-resizable-element": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/angular-resizable-element/-/angular-resizable-element-3.4.0.tgz", + "integrity": "sha512-xL5a8FmghzrZmHPy7uwWz98m91gRXgAcdeCRYcK/nD7psXMTYNk5EPmHA0qZTDCIYljhT4h0OKWLvx56NQGfDA==", + "dependencies": { + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/core": ">=6.0.0" + } + }, + "node_modules/angular-resizable-element/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "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-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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": "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/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.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-root-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz", + "integrity": "sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "deprecated": "This package is no longer supported.", + "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/are-we-there-yet/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/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/aria-query": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", + "integrity": "sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw==", + "dev": true, + "dependencies": { + "ast-types-flow": "0.0.7", + "commander": "^2.11.0" + } + }, + "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-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "dev": true + }, + "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-union": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "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/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "dev": true + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "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/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "node_modules/atoa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atoa/-/atoa-1.0.0.tgz", + "integrity": "sha1-DMDpGkgOc4+SPrwQNnZHF3mzSkk=" + }, + "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/autoprefixer": { + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "node_modules/axobject-query": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz", + "integrity": "sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww==", + "dev": true, + "dependencies": { + "ast-types-flow": "0.0.7" + } + }, + "node_modules/babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", + "dev": true, + "dependencies": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-loader": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.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-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "dev": true, + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz", + "integrity": "sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.2", + "core-js-compat": "^3.21.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "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=", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "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==", + "deprecated": "Please upgrade to v1.0.1", + "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==", + "deprecated": "Please upgrade to v1.0.1", + "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" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "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/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": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/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/blocking-proxy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", + "integrity": "sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "blocking-proxy": "built/lib/bin.js" + }, + "engines": { + "node": ">=6.9.x" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "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 + }, + "node_modules/bootstrap": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.1.3.tgz", + "integrity": "sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + }, + "peerDependencies": { + "@popperjs/core": "^2.10.2" + } + }, + "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/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "dependencies": { + "resolve": "1.1.7" + } + }, + "node_modules/browser-resolve/node_modules/resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/browserstack": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.6.1.tgz", + "integrity": "sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==", + "dev": true, + "dependencies": { + "https-proxy-agent": "^2.2.1" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "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" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "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/builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "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/cacache/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/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache/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/cacache/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/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/calendar-utils": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/calendar-utils/-/calendar-utils-0.2.3.tgz", + "integrity": "sha512-wXxvJX/fdVZqrHeyxEWq5kbwALXrjifbY2L3fXvuS815cCwoWv+Uuiu0jkfqZNTtOSKaTXHdMkIhmLRqcC0E5g==" + }, + "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==", + "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.30001651", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", + "integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "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/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chart.js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.0.tgz", + "integrity": "sha512-vQEj6d+z0dcsKLlQvbKIMYFHd3t8W/7L2vfJIbYcfyPcRx92CsHqECpueN8qVGNlKyDcr5wBrYAYKnfu/9Q1hQ==", + "dependencies": { + "@kurkle/color": "^0.3.0" + }, + "engines": { + "pnpm": ">=7" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "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/chokidar/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/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "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/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "node_modules/circular-dependency-plugin": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz", + "integrity": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==", + "dev": true, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "webpack": ">=4.0.1" + } + }, + "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/class-utils/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/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "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.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "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": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "engines": { + "node": ">=0.8" + } + }, + "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/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/codelyzer": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/codelyzer/-/codelyzer-6.0.2.tgz", + "integrity": "sha512-v3+E0Ucu2xWJMOJ2fA/q9pDT/hlxHftHGPUay1/1cTgyPV5JTHFdO9hqo837Sx2s9vKBMTt5gO+lhF95PO6J+g==", + "dev": true, + "dependencies": { + "@angular/compiler": "9.0.0", + "@angular/core": "9.0.0", + "app-root-path": "^3.0.0", + "aria-query": "^3.0.0", + "axobject-query": "2.0.2", + "css-selector-tokenizer": "^0.7.1", + "cssauron": "^1.4.0", + "damerau-levenshtein": "^1.0.4", + "rxjs": "^6.5.3", + "semver-dsl": "^1.0.1", + "source-map": "^0.5.7", + "sprintf-js": "^1.1.2", + "tslib": "^1.10.0", + "zone.js": "~0.10.3" + }, + "peerDependencies": { + "@angular/compiler": ">=2.3.1 <13.0.0 || ^12.0.0-next || ^12.1.0-next || ^12.2.0-next", + "@angular/core": ">=2.3.1 <13.0.0 || ^12.0.0-next || ^12.1.0-next || ^12.2.0-next", + "tslint": "^5.0.0 || ^6.0.0" + } + }, + "node_modules/codelyzer/node_modules/@angular/compiler": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-9.0.0.tgz", + "integrity": "sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ==", + "dev": true, + "peerDependencies": { + "tslib": "^1.10.0" + } + }, + "node_modules/codelyzer/node_modules/@angular/core": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-9.0.0.tgz", + "integrity": "sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w==", + "dev": true, + "peerDependencies": { + "rxjs": "^6.5.3", + "tslib": "^1.10.0", + "zone.js": "~0.10.2" + } + }, + "node_modules/codelyzer/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/codelyzer/node_modules/sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "dev": true + }, + "node_modules/codelyzer/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/codelyzer/node_modules/zone.js": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.10.3.tgz", + "integrity": "sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==", + "dev": true + }, + "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-convert/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/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/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "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==" + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "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/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/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/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/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/contra": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/contra/-/contra-1.9.4.tgz", + "integrity": "sha1-9TveQtfltZhcrk2ZqNYQUm3o8o0=", + "dependencies": { + "atoa": "1.0.0", + "ticky": "1.0.1" + } + }, + "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.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "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": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, + "dependencies": { + "is-what": "^3.14.1" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "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/copy-webpack-plugin": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.1.tgz", + "integrity": "sha512-nr81NhCAIpAWXGCK5thrKmfCQ6GDY0L5RN0U+BnIn/7Us55+UCex5ANNsNKmIVtDRnk0Ecf+/kzp9SUVrrBMLg==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^12.0.2", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 12.20.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "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/copy-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/copy-webpack-plugin/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/copy-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "deprecated": "core-js@<3.23.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. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js." + }, + "node_modules/core-js-compat": { + "version": "3.28.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz", + "integrity": "sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-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": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/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/critters": { + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "css-select": "^4.2.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "postcss": "^8.3.7", + "pretty-bytes": "^5.3.0" + } + }, + "node_modules/critters/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/critters/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/critters/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/critters/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/critters/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/critters/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/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/cross-spawn/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/crossvent": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/crossvent/-/crossvent-1.5.4.tgz", + "integrity": "sha1-2ixPj0DJR4JRe/K+7BBEFIGUq5I=", + "dependencies": { + "custom-event": "1.0.0" + } + }, + "node_modules/css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz", + "integrity": "sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.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", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-loader/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/css-loader/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/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/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "dev": true, + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "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, + "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-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "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, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css/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/css/node_modules/source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "node_modules/cssauron": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz", + "integrity": "sha512-Ht70DcFBh+/ekjVrYS2PlDMdSQEl3OFNmjK6lcn49HptBgilXf/Zwg4uFh9Xn0pX3Q8YOkSjIFOfK2osvdqpBw==", + "dev": true, + "dependencies": { + "through": "X.X.X" + } + }, + "node_modules/cssdb": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-5.1.0.tgz", + "integrity": "sha512-/vqjXhv1x9eGkE/zO6o8ZOI7dgdZbLVLUGyVRbPgk6YipXbW87YzUCcO+Jrmi5bwJlAH6oD+MNeZyRgXea1GZw==", + "dev": true + }, + "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/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "dev": true, + "dependencies": { + "cssom": "0.3.x" + } + }, + "node_modules/custom-event": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.0.tgz", + "integrity": "sha1-LkYovhncSyFLXAJjDFlx6BFhgGI=" + }, + "node_modules/d3": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-5.7.0.tgz", + "integrity": "sha512-8KEIfx+dFm8PlbJN9PI0suazrZ41QcaAufsKE9PRcqYPWLngHIyWJZX96n6IQKePGgeSu0l7rtlueSSNq8Zc3g==", + "dependencies": { + "d3-array": "1", + "d3-axis": "1", + "d3-brush": "1", + "d3-chord": "1", + "d3-collection": "1", + "d3-color": "1", + "d3-contour": "1", + "d3-dispatch": "1", + "d3-drag": "1", + "d3-dsv": "1", + "d3-ease": "1", + "d3-fetch": "1", + "d3-force": "1", + "d3-format": "1", + "d3-geo": "1", + "d3-hierarchy": "1", + "d3-interpolate": "1", + "d3-path": "1", + "d3-polygon": "1", + "d3-quadtree": "1", + "d3-random": "1", + "d3-scale": "2", + "d3-scale-chromatic": "1", + "d3-selection": "1", + "d3-shape": "1", + "d3-time": "1", + "d3-time-format": "2", + "d3-timer": "1", + "d3-transition": "1", + "d3-voronoi": "1", + "d3-zoom": "1" + } + }, + "node_modules/d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" + }, + "node_modules/d3-axis": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-1.0.12.tgz", + "integrity": "sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ==" + }, + "node_modules/d3-brush": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-1.1.6.tgz", + "integrity": "sha512-7RW+w7HfMCPyZLifTz/UnJmI5kdkXtpCbombUSs8xniAyo0vIbrDzDwUJB6eJOgl9u5DQOt2TQlYumxzD1SvYA==", + "dependencies": { + "d3-dispatch": "1", + "d3-drag": "1", + "d3-interpolate": "1", + "d3-selection": "1", + "d3-transition": "1" + } + }, + "node_modules/d3-chord": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz", + "integrity": "sha512-JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA==", + "dependencies": { + "d3-array": "1", + "d3-path": "1" + } + }, + "node_modules/d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", + "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + }, + "node_modules/d3-color": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", + "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + }, + "node_modules/d3-contour": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz", + "integrity": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==", + "dependencies": { + "d3-array": "^1.1.1" + } + }, + "node_modules/d3-dispatch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", + "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" + }, + "node_modules/d3-drag": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.5.tgz", + "integrity": "sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==", + "dependencies": { + "d3-dispatch": "1", + "d3-selection": "1" + } + }, + "node_modules/d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", + "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "dependencies": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json", + "csv2tsv": "bin/dsv2dsv", + "dsv2dsv": "bin/dsv2dsv", + "dsv2json": "bin/dsv2json", + "json2csv": "bin/json2dsv", + "json2dsv": "bin/json2dsv", + "json2tsv": "bin/json2dsv", + "tsv2csv": "bin/dsv2dsv", + "tsv2json": "bin/dsv2json" + } + }, + "node_modules/d3-ease": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.7.tgz", + "integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==" + }, + "node_modules/d3-fetch": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-1.2.0.tgz", + "integrity": "sha512-yC78NBVcd2zFAyR/HnUiBS7Lf6inSCoWcSxFfw8FYL7ydiqe80SazNwoffcqOfs95XaLo7yebsmQqDKSsXUtvA==", + "dependencies": { + "d3-dsv": "1" + } + }, + "node_modules/d3-force": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz", + "integrity": "sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg==", + "dependencies": { + "d3-collection": "1", + "d3-dispatch": "1", + "d3-quadtree": "1", + "d3-timer": "1" + } + }, + "node_modules/d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "node_modules/d3-geo": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.12.1.tgz", + "integrity": "sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg==", + "dependencies": { + "d3-array": "1" + } + }, + "node_modules/d3-hierarchy": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz", + "integrity": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" + }, + "node_modules/d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", + "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "dependencies": { + "d3-color": "1" + } + }, + "node_modules/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" + }, + "node_modules/d3-polygon": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.6.tgz", + "integrity": "sha512-k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ==" + }, + "node_modules/d3-quadtree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.7.tgz", + "integrity": "sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA==" + }, + "node_modules/d3-random": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-1.1.2.tgz", + "integrity": "sha512-6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ==" + }, + "node_modules/d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", + "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", + "dependencies": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz", + "integrity": "sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg==", + "dependencies": { + "d3-color": "1", + "d3-interpolate": "1" + } + }, + "node_modules/d3-selection": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.2.tgz", + "integrity": "sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg==" + }, + "node_modules/d3-shape": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", + "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "dependencies": { + "d3-path": "1" + } + }, + "node_modules/d3-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", + "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + }, + "node_modules/d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", + "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "dependencies": { + "d3-time": "1" + } + }, + "node_modules/d3-timer": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz", + "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==" + }, + "node_modules/d3-transition": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.3.2.tgz", + "integrity": "sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==", + "dependencies": { + "d3-color": "1", + "d3-dispatch": "1", + "d3-ease": "1", + "d3-interpolate": "1", + "d3-selection": "^1.1.0", + "d3-timer": "1" + } + }, + "node_modules/d3-voronoi": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", + "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" + }, + "node_modules/d3-zoom": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.8.3.tgz", + "integrity": "sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==", + "dependencies": { + "d3-dispatch": "1", + "d3-drag": "1", + "d3-interpolate": "1", + "d3-selection": "1", + "d3-transition": "1" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/date-fns": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.29.0.tgz", + "integrity": "sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "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/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==", + "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/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/default-gateway/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/default-gateway/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/default-gateway/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/default-gateway/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/default-gateway/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/default-gateway/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/default-gateway/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/default-gateway/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/default-gateway/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/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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==", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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/define-property/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==", + "deprecated": "Please upgrade to v1.0.1", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/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==", + "deprecated": "Please upgrade to v1.0.1", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/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/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "dev": true, + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/del/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/del/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/del/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/del/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/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "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": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "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": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "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, + "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" + } + ] + }, + "node_modules/domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "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, + "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, + "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/dragula": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/dragula/-/dragula-3.7.2.tgz", + "integrity": "sha1-SjXJ05gf+sGpScKcpyhQWOhzk84=", + "dependencies": { + "contra": "1.9.4", + "crossvent": "1.5.4" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", + "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==", + "dev": true + }, + "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/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": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "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, + "optional": 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/es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", + "dev": true + }, + "node_modules/es6-promisify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", + "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", + "dev": true, + "dependencies": { + "es6-promise": "^4.0.3" + } + }, + "node_modules/esbuild-android-arm64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.22.tgz", + "integrity": "sha512-k1Uu4uC4UOFgrnTj2zuj75EswFSEBK+H6lT70/DdS4mTAOfs2ECv2I9ZYvr3w0WL0T4YItzJdK7fPNxcPw6YmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.22.tgz", + "integrity": "sha512-d8Ceuo6Vw6HM3fW218FB6jTY6O3r2WNcTAU0SGsBkXZ3k8SDoRLd3Nrc//EqzdgYnzDNMNtrWegK2Qsss4THhw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-arm64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.22.tgz", + "integrity": "sha512-YAt9Tj3SkIUkswuzHxkaNlT9+sg0xvzDvE75LlBo4DI++ogSgSmKNR6B4eUhU5EUUepVXcXdRIdqMq9ppeRqfw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.22.tgz", + "integrity": "sha512-ek1HUv7fkXMy87Qm2G4IRohN+Qux4IcnrDBPZGXNN33KAL0pEJJzdTv0hB/42+DCYWylSrSKxk3KUXfqXOoH4A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-arm64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.22.tgz", + "integrity": "sha512-zPh9SzjRvr9FwsouNYTqgqFlsMIW07O8mNXulGeQx6O5ApgGUBZBgtzSlBQXkHi18WjrosYfsvp5nzOKiWzkjQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-32": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.22.tgz", + "integrity": "sha512-SnpveoE4nzjb9t2hqCIzzTWBM0RzcCINDMBB67H6OXIuDa4KqFqaIgmTchNA9pJKOVLVIKd5FYxNiJStli21qg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.22.tgz", + "integrity": "sha512-Zcl9Wg7gKhOWWNqAjygyqzB+fJa19glgl2JG7GtuxHyL1uEnWlpSMytTLMqtfbmRykIHdab797IOZeKwk5g0zg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.22.tgz", + "integrity": "sha512-soPDdbpt/C0XvOOK45p4EFt8HbH5g+0uHs5nUKjHVExfgR7du734kEkXR/mE5zmjrlymk5AA79I0VIvj90WZ4g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.22.tgz", + "integrity": "sha512-8q/FRBJtV5IHnQChO3LHh/Jf7KLrxJ/RCTGdBvlVZhBde+dk3/qS9fFsUy+rs3dEi49aAsyVitTwlKw1SUFm+A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-mips64le": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.22.tgz", + "integrity": "sha512-SiNDfuRXhGh1JQLLA9JPprBgPVFOsGuQ0yDfSPTNxztmVJd8W2mX++c4FfLpAwxuJe183mLuKf7qKCHQs5ZnBQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-ppc64le": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.22.tgz", + "integrity": "sha512-6t/GI9I+3o1EFm2AyN9+TsjdgWCpg2nwniEhjm2qJWtJyJ5VzTXGUU3alCO3evopu8G0hN2Bu1Jhz2YmZD0kng==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-riscv64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.22.tgz", + "integrity": "sha512-AyJHipZKe88sc+tp5layovquw5cvz45QXw5SaDgAq2M911wLHiCvDtf/07oDx8eweCyzYzG5Y39Ih568amMTCQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-s390x": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.22.tgz", + "integrity": "sha512-Sz1NjZewTIXSblQDZWEFZYjOK6p8tV6hrshYdXZ0NHTjWE+lwxpOpWeElUGtEmiPcMT71FiuA9ODplqzzSxkzw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-netbsd-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.22.tgz", + "integrity": "sha512-TBbCtx+k32xydImsHxvFgsOCuFqCTGIxhzRNbgSL1Z2CKhzxwT92kQMhxort9N/fZM2CkRCPPs5wzQSamtzEHA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-openbsd-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.22.tgz", + "integrity": "sha512-vK912As725haT313ANZZZN+0EysEEQXWC/+YE4rQvOQzLuxAQc2tjbzlAFREx3C8+uMuZj/q7E5gyVB7TzpcTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-sunos-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.22.tgz", + "integrity": "sha512-/mbJdXTW7MTcsPhtfDsDyPEOju9EOABvCjeUU2OJ7fWpX/Em/H3WYDa86tzLUbcVg++BScQDzqV/7RYw5XNY0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-wasm": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.14.22.tgz", + "integrity": "sha512-FOSAM29GN1fWusw0oLMv6JYhoheDIh5+atC72TkJKfIUMID6yISlicoQSd9gsNSFsNBvABvtE2jR4JB1j4FkFw==", + "dev": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-32": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.22.tgz", + "integrity": "sha512-1vRIkuvPTjeSVK3diVrnMLSbkuE36jxA+8zGLUOrT4bb7E/JZvDRhvtbWXWaveUc/7LbhaNFhHNvfPuSw2QOQg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.22.tgz", + "integrity": "sha512-AxjIDcOmx17vr31C5hp20HIwz1MymtMjKqX4qL6whPj0dT9lwxPexmLj6G1CpR3vFhui6m75EnBEe4QL82SYqw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-arm64": { + "version": "0.14.22", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.22.tgz", + "integrity": "sha512-5wvQ+39tHmRhNpu2Fx04l7QfeK3mQ9tKzDqqGR8n/4WUxsFxnVLfDRBGirIfk4AfWlxk60kqirlODPoT5LqMUg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "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": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "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/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/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/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/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/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": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter-asyncresource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", + "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", + "dev": true + }, + "node_modules/eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha1-teEHm1n7XhuidxwKmTvgYKWMmbo=" + }, + "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/exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", + "dev": true + }, + "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/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true, + "engines": { + "node": ">= 0.8.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/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/expand-brackets/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/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/expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "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": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/express/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/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "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/extend-shallow/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/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "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/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/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==", + "deprecated": "Please upgrade to v1.0.1", + "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==", + "deprecated": "Please upgrade to v1.0.1", + "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/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true, + "engines": [ + "node >=0.6.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-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "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.6.0" + } + }, + "node_modules/fast-glob/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/fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "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/fastparse": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "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/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/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.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "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": "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/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "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/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "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/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "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": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "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==" + }, + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "deprecated": "This package is no longer supported.", + "dev": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/gauge/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/gauge/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/gauge/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/gauge/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/gauge/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/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==", + "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-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "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/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/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "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": "*" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "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": "12.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "dev": true, + "dependencies": { + "array-union": "^3.0.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "node_modules/hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", + "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=", + "engines": { + "node": ">=0.8.0" + } + }, + "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/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dev": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "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": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "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-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "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/hdr-histogram-js": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", + "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", + "dev": true, + "dependencies": { + "@assemblyscript/loader": "^0.10.1", + "base64-js": "^1.2.0", + "pako": "^1.0.3" + } + }, + "node_modules/hdr-histogram-percentiles-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", + "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", + "dev": true + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^1.0.1" + } + }, + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "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-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-agent/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/http-proxy/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/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-proxy-agent": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", + "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", + "dev": true, + "dependencies": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/https-proxy-agent/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/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/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dev": true, + "dependencies": { + "ms": "^2.0.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==", + "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" + } + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-walk": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz", + "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "dev": true + }, + "node_modules/immutable": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.2.4.tgz", + "integrity": "sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==", + "dev": true + }, + "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-fresh/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/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/import-local/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/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/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "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 + }, + "node_modules/inquirer": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.0.tgz", + "integrity": "sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.2.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/inquirer/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/inquirer/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/inquirer/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/inquirer/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/inquirer/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/inquirer/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/inquirer/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/inquirer/node_modules/rxjs": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/inquirer/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/inquirer/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/inquirer/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/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/intl": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/intl/-/intl-1.2.5.tgz", + "integrity": "sha1-giRKIZDE5Bn4Nx9ao02qNCDiq94=" + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "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=", + "deprecated": "Please upgrade to v0.1.7", + "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==", + "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-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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=", + "deprecated": "Please upgrade to v0.1.5", + "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==", + "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-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": 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-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "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-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-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "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-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": "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/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-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-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "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/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report/node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report/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/istanbul-lib-report/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/istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-source-maps/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/istanbul-lib-source-maps/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/istanbul-reports": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", + "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jasmine": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", + "integrity": "sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw==", + "dev": true, + "dependencies": { + "exit": "^0.1.2", + "glob": "^7.0.6", + "jasmine-core": "~2.8.0" + }, + "bin": { + "jasmine": "bin/jasmine.js" + } + }, + "node_modules/jasmine-core": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz", + "integrity": "sha512-SNkOkS+/jMZvLhuSx1fjhcNWUC/KG6oVyFUGkSBEr9n1axSNduWU8GlI7suaHXr4yxjet6KjrUZxUTE5WzzWwQ==", + "dev": true + }, + "node_modules/jasminewd2": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz", + "integrity": "sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg==", + "dev": true, + "engines": { + "node": ">= 6.9.x" + } + }, + "node_modules/jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", + "dev": true, + "dependencies": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-changed-files": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/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/jest-config/node_modules/braces/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/jest-config/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/jest-config/node_modules/fill-range/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/jest-config/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/jest-config/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/jest-config/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/jest-config/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/jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", + "dev": true, + "dependencies": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", + "dev": true, + "dependencies": { + "detect-newline": "^2.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-each": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", + "dev": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-jsdom-thirteen": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom-thirteen/-/jest-environment-jsdom-thirteen-1.0.1.tgz", + "integrity": "sha512-Zi7OuKF7HMLlBvomitd5eKp5Ykc4Wvw0d+i+cpbCaE+7kmvL24SO4ssDmKrT++aANXR4T8+pmoJIlav5gr2peQ==", + "dev": true, + "dependencies": { + "jest-mock": "^24.0.0", + "jest-util": "^24.0.0", + "jsdom": "^13.0.0" + } + }, + "node_modules/jest-environment-jsdom-thirteen/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jest-environment-jsdom-thirteen/node_modules/jsdom": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-13.2.0.tgz", + "integrity": "sha512-cG1NtMWO9hWpqRNRR3dSvEQa8bFI6iLlqU2x4kwX51FQjp0qus8T9aBaAO6iGp3DeBrhdwuKxckknohkmfvsFw==", + "dev": true, + "dependencies": { + "abab": "^2.0.0", + "acorn": "^6.0.4", + "acorn-globals": "^4.3.0", + "array-equal": "^1.0.0", + "cssom": "^0.3.4", + "cssstyle": "^1.1.1", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.0", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.0.9", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.5", + "saxes": "^3.1.5", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.5.0", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^6.1.2", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom-thirteen/node_modules/parse5": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", + "dev": true + }, + "node_modules/jest-environment-jsdom-thirteen/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", + "dev": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/jest-haste-map/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/jest-haste-map/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/jest-haste-map/node_modules/braces/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/jest-haste-map/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/jest-haste-map/node_modules/fill-range/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/jest-haste-map/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": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/jest-haste-map/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/jest-haste-map/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/jest-haste-map/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/jest-haste-map/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/jest-haste-map/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/jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", + "dev": true, + "dependencies": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "dev": true, + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-message-util/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/jest-message-util/node_modules/braces/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/jest-message-util/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/jest-message-util/node_modules/fill-range/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/jest-message-util/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/jest-message-util/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/jest-message-util/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/jest-message-util/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-message-util/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/jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-preset-angular": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-7.1.1.tgz", + "integrity": "sha512-/uJUi9IHoCxtB6aH6I+llpHjyfGfP2q32lcBCUKKk16v1uYKXvj1Nfdlvfvu/eqjZVoKEDLP+Ejup4bbsc0gAA==", + "dev": true, + "dependencies": { + "jest-environment-jsdom-thirteen": "^1.0.0", + "pretty-format": "^24.0.0", + "ts-jest": "^24.0.0" + }, + "peerDependencies": { + "@angular/core": ">=2.0.0", + "@angular/platform-browser-dynamic": ">=2.0.0", + "core-js": ">=2.0.0 < 4.0.0", + "jest": "^24.1.0" + } + }, + "node_modules/jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", + "dev": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "dev": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runtime/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "dev": true, + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-util/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/jest-util/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-util/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/jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-watcher/node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dev": true, + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-worker/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/jest/node_modules/jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", + "dev": true, + "dependencies": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "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==", + "dev": true + }, + "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/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "node_modules/jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "dev": true, + "dependencies": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/jsdom/node_modules/acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "node_modules/jsdom/node_modules/ws": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "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-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": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "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-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonc-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", + "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "dev": true + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "dev": true, + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "node_modules/karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "dev": true, + "dependencies": { + "source-map-support": "^0.5.5" + } + }, + "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/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/leaflet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.3.4.tgz", + "integrity": "sha512-FYL1LGFdj6v+2Ifpw+AcFIuIOqjNggfoLUwuwQv6+3sS21Za7Wvapq+LhbSE4NDXrEj6eYnW3y7LsaBICpyXtw==" + }, + "node_modules/left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "deprecated": "use String.prototype.padStart()", + "dev": true + }, + "node_modules/less": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.2.tgz", + "integrity": "sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==", + "dev": true, + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "source-map": "~0.6.0" + } + }, + "node_modules/less-loader": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-10.2.0.tgz", + "integrity": "sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==", + "dev": true, + "dependencies": { + "klona": "^2.0.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/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/less/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/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/libphonenumber-js": { + "version": "0.4.52", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-0.4.52.tgz", + "integrity": "sha512-Ns5FcEp8W/lZd+lKu7OB46RYBKcncN/S3C51OFh7qXbu6kOFAd75A4M0jtasK3MUWMxKsKXII4WL+GbqaLa2DQ==", + "dependencies": { + "babel-runtime": "^6.6.1", + "bluebird": "^3.4.6", + "minimist": "^1.2.0", + "xml2js": "^0.4.17" + }, + "bin": { + "libphonenumber-generate-metadata": "bin/update-metadata.js" + } + }, + "node_modules/license-webpack-plugin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", + "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "dev": true, + "dependencies": { + "webpack-sources": "^3.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-sources": { + "optional": true + } + } + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dev": true, + "dependencies": { + "immediate": "~3.0.5" + } + }, + "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/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "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/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-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/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/log-symbols/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/log-symbols/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/log-symbols/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/log-symbols/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/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==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.4" + } + }, + "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/make-fetch-happen": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", + "dev": true, + "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/make-fetch-happen/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/make-fetch-happen/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-fetch-happen/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/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "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/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "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": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "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.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.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/mini-css-extract-plugin": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.5.3.tgz", + "integrity": "sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw==", + "dev": true, + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "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/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/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/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "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.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-fetch": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", + "dev": true, + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "dev": true, + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass/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/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/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/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/mixpanel-browser": { + "version": "2.47.0", + "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.47.0.tgz", + "integrity": "sha512-Ldrva0fRBEIFWmEibBQO1PulfpJVF3pf28Guk09lDirDaSQqqU/xs9zQLwN2rL5VwVtsP1aD3JaCgaa98EjojQ==" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==", + "engines": { + "node": "*" + } + }, + "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": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "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.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "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/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/needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "dev": true, + "optional": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "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/ng2-charts": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/ng2-charts/-/ng2-charts-2.4.3.tgz", + "integrity": "sha512-tPrhHSS2DfVyipXQ0gykOPc8zFNnj2b7sAebUVty392vHnEGYCwsP6YbFfpr1iXu4yBSRm4Gt5lffR5w0uyYSw==", + "dependencies": { + "@types/chart.js": "^2.9.24", + "lodash-es": "^4.17.15", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "@angular/common": ">=7.2.0", + "@angular/core": ">=7.2.0", + "chart.js": "^2.9.3", + "rxjs": "^6.3.3" + } + }, + "node_modules/ng2-dragula": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ng2-dragula/-/ng2-dragula-2.1.0.tgz", + "integrity": "sha512-Xwvt8T8zF1IjvlDkCZvyVd3ovaiZwEtCixZZDSiz9uSpXC1euP4WPeqVCcvt4pJKQW12ZwXdOYbHNCdAyy2leQ==", + "dependencies": { + "@types/dragula": "^2.1.33", + "dragula": "^3.7.2" + }, + "peerDependencies": { + "@angular/core": ">=6.0.0", + "rxjs": ">=6.0.0" + } + }, + "node_modules/ng2-file-upload": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ng2-file-upload/-/ng2-file-upload-1.4.0.tgz", + "integrity": "sha512-3J/KPU/tyh/ad6TFeUbrxX+SihUj0iOEt2Zsg4EX7mB3GFiQscXOfcUOxCkBtPWWWaqt3azrYbVGzsYa3/7NzQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "peerDependencies": { + "@angular/common": "*", + "@angular/core": "*" + } + }, + "node_modules/ng2-file-upload/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/ng2-validation": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/ng2-validation/-/ng2-validation-4.2.0.tgz", + "integrity": "sha1-841EHT+36GIVUWZIAEWq/5rRHbs=", + "dependencies": { + "libphonenumber-js": "^0.4.5" + } + }, + "node_modules/ngx-perfect-scrollbar": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/ngx-perfect-scrollbar/-/ngx-perfect-scrollbar-6.3.1.tgz", + "integrity": "sha512-kgHT0A1pDnZO5CxB4TOwflHb1Q152wZ3Nec0Zf7d29bgA1kAFl6oK8wFmYtGWeaFNhSCExus6TOq3sWN3xRQig==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "dependencies": { + "perfect-scrollbar": "^1.4.0", + "resize-observer-polyfill": "^1.4.0" + }, + "peerDependencies": { + "@angular/common": ">=5.0.0", + "@angular/core": ">=5.0.0", + "rxjs": ">=6.0.0" + } + }, + "node_modules/ngx-quill": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ngx-quill/-/ngx-quill-3.4.0.tgz", + "integrity": "sha512-PKzF1cLN6btxaR31ZeCpgOOdmnPQXU5WWarwLbTUxGueWHoR2nQRAXXDI5m6UF3FPv25R5xW1jbTM6uFq8xitw==", + "dependencies": { + "@types/quill": "1.3.3", + "quill": "^1.3.6" + }, + "engines": { + "node": ">= 8" + }, + "peerDependencies": { + "@angular/core": "^5.0.0 || ^6.0.0", + "@angular/forms": "^5.0.0 || ^6.0.0", + "rxjs": "^5.5.2 || ^6.1.0" + } + }, + "node_modules/nice-napi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", + "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "!win32" + ], + "dependencies": { + "node-addon-api": "^3.0.0", + "node-gyp-build": "^4.2.2" + } + }, + "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-addon-api": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", + "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", + "dev": true, + "optional": true + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-gyp": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", + "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", + "dev": true, + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "dev": true, + "optional": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/node-gyp/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/node-gyp/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/node-gyp/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/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/node-gyp/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/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node_modules/node-notifier": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.5.tgz", + "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", + "dev": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + } + }, + "node_modules/node-notifier/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/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/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/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-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dev": true, + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-install-checks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz", + "integrity": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==", + "dev": true, + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-install-checks/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/npm-install-checks/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-install-checks/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/npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "node_modules/npm-package-arg": { + "version": "8.1.5", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz", + "integrity": "sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "semver": "^7.3.4", + "validate-npm-package-name": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-arg/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-arg/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/npm-package-arg/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-arg/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/npm-packlist": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz", + "integrity": "sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==", + "dev": true, + "dependencies": { + "glob": "^7.1.6", + "ignore-walk": "^4.0.1", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "npm-packlist": "bin/index.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-packlist/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm-packlist/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm-pick-manifest": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz", + "integrity": "sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==", + "dev": true, + "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-pick-manifest/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/npm-pick-manifest/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-pick-manifest/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/npm-registry-fetch": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-12.0.2.tgz", + "integrity": "sha512-Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA==", + "dev": true, + "dependencies": { + "make-fetch-happen": "^10.0.1", + "minipass": "^3.1.6", + "minipass-fetch": "^1.4.1", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^8.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16" + } + }, + "node_modules/npm-registry-fetch/node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "dev": true, + "dependencies": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm-registry-fetch/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm-registry-fetch/node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-registry-fetch/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm-registry-fetch/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm-registry-fetch/node_modules/lru-cache": { + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/npm-registry-fetch/node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "dev": true, + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/make-fetch-happen/node_modules/minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", + "dev": true, + "dependencies": { + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/npm-registry-fetch/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm-registry-fetch/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-registry-fetch/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/npm-registry-fetch/node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm-registry-fetch/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-registry-fetch/node_modules/semver/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/npm-registry-fetch/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm-registry-fetch/node_modules/ssri": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dev": true, + "dependencies": { + "unique-slug": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/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/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/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "deprecated": "This package is no longer supported.", + "dev": true, + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "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, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "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=", + "dev": true, + "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/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/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.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "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==", + "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==", + "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.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "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/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.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "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/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/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/ora/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/ora/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/ora/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/ora/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/ora/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/ora/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/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "dev": true, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "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-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": "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/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "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": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "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/pacote": { + "version": "12.0.3", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-12.0.3.tgz", + "integrity": "sha512-CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow==", + "dev": true, + "dependencies": { + "@npmcli/git": "^2.1.0", + "@npmcli/installed-package-contents": "^1.0.6", + "@npmcli/promise-spawn": "^1.2.0", + "@npmcli/run-script": "^2.0.0", + "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": "^3.0.0", + "npm-pick-manifest": "^6.0.0", + "npm-registry-fetch": "^12.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": "^12.13.0 || ^14.15.0 || >=16" + } + }, + "node_modules/pacote/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/pacote/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/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, + "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": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "optional": true + }, + "node_modules/parse5-html-rewriting-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz", + "integrity": "sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==", + "dev": true, + "dependencies": { + "parse5": "^6.0.1", + "parse5-sax-parser": "^6.0.1" + } + }, + "node_modules/parse5-html-rewriting-stream/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/parse5-sax-parser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz", + "integrity": "sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==", + "dev": true, + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/parse5-sax-parser/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "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-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/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": "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/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": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "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/perfect-scrollbar": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz", + "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/piscina": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", + "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", + "dev": true, + "dependencies": { + "eventemitter-asyncresource": "^1.0.0", + "hdr-histogram-js": "^2.0.1", + "hdr-histogram-percentiles-obj": "^3.0.0" + }, + "optionalDependencies": { + "nice-napi": "^1.0.2" + } + }, + "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/pkg-dir/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/pkg-dir/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/pkg-dir/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/pkg-dir/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/pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "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/positioning": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/positioning/-/positioning-1.5.1.tgz", + "integrity": "sha512-Al3inO/WAlq7Q986pghpdWC9fsSCCKxOAwRt8ZGpcQn58SP8RJX7bjC53I7xeq9ngN+odcyF4B+wMdpyyiF5wQ==" + }, + "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.5", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz", + "integrity": "sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==", + "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-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "dev": true, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "dev": true, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-loader/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/postcss-loader/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/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/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "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-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dev": true, + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "dev": true, + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.2.3.tgz", + "integrity": "sha512-Ok0DhLfwrcNGrBn8sNdy1uZqWRk/9FId0GiQ39W4ILop5GHtjJs8bu1MY9isPwHInpVEPWjb4CEcEaSbBLpfwA==", + "dev": true, + "dependencies": { + "autoprefixer": "^10.4.2", + "browserslist": "^4.19.1", + "caniuse-lite": "^1.0.30001299", + "css-blank-pseudo": "^3.0.2", + "css-has-pseudo": "^3.0.3", + "css-prefers-color-scheme": "^6.0.2", + "cssdb": "^5.0.0", + "postcss-attribute-case-insensitive": "^5.0.0", + "postcss-color-functional-notation": "^4.2.1", + "postcss-color-hex-alpha": "^8.0.2", + "postcss-color-rebeccapurple": "^7.0.2", + "postcss-custom-media": "^8.0.0", + "postcss-custom-properties": "^12.1.2", + "postcss-custom-selectors": "^6.0.0", + "postcss-dir-pseudo-class": "^6.0.3", + "postcss-double-position-gradients": "^3.0.4", + "postcss-env-function": "^4.0.4", + "postcss-focus-visible": "^6.0.3", + "postcss-focus-within": "^5.0.3", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.2", + "postcss-image-set-function": "^4.0.4", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.0.3", + "postcss-logical": "^5.0.3", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.1.2", + "postcss-overflow-shorthand": "^3.0.2", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.3", + "postcss-pseudo-class-any-link": "^7.0.2", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^5.0.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "dev": true, + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-5.0.0.tgz", + "integrity": "sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pretty-format/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/promise-retry/node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/protractor": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/protractor/-/protractor-7.0.0.tgz", + "integrity": "sha512-UqkFjivi4GcvUQYzqGYNe0mLzfn5jiLmO8w9nMhQoJRLhy2grJonpga2IWhI6yJO30LibWXJJtA4MOIZD2GgZw==", + "deprecated": "We have news to share - Protractor is deprecated and will reach end-of-life by Summer 2023. To learn more and find out about other options please refer to this post on the Angular blog. Thank you for using and contributing to Protractor. https://goo.gle/state-of-e2e-in-angular", + "dev": true, + "dependencies": { + "@types/q": "^0.0.32", + "@types/selenium-webdriver": "^3.0.0", + "blocking-proxy": "^1.0.0", + "browserstack": "^1.5.1", + "chalk": "^1.1.3", + "glob": "^7.0.3", + "jasmine": "2.8.0", + "jasminewd2": "^2.1.0", + "q": "1.4.1", + "saucelabs": "^1.5.0", + "selenium-webdriver": "3.6.0", + "source-map-support": "~0.4.0", + "webdriver-js-extender": "2.1.0", + "webdriver-manager": "^12.1.7", + "yargs": "^15.3.1" + }, + "bin": { + "protractor": "bin/protractor", + "webdriver-manager": "bin/webdriver-manager" + }, + "engines": { + "node": ">=10.13.x" + } + }, + "node_modules/protractor/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/protractor/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "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/protractor/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/protractor/node_modules/cliui/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/protractor/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/protractor/node_modules/del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ==", + "dev": true, + "dependencies": { + "globby": "^5.0.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "rimraf": "^2.2.8" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/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/protractor/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/protractor/node_modules/globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "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/protractor/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/protractor/node_modules/is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/node_modules/is-path-in-cwd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/node_modules/is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/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/protractor/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/protractor/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/protractor/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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/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/protractor/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/protractor/node_modules/source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "dev": true, + "dependencies": { + "source-map": "^0.5.6" + } + }, + "node_modules/protractor/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/protractor/node_modules/string-width/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/protractor/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/protractor/node_modules/webdriver-manager": { + "version": "12.1.9", + "resolved": "https://registry.npmjs.org/webdriver-manager/-/webdriver-manager-12.1.9.tgz", + "integrity": "sha512-Yl113uKm8z4m/KMUVWHq1Sjtla2uxEBtx2Ue3AmIlnlPAKloDn/Lvmy6pqWCUersVISpdMeVpAaGbNnvMuT2LQ==", + "dev": true, + "dependencies": { + "adm-zip": "^0.5.2", + "chalk": "^1.1.1", + "del": "^2.2.0", + "glob": "^7.0.3", + "ini": "^1.3.4", + "minimist": "^1.2.0", + "q": "^1.4.1", + "request": "^2.87.0", + "rimraf": "^2.5.2", + "semver": "^5.3.0", + "xml2js": "^0.4.17" + }, + "bin": { + "webdriver-manager": "bin/webdriver-manager" + }, + "engines": { + "node": ">=6.9.x" + } + }, + "node_modules/protractor/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/protractor/node_modules/wrap-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/protractor/node_modules/wrap-ansi/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/protractor/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.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": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/protractor/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "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/proxy-addr/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/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": 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/q": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", + "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", + "dev": true, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "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/quill": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.6.tgz", + "integrity": "sha512-K0mvhimWZN6s+9OQ249CH2IEPZ9JmkFuCQeHAOQax3EZ2nDJ3wfGh59mnlQaZV2i7u8eFarx6wAtvQKgShojug==", + "dependencies": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.1", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + } + }, + "node_modules/quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "dependencies": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "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.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "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==", + "dev": true + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-cache/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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-package-json-fast": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", + "integrity": "sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==", + "dev": true, + "dependencies": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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/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/realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dev": true, + "dependencies": { + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "dev": true + }, + "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": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "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-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz", + "integrity": "sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", + "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "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": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "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/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, + "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/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "dev": true, + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "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": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "node_modules/resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/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/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/resolve-url-loader": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", + "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", + "dev": true, + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.14", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/resolve-url-loader/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/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "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.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "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": "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/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true, + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "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/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "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==" + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", + "dev": true, + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/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/sane/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/sane/node_modules/braces/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/sane/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/sane/node_modules/fill-range/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/sane/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/sane/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/sane/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/sane/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/sane/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/sass": { + "version": "1.49.9", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.49.9.tgz", + "integrity": "sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/sass-loader": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.4.0.tgz", + "integrity": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.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 || ^7.0.0", + "sass": "^1.3.0", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/saucelabs": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz", + "integrity": "sha512-jlX3FGdWvYf4Q3LFfFWS1QvPg3IGCGWxIc8QBFdPTbpTJnt/v17FHXYVAn7C8sHf1yUXo2c7yIM0isDryfYtHQ==", + "dev": true, + "dependencies": { + "https-proxy-agent": "^2.2.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "3.1.11", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", + "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", + "dev": true, + "dependencies": { + "xmlchars": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "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/schema-utils/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/screenfull": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-3.3.3.tgz", + "integrity": "sha512-DzYUuXr+OV2BDvYXaYzlYgJd4WXZZ2CW5NFC7Kw6TUCpzXJAx4MwlVD6CH+Mu6fi8rfAQIQfqdFZ4jtDsEkWig==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selenium-webdriver": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz", + "integrity": "sha512-WH7Aldse+2P5bbFBO4Gle/nuQOdVwpHMTL6raL3uuBj/vPG07k6uzt3aiahu352ONBr5xXh0hDlM3LhtXPOC4Q==", + "dev": true, + "dependencies": { + "jszip": "^3.1.3", + "rimraf": "^2.5.4", + "tmp": "0.0.30", + "xml2js": "^0.4.17" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/selenium-webdriver/node_modules/tmp": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.30.tgz", + "integrity": "sha512-HXdTB7lvMwcb55XFfrTM8CPr/IYREk4hVBFaQ4b/6nInrluSL86hfHm7vu0luYKCfyBZp2trCjpc8caC3vVM3w==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.1" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dev": true, + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/semver-dsl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz", + "integrity": "sha512-e8BOaTo007E3dMuQQTnPdalbKTABKNS7UxoBIDnwOqRa+QwMrCPjynB8zAlPF6xlqUfdLPPLIJ13hJNmhtq8Ng==", + "dev": true, + "dependencies": { + "semver": "^5.3.0" + } + }, + "node_modules/semver-dsl/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/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "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": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "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/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "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": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "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": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "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-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "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/set-value/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/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "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": "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/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/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "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.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "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==", + "deprecated": "Please upgrade to v1.0.1", + "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==", + "deprecated": "Please upgrade to v1.0.1", + "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/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/snapdragon/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/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/snapdragon/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/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", + "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/socks-proxy-agent/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/socks/node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "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/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz", + "integrity": "sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-loader/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "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==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "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.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "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==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "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/spdy-transport/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/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/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/sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "dev": true, + "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/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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/static-extend/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/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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/string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "dev": true, + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-length/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-length/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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/string-width/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-width/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/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": "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/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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/stylus": { + "version": "0.56.0", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.56.0.tgz", + "integrity": "sha512-Ev3fOb4bUElwWu4F9P9WjnnaSpc8XB9OFHSFZSKMFL1CE1oM+oFXWEgAqPmmZIyhBihuqIQlFsVTypiiS9RxeA==", + "dev": true, + "dependencies": { + "css": "^3.0.0", + "debug": "^4.3.2", + "glob": "^7.1.6", + "safer-buffer": "^2.1.2", + "sax": "~1.2.4", + "source-map": "^0.7.3" + }, + "bin": { + "stylus": "bin/stylus" + }, + "engines": { + "node": "*" + } + }, + "node_modules/stylus-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-6.2.0.tgz", + "integrity": "sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.7", + "klona": "^2.0.4", + "normalize-path": "^3.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "stylus": ">=0.52.4", + "webpack": "^5.0.0" + } + }, + "node_modules/stylus/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/stylus/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "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/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-observable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "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/tar": { + "version": "6.1.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", + "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^4.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.0.3.tgz", + "integrity": "sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/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/terser": { + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" + }, + "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/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/terser-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/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "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/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/terser/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/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/test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dev": true, + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": 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/ticky": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ticky/-/ticky-1.0.1.tgz", + "integrity": "sha1-t8+nHnaPHJAAxJe5FRswlHxQ5G0=" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": 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/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-jest": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-24.3.0.tgz", + "integrity": "sha512-Hb94C/+QRIgjVZlJyiWwouYUF+siNJHJHknyspaOcZ+OQAIdFG/UrdQVXw/0B8Z3No34xkUXZJpOTy9alOWdVQ==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "jest": ">=24 <25" + } + }, + "node_modules/ts-jest/node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ts-jest/node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-jest/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/ts-jest/node_modules/yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dev": true, + "dependencies": { + "camelcase": "^4.1.0" + } + }, + "node_modules/ts-node": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-5.0.1.tgz", + "integrity": "sha512-XK7QmDcNHVmZkVtkiwNDWiERRHPyU8nBqZB1+iv2UhOG0q3RQ9HsZ2CMqISlFbxjrYFGfG2mX7bW4dAyxBVzUw==", + "dev": true, + "dependencies": { + "arrify": "^1.0.0", + "chalk": "^2.3.0", + "diff": "^3.1.0", + "make-error": "^1.1.1", + "minimist": "^1.2.0", + "mkdirp": "^0.5.1", + "source-map-support": "^0.5.3", + "yn": "^2.0.0" + }, + "bin": { + "ts-node": "dist/bin.js" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/tslint": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", + "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", + "deprecated": "TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.3", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.13.0", + "tsutils": "^2.29.0" + }, + "bin": { + "tslint": "bin/tslint" + }, + "engines": { + "node": ">=4.8.0" + }, + "peerDependencies": { + "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 4.0.0-dev" + } + }, + "node_modules/tslint/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/tslint/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/tslint/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": "2.29.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "peerDependencies": { + "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" + } + }, + "node_modules/tsutils/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/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "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/typed-assert": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", + "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", + "dev": true + }, + "node_modules/typescript": { + "version": "4.6.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", + "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", + "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/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.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "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/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "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/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "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/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/util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", + "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "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/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "dev": true, + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dev": true, + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", + "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "dev": true, + "dependencies": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "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/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webdriver-js-extender": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/webdriver-js-extender/-/webdriver-js-extender-2.1.0.tgz", + "integrity": "sha512-lcUKrjbBfCK6MNsh7xaY2UAUmZwe+/ib03AjVOpFobX4O7+83BUveSrLfU0Qsyb1DaKJdQRbuU+kM9aZ6QUhiQ==", + "dev": true, + "dependencies": { + "@types/selenium-webdriver": "^3.0.0", + "selenium-webdriver": "^3.0.1" + }, + "engines": { + "node": ">=6.9.x" + } + }, + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "node_modules/webpack": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz", + "integrity": "sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@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.9.2", + "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.9", + "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.1", + "webpack-sources": "^3.2.3" + }, + "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-dev-middleware": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.0.tgz", + "integrity": "sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.2.2", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "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/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/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/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.3.tgz", + "integrity": "sha512-mlxq2AsIw2ag016nixkzUkdyOE8ST2GTy34uKSABp1c4nhjZvH90D5ZRR+UOLSsG4Z3TFahAi72a3ymRtfRm+Q==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/serve-index": "^1.9.1", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.2.2", + "ansi-html-community": "^0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^3.5.2", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "default-gateway": "^6.0.3", + "del": "^6.0.0", + "express": "^4.17.1", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.0", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "portfinder": "^1.0.28", + "schema-utils": "^4.0.0", + "selfsigned": "^2.0.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "spdy": "^4.0.2", + "strip-ansi": "^7.0.0", + "webpack-dev-middleware": "^5.3.0", + "ws": "^8.1.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "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/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/webpack-dev-server/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/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.1.tgz", + "integrity": "sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "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.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-subresource-integrity": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", + "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", + "dev": true, + "dependencies": { + "typed-assert": "^1.0.8" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", + "webpack": "^5.12.0" + }, + "peerDependenciesMeta": { + "html-webpack-plugin": { + "optional": true + } + } + }, + "node_modules/webpack/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/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/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/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "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/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/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "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.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "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/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "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/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "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": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "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/yn": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz", + "integrity": "sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/zone.js": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", + "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", + "dependencies": { + "tslib": "^2.3.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100755 index 0000000..06565c8 --- /dev/null +++ b/package.json @@ -0,0 +1,187 @@ +{ + "name": "wvdigital", + "version": "1.0.0", + "license": "MIT", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build", + "build-prod": "ng build --configuration production", + "build-dummy": "ng build --configuration production", + "test": "jest", + "lint": "ng lint", + "e2e": "ng e2e" + }, + "private": true, + "dependencies": { + "@angular/animations": "13.3.12", + "@angular/cdk": "13.3.9", + "@angular/common": "13.3.12", + "@angular/compiler": "13.3.12", + "@angular/core": "13.3.12", + "@angular/flex-layout": "^9.0.0-beta.31", + "@angular/forms": "13.3.12", + "@angular/material": "13.3.9", + "@angular/material-moment-adapter": "6.4.7", + "@angular/platform-browser": "13.3.12", + "@angular/platform-browser-dynamic": "13.3.12", + "@angular/router": "13.3.12", + "@asymmetrik/ngx-leaflet": "4.0.0", + "@ngx-loading-bar/router": "2.2.0", + "@ngx-translate/core": "10.0.2", + "@ngx-translate/http-loader": "3.0.1", + "@popperjs/core": "^2.9.1", + "@sisitech/cards": "0.0.7", + "@sisitech/charts": "^0.4.9", + "@sisitech/myform": "^0.3.1", + "@sisitech/tables": "^0.4.8", + "@sisitech/utils": "^0.3.2", + + "@types/googlemaps": "^3.37.6", + "@types/mixpanel-browser": "^2.47.2", + "angular-calendar": "0.26.0", + "bootstrap": "^5.1.3", + "@types/chart.js": "^2.9.40", + "chart.js": "^4.0.1", + "core-js": "2.5.7", + "d3": "5.7.0", + "date-fns": "1.29.0", + "dragula": "3.7.2", + "hammerjs": "2.0.8", + "intl": "1.2.5", + "leaflet": "1.3.4", + "mixpanel-browser": "^2.47.0", + "moment": "^2.22.2", + "ng2-charts": "^2.2.4", + "ng2-dragula": "2.1.0", + "ng2-file-upload": "^1.4.0", + "ng2-validation": "4.2.0", + "ngx-perfect-scrollbar": "6.3.1", + "ngx-quill": "3.4.0", + "quill": "1.3.6", + "rxjs": "6.6.7", + "screenfull": "3.3.3", + "tslib": "^2.0.0", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@agm/core": "^1.0.0-beta.3", + "@angular-devkit/build-angular": "~13.3.10", + "@angular/cli": "13.3.10", + "@angular/compiler-cli": "13.3.12", + "@angular/language-service": "13.3.12", + "@types/jest": "^24.0.15", + "@types/node": "^12.11.1", + "codelyzer": "^6.0.0", + "jest": "^24.8.0", + "jest-preset-angular": "^7.1.1", + "protractor": "~7.0.0", + "ts-node": "~5.0.1", + "tslint": "~6.1.0", + "typescript": "~4.6.4" + }, + "jest": { + "globals": { + "ts-jest": { + "diagnostics": { + "warnOnly": true + } + } + }, + "private": true, + "dependencies": { + "@agm/core": "1.0.0-beta.3", + "@angular/animations": "6.1.7", + "@angular/cdk": "6.4.7", + "@angular/common": "6.1.7", + "@angular/compiler": "6.1.7", + "@angular/core": "6.1.7", + "@angular/flex-layout": "6.0.0-beta.18", + "@angular/forms": "6.1.7", + "@angular/http": "6.1.7", + "@angular/material": "6.4.7", + "@angular/material-moment-adapter": "6.4.7", + "@angular/platform-browser": "6.1.7", + "@angular/platform-browser-dynamic": "6.1.7", + "@angular/router": "6.1.7", + "@asymmetrik/ngx-leaflet": "4.0.0", + "@ngx-loading-bar/router": "2.2.0", + "@ngx-translate/core": "10.0.2", + "@ngx-translate/http-loader": "3.0.1", + "angular-calendar": "0.26.0", + "angular2-moment": "^1.9.0", + "core-js": "2.5.7", + "d3": "5.7.0", + "date-fns": "1.29.0", + "dragula": "3.7.2", + "hammerjs": "2.0.8", + "intl": "1.2.5", + "leaflet": "1.3.4", + "moment": "^2.22.2", + "ng2-charts": "1.6.0", + "ng2-dragula": "2.1.0", + "ng2-file-upload": "1.3.0", + "ng2-validation": "4.2.0", + "ngx-perfect-scrollbar": "6.3.1", + "ngx-quill": "3.4.0", + "quill": "1.3.6", + "rxjs": "6.3.2", + "screenfull": "3.3.3", + "zone.js": "0.8.26" + }, + "devDependencies": { + "@angular-devkit/build-angular": "~0.8.1", + "@angular/cli": "6.2.1", + "@angular/compiler-cli": "6.1.7", + "@angular/language-service": "6.1.7", + "@types/jest": "^24.0.15", + "@types/node": "~8.9.4", + "codelyzer": "~4.2.1", + "jest": "^24.8.0", + "jest-preset-angular": "^7.1.1", + "protractor": "~5.4.0", + "ts-node": "~5.0.1", + "tslint": "~5.9.1", + "typescript": "~2.9.2" + }, + "jest": { + "globals": { + "ts-jest": { + "diagnostics": { + "warnOnly": true + } + } + }, + "preset": "jest-preset-angular", + "setupFilesAfterEnv": [ + "/src/setupJest.ts" + ], + "testPathIgnorePatterns": [ + "/src/test.ts" + ], + "transform": { + "^.+\\.(ts|js|html)$": "ts-jest" + }, + "testEnvironment": "jest-environment-jsdom-thirteen", + "moduleFileExtensions": [ + "ts", + "html", + "js", + "json" + ], + "moduleNameMapper": { + "^src/(.*)$": "/src/$1", + "^app/(.*)$": "/src/app/$1", + "^assets/(.*)$": "/src/assets/$1", + "^environments/(.*)$": "/src/environments/$1" + }, + "transformIgnorePatterns": [ + "node_modules/(?!@ngrx)|ngx-quill" + ], + "snapshotSerializers": [ + "jest-preset-angular/AngularSnapshotSerializer.js", + "jest-preset-angular/HTMLCommentSerializer.js" + ] + } + } +} diff --git a/src/app/app.component.html b/src/app/app.component.html new file mode 100755 index 0000000..b6931b5 --- /dev/null +++ b/src/app/app.component.html @@ -0,0 +1,3 @@ +

+ {{title}} +

diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts new file mode 100755 index 0000000..f5f16d6 --- /dev/null +++ b/src/app/app.component.spec.ts @@ -0,0 +1,5 @@ +describe('App: World-vision', () => { + it('should expect true to be true', () => { + expect(true).toBe(true); + }); +}); diff --git a/src/app/app.component.ts b/src/app/app.component.ts new file mode 100755 index 0000000..8909e21 --- /dev/null +++ b/src/app/app.component.ts @@ -0,0 +1,98 @@ +import { Component, HostListener, OnInit } from '@angular/core'; +import { TranslateService } from '@ngx-translate/core'; +import { ConstantsService } from './common/services/constants.service'; +import { SessionService } from './session/session.service'; +import { CookieService } from './core/services/cookie.service'; +import { Router } from '@angular/router'; +import * as mixpanel from 'mixpanel-browser'; +import { MatIconRegistry } from '@angular/material/icon'; +import { DomSanitizer } from "@angular/platform-browser"; +import { environment } from 'src/environments/environment'; + +@Component({ + selector: 'app-root', + template: '' +}) +export class AppComponent implements OnInit{ + constructor(translate: TranslateService, private _constant: ConstantsService, private session: SessionService, + private cookieService: CookieService, private router: Router, + private matIconRegistry: MatIconRegistry, private domSanitizer: DomSanitizer) { + translate.addLangs(['en', 'fr']); + translate.setDefaultLang('en'); + + const browserLang: string = translate.getBrowserLang(); + translate.use(browserLang.match(/en|fr/) ? browserLang : 'en'); + + const rememberMe = this._constant.rememberUser; + const activeSession = JSON.parse(window.sessionStorage.getItem('activeSession')); + + if (!activeSession && !rememberMe) { + // console.log('site logged out') + this.cookieService.deleteCookie('current_user'); + window.localStorage.clear(); + } + + + //custom icons + this.matIconRegistry.addSvgIcon( + `download`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/download.svg") + ); + + this.matIconRegistry.addSvgIcon( + `arrow-down`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/arrow-down.svg") + ); + + this.matIconRegistry.addSvgIcon( + `book`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/book.svg") + ); + + this.matIconRegistry.addSvgIcon( + `cancel`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/cancel.svg") + ); + + this.matIconRegistry.addSvgIcon( + `filter`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/filter.svg") + ); + + this.matIconRegistry.addSvgIcon( + `reset`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/reset.svg") + ); + + this.matIconRegistry.addSvgIcon( + `report`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/report.svg") + ); + + this.matIconRegistry.addSvgIcon( + `group`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/group.svg") + ); + + this.matIconRegistry.addSvgIcon( + `calendar`, + this.domSanitizer.bypassSecurityTrustResourceUrl("../assets/icons/calendar.svg") + ); + + } + + ngOnInit() { + mixpanel.init('7dc29f10efb7f0aa2a6d9219c12416d3', { debug: false, ignore_dnt: true, track_pageview: false }); + + const trackRoute = (route: any) => { + mixpanel.track('Route Visited', { + route: route, + }); + }; + + if (environment.production) { + trackRoute(window.location.pathname); + } + } + +} diff --git a/src/app/app.module.ts b/src/app/app.module.ts new file mode 100755 index 0000000..67dd52f --- /dev/null +++ b/src/app/app.module.ts @@ -0,0 +1,132 @@ +import { BrowserModule } from '@angular/platform-browser'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { RouterModule } from '@angular/router'; +import { NgModule } from '@angular/core'; +import { FormsModule } from '@angular/forms'; +import { HttpClientModule, HttpClient, HTTP_INTERCEPTORS } from '@angular/common/http'; + +import { TranslateModule, TranslateLoader } from '@ngx-translate/core'; +import { TranslateHttpLoader } from '@ngx-translate/http-loader'; +import { LoadingBarRouterModule } from '@ngx-loading-bar/router'; +import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; +import { PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar'; +import { PerfectScrollbarConfigInterface } from 'ngx-perfect-scrollbar'; + + + +import { FlexLayoutModule } from '@angular/flex-layout'; +import { BidiModule } from '@angular/cdk/bidi'; + +import { + MenuComponent, + HeaderComponent, + SidebarComponent, + NotificationComponent, + OptionsComponent, + AdminLayoutComponent, + AuthLayoutComponent, + AccordionAnchorDirective, + AccordionLinkDirective, + AccordionDirective, +} from './core'; + +import { AppRoutes } from './app.routing'; +import { AppComponent } from './app.component'; +import { WebsiteComponent } from './website/website.component'; +import { AuthInterceptor } from './interceptors/auth.interceptor'; + +import { ConstantsService } from './common/services/constants.service'; +import { Modal } from 'bootstrap'; +import { MatButtonModule } from '@angular/material/button'; +import { MatCardModule } from '@angular/material/card'; +import { MatCheckboxModule } from '@angular/material/checkbox'; +import { MatIconModule } from '@angular/material/icon'; +import { MatListModule } from '@angular/material/list'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; +import { MatSelectModule } from '@angular/material/select'; +import { MatSidenavModule } from '@angular/material/sidenav'; +import { MatSnackBarModule } from '@angular/material/snack-bar'; +import { MatTabsModule } from '@angular/material/tabs'; +import { MatToolbarModule } from '@angular/material/toolbar'; +import { MatMenuModule } from '@angular/material/menu'; +import { MatSlideToggleModule } from '@angular/material/slide-toggle'; +import { CommonModule } from '@angular/common'; +import { NotificationsComponent } from './shared/notifications/notifications.component'; + +export function createTranslateLoader(http: HttpClient) { + return new TranslateHttpLoader(http, './assets/i18n/', '.json'); +} + +const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { + suppressScrollX: true, + wheelSpeed: 2, + wheelPropagation: true, + minScrollbarLength: 20 +}; + +@NgModule({ + declarations: [ + AppComponent, + HeaderComponent, + SidebarComponent, + NotificationComponent, + OptionsComponent, + MenuComponent, + AdminLayoutComponent, + AuthLayoutComponent, + AccordionAnchorDirective, + AccordionLinkDirective, + AccordionDirective, + WebsiteComponent, + NotificationsComponent, + ], + imports: [ + CommonModule, + BrowserModule, + BrowserAnimationsModule, + RouterModule.forRoot(AppRoutes, { relativeLinkResolution: 'legacy' }), + FormsModule, + HttpClientModule, + TranslateModule.forRoot({ + loader: { + provide: TranslateLoader, + useFactory: createTranslateLoader, + deps: [HttpClient] + } + }), + LoadingBarRouterModule, + MatSidenavModule, + MatCardModule, + MatMenuModule, + MatCheckboxModule, + MatIconModule, + MatButtonModule, + MatToolbarModule, + MatTabsModule, + MatListModule, + MatSlideToggleModule, + MatSelectModule, + MatProgressBarModule, + FlexLayoutModule, + BidiModule, + MatSnackBarModule, + PerfectScrollbarModule + ], + providers: [ + { + provide: PERFECT_SCROLLBAR_CONFIG, + useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG, + multi: true + }, + { + provide: HTTP_INTERCEPTORS, + useClass: AuthInterceptor, + multi: true + }, + ConstantsService + ], + bootstrap: [AppComponent] +}) +export class AppModule { + +} diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts new file mode 100755 index 0000000..0a53c58 --- /dev/null +++ b/src/app/app.routing.ts @@ -0,0 +1,40 @@ +import { Routes } from '@angular/router'; + +import { AdminLayoutComponent, AuthLayoutComponent } from './core'; +import { AuthGuard } from './core/guards/auth.guard'; + +export const AppRoutes: Routes = [ + { + path: '', + component: AdminLayoutComponent, + children: [ + { + path: '', + loadChildren: () => import('./dashboard/dashboard.module').then(m => m.DashboardModule), + canActivate: [AuthGuard] + } + ] + }, + { + path: 'v2', + component: AdminLayoutComponent, + children: [ + { + path: '', + loadChildren: () => import('./dashboard-v2/dashboard-v2.module').then(m => m.DashboardV2Module), + canActivate: [AuthGuard] + } + ] + }, + { + path: '', + component: AuthLayoutComponent, + children: [{ + path: 'session', + loadChildren: () => import('./session/session.module').then(m => m.SessionModule) + }] + }, + { + path: '**', + redirectTo: 'session/404' + }]; diff --git a/src/app/common/services/constants.service.spec.ts b/src/app/common/services/constants.service.spec.ts new file mode 100755 index 0000000..271ac00 --- /dev/null +++ b/src/app/common/services/constants.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { ConstantsService } from './constants.service'; + +describe('ConstantsService', () => { + beforeEach(() => TestBed.configureTestingModule({ teardown: { destroyAfterEach: false } })); + + it('should be created', () => { + const service: ConstantsService = TestBed.get(ConstantsService); + expect(service).toBeTruthy(); + }); +}); diff --git a/src/app/common/services/constants.service.ts b/src/app/common/services/constants.service.ts new file mode 100755 index 0000000..44a65fd --- /dev/null +++ b/src/app/common/services/constants.service.ts @@ -0,0 +1,97 @@ +import { Injectable } from '@angular/core' +import { HttpClient, HttpHeaders } from '@angular/common/http' + +@Injectable({ + providedIn: 'root' +}) + +// export class User { +// id: number +// changed_password: boolean +// dob: string +// dummy: boolean +// email: string +// first_name: string +// gender: string +// gender_display: string +// image: string +// last_name: string +// phone: string +// profile_image: string +// role: string +// username: string +// } + +export class ConstantsService { + + readonly rememberUser = this.getRememberMe() + readonly token = this.getToken() // fixme: not accessible on interceptors + readonly user: any = this.getUserProfile() + + constructor() { } + + setRememberMe(remember) { + return localStorage.setItem('remember_me', remember) + } + + getRememberMe(): boolean { + return JSON.parse(localStorage.getItem('remember_me')); + } + + setToken(token) { + return localStorage.setItem('access_token', token) + } + getToken() { + return localStorage.getItem('access_token') + } + + setExpiresOn(time) { + return localStorage.setItem('expires_on', JSON.stringify(time)) + } + + getExpiresOn() { + return JSON.parse(localStorage.getItem('expires_on')) + } + + setTimeLoggedIn(time) { + return localStorage.setItem('time_logged_in', JSON.stringify(time)) + } + + getTimeLoggedIn() { + return JSON.parse(localStorage.getItem('time_logged_in')) + } + + setRefreshToken(token) { + return localStorage.setItem('refresh_token', token) + } + + getRefreshToken() { + return localStorage.getItem('refresh_token') + } + + setUserProfile(profile) { + return localStorage.setItem('user_profile', JSON.stringify(profile)) + } + + getUserProfile() { + return JSON.parse(localStorage.getItem('user_profile')) + } + + setUserRole(type: string) { + return (localStorage.setItem('user_role', type)) + } + + getUserRole() { + return localStorage.getItem('user_role') + } + + getServiceHeaders() { + let authheaders = new HttpHeaders( + { + 'Content-Type': 'application/json', + "Authorization": "Bearer " + this.token + }) + + return { headers: authheaders } + } +} diff --git a/src/app/core/admin-layout/admin-layout.component.html b/src/app/core/admin-layout/admin-layout.component.html new file mode 100755 index 0000000..3179a49 --- /dev/null +++ b/src/app/core/admin-layout/admin-layout.component.html @@ -0,0 +1,21 @@ +
+ + + + + + + + + + +
+ +
+
+ + + + +
\ No newline at end of file diff --git a/src/app/core/admin-layout/admin-layout.component.ts b/src/app/core/admin-layout/admin-layout.component.ts new file mode 100755 index 0000000..b774494 --- /dev/null +++ b/src/app/core/admin-layout/admin-layout.component.ts @@ -0,0 +1,122 @@ +import { + Component, + ElementRef, + NgZone, + OnInit, + OnDestroy, + ViewChild, + HostListener +} from '@angular/core'; +import { Router, NavigationEnd } from '@angular/router'; +import { Subscription } from 'rxjs'; +import { filter } from 'rxjs/operators'; + +import { TranslateService } from '@ngx-translate/core'; + +import { + PerfectScrollbarConfigInterface, + PerfectScrollbarDirective +} from 'ngx-perfect-scrollbar'; + +const SMALL_WIDTH_BREAKPOINT = 960; + +@Component({ + selector: 'app-layout', + templateUrl: './admin-layout.component.html' +}) +export class AdminLayoutComponent implements OnInit, OnDestroy { + private _router: Subscription; + + mediaMatcher: MediaQueryList = matchMedia( + `(max-width: ${SMALL_WIDTH_BREAKPOINT}px)` + ); + url: string; + sidePanelOpened; + options = { + collapsed: false, + compact: false, + boxed: false, + dark: false, + dir: 'ltr' + }; + + @ViewChild('sidemenu', { static: true }) + sidemenu; + @ViewChild(PerfectScrollbarDirective, { static: true }) + directiveScroll: PerfectScrollbarDirective; + + public config: PerfectScrollbarConfigInterface = {}; + + constructor( + private _element: ElementRef, + private router: Router, + zone: NgZone + ) { + this.mediaMatcher.addListener(mql => + zone.run(() => this.mediaMatcher = matchMedia(`(max-width: ${SMALL_WIDTH_BREAKPOINT}px)`))); + } + + ngOnInit(): void { + this.url = this.router.url; + + this._router = this.router.events + .pipe(filter(event => event instanceof NavigationEnd)) + .subscribe((event: NavigationEnd) => { + document.querySelector( + '.app-inner > .mat-drawer-content > div' + ).scrollTop = 0; + this.url = event.url; + this.runOnRouteChange(); + }); + } + + ngOnDestroy(): void { + this._router.unsubscribe(); + } + + runOnRouteChange(): void { + if (this.isOver()) { + this.sidemenu.close(); + } + + this.updatePS(); + } + + receiveOptions($event): void { + this.options = $event; + } + + isOver(): boolean { + if ( + this.url === '/apps/messages' || + this.url === '/apps/calendar' || + this.url === '/apps/media' || + this.url === '/maps/leaflet' || + this.url === '/taskboard' + ) { + return true; + } else { + return this.mediaMatcher.matches; + } + } + + menuMouseOver(): void { + if (this.mediaMatcher.matches && this.options.collapsed) { + this.sidemenu.mode = 'over'; + } + } + + menuMouseOut(): void { + if (this.mediaMatcher.matches && this.options.collapsed) { + this.sidemenu.mode = 'side'; + } + } + + updatePS(): void { + if (!this.mediaMatcher.matches && !this.options.compact) { + setTimeout(() => { + this.directiveScroll.update(); + }, 350); + } + } +} diff --git a/src/app/core/auth-layout/auth-layout.component.html b/src/app/core/auth-layout/auth-layout.component.html new file mode 100755 index 0000000..ff38bb5 --- /dev/null +++ b/src/app/core/auth-layout/auth-layout.component.html @@ -0,0 +1,3 @@ + + + diff --git a/src/app/core/auth-layout/auth-layout.component.ts b/src/app/core/auth-layout/auth-layout.component.ts new file mode 100755 index 0000000..0d23dfa --- /dev/null +++ b/src/app/core/auth-layout/auth-layout.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-layout', + styles: [ + ':host .mat-drawer-content {padding: 0;} .mat-drawer-container {z-index: 1000}' + ], + templateUrl: './auth-layout.component.html' +}) +export class AuthLayoutComponent { +} diff --git a/src/app/core/guards/auth.guard.spec.ts b/src/app/core/guards/auth.guard.spec.ts new file mode 100755 index 0000000..3f85f05 --- /dev/null +++ b/src/app/core/guards/auth.guard.spec.ts @@ -0,0 +1,16 @@ +import { TestBed, inject, waitForAsync } from '@angular/core/testing'; + +import { AuthGuard } from './auth.guard'; + +describe('AuthGuard', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [AuthGuard], + teardown: { destroyAfterEach: false } +}); + }); + + it('should ...', inject([AuthGuard], (guard: AuthGuard) => { + expect(guard).toBeTruthy(); + })); +}); diff --git a/src/app/core/guards/auth.guard.ts b/src/app/core/guards/auth.guard.ts new file mode 100755 index 0000000..0746f0a --- /dev/null +++ b/src/app/core/guards/auth.guard.ts @@ -0,0 +1,72 @@ +import { Injectable } from '@angular/core'; +import { Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; +import { SessionService } from '../../session/session.service'; +import { ConstantsService } from 'src/app/common/services/constants.service'; + + +@Injectable({ providedIn: 'root' }) +export class AuthGuard implements CanActivate { + constructor( + private router: Router, + private authenticationService: SessionService, + private _constant: ConstantsService + ) { } + + canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) { + const current_user = this.authenticationService.currentUser(); + const rememberMe = this._constant.rememberUser; + + // console.log(current_user, rememberMe, 'here,,,'); + + /** Step 1 -> Check if the current user is set */ + /** Step 2 -> Check whehter remember me was set to true */ + /** Step 3 if remember me is set to true send refresh token to api and get the new access token */ + + /** Todo: if user is using the app refresh the token after 50 mins */ + + if (current_user) { + // logged in so return true + // console.log('17: ', current_user) + // if ( rememberMe ) { + // // this.authenticationService.isTokenExpired(); + // } + + return true; + } + + // not logged in so redirect to login page with the return url + // this.router.navigate(['/session/signin'], { queryParams: { returnUrl: state.url } }); + + this.router.navigate(['/session/signin']); + + return false; + } +} + +@Injectable({ providedIn: 'root' }) +export class NotAdminGuard implements CanActivate { + constructor(private router: Router) { } + + canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) { + const user = JSON.parse(localStorage.getItem('user_profile')); + if (user.role === 'A') { + this.router.navigate(['']); + return false; + } + return true; + } +} + +@Injectable({ providedIn: 'root' }) +export class AdminGuard implements CanActivate { + constructor(private router: Router) { } + + canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) { + const user = JSON.parse(localStorage.getItem('user_profile')); + if (user.role === 'A') { + return true; + } + this.router.navigate(['']); + return false; + } +} diff --git a/src/app/core/header/header.component.html b/src/app/core/header/header.component.html new file mode 100755 index 0000000..864ffd0 --- /dev/null +++ b/src/app/core/header/header.component.html @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/core/header/header.component.ts b/src/app/core/header/header.component.ts new file mode 100755 index 0000000..7897c1e --- /dev/null +++ b/src/app/core/header/header.component.ts @@ -0,0 +1,33 @@ +import { Component, EventEmitter, Output } from '@angular/core'; + +import * as screenfull from 'screenfull'; +import { Router } from '@angular/router'; +import { SessionService } from 'src/app/session/session.service'; + +@Component({ + selector: 'app-header', + templateUrl: './header.component.html' +}) +export class HeaderComponent { + @Output() + toggleSidenav = new EventEmitter(); + @Output() + toggleNotificationSidenav = new EventEmitter(); + + constructor(private router: Router, private auth: SessionService) { } + + fullScreenToggle(): void { + if (screenfull.enabled) { + screenfull.toggle(); + } + } + + gotoHome() { + return this.router.navigate(['/']); + } + + logout() { + this.auth.logout() + return this.router.navigate(['/session/signin']); + } +} diff --git a/src/app/core/index.ts b/src/app/core/index.ts new file mode 100755 index 0000000..f77547e --- /dev/null +++ b/src/app/core/index.ts @@ -0,0 +1,8 @@ +export * from './admin-layout/admin-layout.component'; +export * from './auth-layout/auth-layout.component'; +export * from './header/header.component'; +export * from './sidebar/sidebar.component'; +export * from './notification/notification.component'; +export * from './menu/menu.component'; +export * from './menu-accordion'; +export * from './options/options.component'; diff --git a/src/app/core/menu-accordion/accordion.directive.ts b/src/app/core/menu-accordion/accordion.directive.ts new file mode 100755 index 0000000..0a424c9 --- /dev/null +++ b/src/app/core/menu-accordion/accordion.directive.ts @@ -0,0 +1,59 @@ +import { + Directive, + OnInit, + AfterViewInit, + AfterContentChecked +} from '@angular/core'; +import { Router, NavigationEnd } from '@angular/router'; +import { filter } from 'rxjs/operators'; + +import { AccordionLinkDirective } from './accordionlink.directive'; + +@Directive({ + selector: '[appAccordion]' +}) +export class AccordionDirective implements AfterContentChecked { + protected navlinks: Array = []; + + closeOtherLinks(openLink: AccordionLinkDirective): void { + this.navlinks.forEach((link: AccordionLinkDirective) => { + if (link !== openLink) { + link.open = false; + } + }); + } + + addLink(link: AccordionLinkDirective): void { + this.navlinks.push(link); + } + + removeGroup(link: AccordionLinkDirective): void { + const index = this.navlinks.indexOf(link); + if (index !== -1) { + this.navlinks.splice(index, 1); + } + } + + checkOpenLinks() { + this.navlinks.forEach((link: AccordionLinkDirective) => { + if (link.group) { + const routeUrl = this.router.url; + const currentUrl = routeUrl.split('/'); + if (currentUrl.indexOf(link.group) > 0) { + link.open = true; + this.closeOtherLinks(link); + } + } + }); + } + + ngAfterContentChecked(): void { + this.router.events + .pipe(filter(event => event instanceof NavigationEnd)) + .subscribe(e => this.checkOpenLinks()); + } + + constructor(private router: Router) { + setTimeout(() => this.checkOpenLinks()); + } +} diff --git a/src/app/core/menu-accordion/accordionanchor.directive.ts b/src/app/core/menu-accordion/accordionanchor.directive.ts new file mode 100755 index 0000000..8c5a254 --- /dev/null +++ b/src/app/core/menu-accordion/accordionanchor.directive.ts @@ -0,0 +1,19 @@ +import { Directive, HostListener, Inject } from '@angular/core'; + +import { AccordionLinkDirective } from './accordionlink.directive'; + +@Directive({ + selector: '[appAccordionToggle]' +}) +export class AccordionAnchorDirective { + protected navlink: AccordionLinkDirective; + + constructor(@Inject(AccordionLinkDirective) navlink: AccordionLinkDirective) { + this.navlink = navlink; + } + + @HostListener('click', ['$event']) + onClick(e: any) { + this.navlink.toggle(); + } +} diff --git a/src/app/core/menu-accordion/accordionlink.directive.ts b/src/app/core/menu-accordion/accordionlink.directive.ts new file mode 100755 index 0000000..9b2d5ff --- /dev/null +++ b/src/app/core/menu-accordion/accordionlink.directive.ts @@ -0,0 +1,50 @@ +import { + Directive, + HostBinding, + Inject, + Input, + OnInit, + OnDestroy +} from '@angular/core'; + +import { AccordionDirective } from './accordion.directive'; + +@Directive({ + selector: '[appAccordionLink]' +}) +export class AccordionLinkDirective implements OnInit, OnDestroy { + @Input() + public group: any; + + @HostBinding('class.open') + @Input() + get open(): boolean { + return this._open; + } + + set open(value: boolean) { + this._open = value; + if (value) { + this.nav.closeOtherLinks(this); + } + } + + protected _open: boolean; + protected nav: AccordionDirective; + + constructor(@Inject(AccordionDirective) nav: AccordionDirective) { + this.nav = nav; + } + + ngOnInit(): any { + this.nav.addLink(this); + } + + ngOnDestroy(): any { + this.nav.removeGroup(this); + } + + toggle(): any { + this.open = !this.open; + } +} diff --git a/src/app/core/menu-accordion/index.ts b/src/app/core/menu-accordion/index.ts new file mode 100755 index 0000000..a43f4c8 --- /dev/null +++ b/src/app/core/menu-accordion/index.ts @@ -0,0 +1,3 @@ +export * from './accordionanchor.directive'; +export * from './accordionlink.directive'; +export * from './accordion.directive'; diff --git a/src/app/core/menu/menu.component.ts b/src/app/core/menu/menu.component.ts new file mode 100755 index 0000000..ffaf96e --- /dev/null +++ b/src/app/core/menu/menu.component.ts @@ -0,0 +1,66 @@ +import { Component } from '@angular/core'; +import { MenuService } from './menu.service'; + +import { TranslateService } from '@ngx-translate/core'; + +@Component({ + selector: 'app-menu', + template: ` + + + + {{ menuitem.icon }} + {{ menuitem.name | translate }} + + {{ badge.value }} + + + {{ menuitem.icon }} + {{ menuitem.name | translate }} + + {{ badge.value }} + + + {{ menuitem.icon }} + {{ menuitem.name | translate }} + + {{ badge.value }} + + + {{ menuitem.icon }} + {{ menuitem.name | translate }} + + {{ badge.value }} + arrow_drop_down + + + + {{ childitem.name | translate }} + {{ childitem.name | translate }} + + + + `, + providers: [MenuService] +}) +export class MenuComponent { + currentLang = 'en'; + + constructor( + public menuService: MenuService, + public translate: TranslateService + ) { } + + addMenuItem(): void { + this.menuService.add({ + state: 'menu', + name: 'MENU', + type: 'sub', + icon: 'trending_flat', + children: [ + { state: 'menu', name: 'MENU' }, + { state: 'timeline', name: 'MENU' } + ] + }); + } +} diff --git a/src/app/core/menu/menu.service.ts b/src/app/core/menu/menu.service.ts new file mode 100755 index 0000000..54917ed --- /dev/null +++ b/src/app/core/menu/menu.service.ts @@ -0,0 +1,397 @@ +import { Injectable } from '@angular/core' +import { ConstantsService } from '../../common/services/constants.service' + +export interface BadgeItem { + type: string + value: string +} + +export interface ChildrenItems { + state: string | string[] + name: string + type?: string + redirect?: boolean +} + +export interface Menu { + state: string + name: string + type: string + icon: string + badge?: BadgeItem[] + children?: ChildrenItems[] +} + + +const TeacherMenu = [ + { + state: '/', + name: 'HOME', + type: 'link', + icon: 'explore' + }, + { + state: '/', + name: 'Learners', + type: 'extTabLink', + icon: 'people_outline', + children: [ + { state: 'add-students', name: 'Add Learner' }, + { state: 'view-students', name: 'View Learners' }, + ] + }, + { + state: '/', + name: 'Reports', + type: 'extTabLink', + icon: 'description' + }, + { + state: 'settings', + name: 'Settings', + type: 'sub', + icon: 'settings', + children: [ + { state: 'profile', name: 'Profile' }, + { state: 'change-password', name: 'Change Password' }, + ] + }, + { + state: '#', + name: 'DOCS', + type: 'extTabLink', + icon: 'local_library' + } +] + +const SchoolMenu = [ + { + state: '/', + name: 'HOME', + type: 'link', + icon: 'explore' + }, + { + state: 'classes', + name: 'Classes', + type: 'sub', + icon: 'school', + children: [ + { state: 'add-class', name: 'Add Class' }, + { state: 'view-classes', name: 'View Classes' }, + ] + }, + { + state: 'teachers', + name: 'Teachers', + type: 'sub', + icon: 'people', + children: [ + { state: 'add-teachers', name: 'Add Teachers' }, + { state: 'view-teachers', name: 'View Teachers' }, + { state: 'reset-password', name: 'Reset Password' }, + ] + }, + { + state: 'students', + name: 'Learners', + type: 'sub', + icon: 'people_outline', + children: [ + { state: 'add-student', name: 'Add Learner' }, + { state: 'view-students', name: 'View Learners' }, + // { state: 'move-students', name: 'Move Learners' }, + // { state: 'promote-students', name: 'Promote Learners' }, + ] + }, + { + state: 'settings', + name: 'Settings', + type: 'sub', + icon: 'settings', + children: [ + { state: 'profile', name: 'Profile' }, + { state: 'change-password', name: 'Change Password' }, + ] + }, + // { + // state: '#', + // name: 'DOCS', + // type: 'extTabLink', + // icon: 'local_library' + // } +] + +// Admin menu page +const AdminMenu = [ + { + state: '/', + name: 'HOME', + type: 'link', + icon: 'explore' + }, + { + state: 'schools', + name: 'Schools', + type: 'sub', + icon: 'school', + children: [ + // { state: 'add-school', name: 'Add Schools' }, + { state: 'view-schools', name: 'View Schools' }, + // { state: 'schools-attendance', name: 'Schools Attendance' }, + ] + }, + { + state: 'teachers', + name: 'Teachers', + type: 'sub', + icon: 'people', + children: [ + // { state: 'add-teacher', name: 'Add Teacher' }, // to do face 3 and remove the authgurd for it to work; + { state: 'view-teachers', name: 'View Teachers' }, + { state: 'reset-password', name: 'Reset Password' }, + ] + }, + { + state: 'students', + name: 'Learners', + type: 'sub', + icon: 'people_outline', + children: [ + { state: 'view-students', name: 'View Learners' }, + ] + }, + { + state: 'reports', + name: 'Reports', + type: 'sub', + icon: 'file_copy', + children: [ + // { state: 'stats', name: 'Statistics' }, + { state: 'enrolment', name: 'Enrolment' }, + { state: 'attendance', name: 'Attendance' }, + { state: 'absence', name: 'Absenteeism' }, + { state: 'downloads', name: 'Downloads' }, + ] + }, + { + state: 'settings', + name: 'Settings', + type: 'sub', + icon: 'settings', + children: [ + { state: 'profile', name: 'Profile' }, + { state: 'change-password', name: 'Change Password' } + ] + }, + // { + // state: '#', + // name: 'DOCS', + // type: 'extTabLink', + // icon: 'local_library' + // } +] + +// // Admin menu page +// const DefaultMenu = [ +// { +// state: '/', +// name: 'HOME', +// type: 'link', +// icon: 'explore' +// }, +// { +// state: 'schools', +// name: 'Schools', +// type: 'sub', +// icon: 'school', +// children: [ +// { state: 'add-school', name: 'Add Schools' }, +// { state: 'view-schools', name: 'View Schools' }, +// { state: 'schools-attendance', name: 'Schools Attendance' }, +// ] +// }, +// { +// state: 'classes', +// name: 'Classes', +// type: 'sub', +// icon: 'school', +// children: [ +// { state: 'add-class', name: 'Add Class' }, +// { state: 'view-classes', name: 'View Classes' }, +// // { state: 'schools-attendance', name: 'Schools Attendance' }, +// ] +// }, +// { +// state: 'teachers', +// name: 'Teachers', +// type: 'sub', +// icon: 'people', +// children: [ +// { state: 'add-teacher', name: 'Add Teacher' }, +// { state: 'view-teachers', name: 'View Teachers' }, +// { state: 'reset-password', name: 'Reset Password' }, +// ] +// }, +// { +// state: 'students', +// name: 'Students', +// type: 'sub', +// icon: 'people_outline', +// children: [ +// { state: 'add-student', name: 'Add Student' }, +// { state: 'view-students', name: 'View Students' }, +// { state: 'move-students', name: 'Move Students' }, +// { state: 'promote-students', name: 'Promote Students' }, +// ] +// }, +// // { +// // state: '/', +// // name: 'Reports', +// // type: 'extTabLink', +// // icon: 'description' +// // }, +// { +// state: 'settings', +// name: 'Settings', +// type: 'sub', +// icon: 'settings', +// children: [ +// { state: 'change-password', name: 'Change Password' }, +// ] +// }, +// // { +// // state: '#', +// // name: 'DOCS', +// // type: 'extTabLink', +// // icon: 'local_library' +// // } +// ] + + +const SuperAdminMenu = [ + { + state: '/', + name: 'HOME', + type: 'link', + icon: 'explore' + }, + { + state: 'schools', + name: 'Schools', + type: 'sub', + icon: 'school', + children: [ + // { state: 'add-school', name: 'Add Schools' }, + { state: 'view-schools', name: 'View Schools' }, + { redirect: true, state: ['settings', 'system-users'], name: 'View Users' }, + // { state: 'schools-attendance', name: 'Schools Attendance' }, + ] + }, + { + state: 'classes', + name: 'Classes', + type: 'sub', + icon: 'class', + children: [ + { state: 'add-class', name: 'Add Class' }, + { state: 'view-classes', name: 'View Classes' }, + ] + }, + { + state: 'teachers', + name: 'Teachers', + type: 'sub', + icon: 'people', + children: [ + { state: 'add-teachers', name: 'Add Teachers' }, + { state: 'view-teachers', name: 'View Teachers' }, + { state: 'reset-password', name: 'Reset Password' }, + ] + }, + { + state: 'students', + name: 'Learners', + type: 'sub', + icon: 'people_outline', + children: [ + { state: 'add-student', name: 'Add Learner' }, + { state: 'view-students', name: 'View Learners' }, + // { state: 'move-students', name: 'Move Learners' }, + // { state: 'promote-students', name: 'Promote Learners' }, + ] + }, + { + state: 'reports', + name: 'Reports', + type: 'sub', + icon: 'file_copy', + children: [ + { state: 'enrolment', name: 'Enrolment' }, + { state: 'attendance', name: 'Attendance' }, + { state: 'absence', name: 'Absenteeism' }, + { state: 'auto', name: 'Auto Reports' }, + { state: 'delete', name: 'Deactivations' }, + { state: 'downloads', name: 'Downloads' }, + ] + }, + { + state: 'imports', + name: 'Imports', + type: 'sub', + icon: 'file_upload', + children: [ + { state: 'clean', name: 'Data Cleaning' }, + { state: 'import', name: 'Data Importation' } + ] + }, + { + state: 'settings', + name: 'Settings', + type: 'sub', + icon: 'settings', + children: [ + { state: 'profile', name: 'Profile' }, + { state: 'change-password', name: 'Change Password' }, + { state: 'system-users', name: 'System Users' }, + // { state: 'add-system-users', name: 'Add System Users' }, + + ] + }, +] + +@Injectable() +export class MenuService { + + role: any; + + constructor(private constantService: ConstantsService) { + this.role = this.constantService.getUserRole() + console.log(this.role, 'user role') + } + + getAll(): Menu[] { + return SuperAdminMenu; + + if (this.role === 'A') { + //return AdminMenu; + return SuperAdminMenu; + + } else if (this.role === 'SCHA') { + return SchoolMenu; + + } else if (this.role === 'SCHT') { + return TeacherMenu; + } + + } + + add(menu) { + AdminMenu.push(menu) + } + + getUserRole() { + return localStorage.getItem('user_role') + } + +} diff --git a/src/app/core/models/auth.models.ts b/src/app/core/models/auth.models.ts new file mode 100755 index 0000000..ad11706 --- /dev/null +++ b/src/app/core/models/auth.models.ts @@ -0,0 +1,9 @@ +export class User { + id: number; + username?: string; + password: string; + firstName: string; + lastName: string; + token?: string; + email: string; +} diff --git a/src/app/core/notification/notification.component.html b/src/app/core/notification/notification.component.html new file mode 100755 index 0000000..3a0ca3a --- /dev/null +++ b/src/app/core/notification/notification.component.html @@ -0,0 +1,130 @@ + + + Today +
+ + +
+

{{ today | date:'EEEE' }}

+

{{ today | date:'dd' }} {{ today | date:'MMMM' }}

+
+
+
+ + +

Stocks

+ + NASDAQ + 4,492.87 + -0.29% + + + NYSE + 10,692.07 + -0.53% + + + DOW J + 17,046.81 + -0.14% + + + APPL + 100,89 + +0.75% + + +

Weather

+ + {{ today | date:'shortTime' }} +

London

+ + + + 26° +
+ +

Todo

+ + Learn Angular 2.0 +

2:45PM

+
+ + Learn Angular Material +

3:20PM

+
+ + Write documentation +

6:00PM

+
+ +

Stats

+ +

Local Storage (4023 / 10690)

+ +
+ +

Cloud Storage (700 / 1030)

+ +
+ +

Local Storage (20 / 100)

+ +
+
+
+
+ + Notifications +
+ + + people +

Social

+

Ligula Purus Adipiscing

+
+ + local_offer +

Promotions

+

Etiam Ligula Dapibus

+
+ + info +

Updates

+

Sollicitudin Euismod Fringilla

+
+ + + delete_sweep +

Removed 6 items from task list

+ {{ 1427207139000 | date: 'fullDate' }} +
+ + check_circle +

Completed 2 projects

+ {{ 1427412725000 | date: 'fullDate' }} +
+ + notifications_paused +

Muted notifications

+ {{ 1427546580000 | date: 'fullDate' }} +
+ + person_add +

Added Joel to contact list

+ {{ 1428275520000 | date: 'fullDate' }} +
+ + phone_missed +

Missed live call from Ellie

+ {{ 1428830580000 | date: 'fullDate' }} +
+ + group_add +

You've been added to HR group

+ {{ 1429363920000 | date: 'fullDate' }} +
+
+
+
+
diff --git a/src/app/core/notification/notification.component.ts b/src/app/core/notification/notification.component.ts new file mode 100755 index 0000000..23559ec --- /dev/null +++ b/src/app/core/notification/notification.component.ts @@ -0,0 +1,10 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-notification', + templateUrl: './notification.component.html' +}) +export class NotificationComponent { + today: number = Date.now(); + constructor() {} +} diff --git a/src/app/core/options/options.component.html b/src/app/core/options/options.component.html new file mode 100755 index 0000000..e8f74e7 --- /dev/null +++ b/src/app/core/options/options.component.html @@ -0,0 +1,37 @@ + + + + + + Options + + + +
+ Collapsed Sidebar +
+
+ Compact Sidebar +
+
+ Boxed Layout +
+
+ Dark Mode +
+
+ RTL +
+
+ + {{ lang }} + +
+
+
+ \ No newline at end of file diff --git a/src/app/core/options/options.component.ts b/src/app/core/options/options.component.ts new file mode 100755 index 0000000..d42f949 --- /dev/null +++ b/src/app/core/options/options.component.ts @@ -0,0 +1,37 @@ +import { Component, Output, EventEmitter } from '@angular/core'; + +import { TranslateService } from '@ngx-translate/core'; + +@Component({ + selector: 'app-options', + templateUrl: './options.component.html' +}) +export class OptionsComponent { + currentLang = 'en'; + showSettings = false; + options = { + collapsed: false, + compact: false, + boxed: false, + dark: false, + dir: 'ltr' + }; + + @Output() + messageEvent = new EventEmitter(); + + constructor(public translate: TranslateService) { + const browserLang: string = translate.getBrowserLang(); + translate.use(browserLang.match(/en|fr/) ? browserLang : 'en'); + } + + sendOptions() { + if (this.options.collapsed === true) { + this.options.compact = false; + } + if (this.options.compact === true) { + this.options.collapsed = false; + } + this.messageEvent.emit(this.options); + } +} diff --git a/src/app/core/services/cookie.service.ts b/src/app/core/services/cookie.service.ts new file mode 100755 index 0000000..cdd7428 --- /dev/null +++ b/src/app/core/services/cookie.service.ts @@ -0,0 +1,51 @@ +import { Injectable } from '@angular/core'; + +@Injectable({ + providedIn: 'root' +}) +export class CookieService { + + constructor() { } + + /** + * Returns the cookie value by name + * @param name cookie name + */ + public getCookie(name: string) { + if (!name) { return null; } + const nameEQ = name + '='; + const ca = document.cookie.split(';'); + // tslint:disable-next-line: prefer-for-of + for (let i = 0; i < ca.length; i++) { + let c = ca[i]; + while (c.charAt(0) === ' ') { c = c.substring(1, c.length); } + if (c.indexOf(nameEQ) === 0) { return c.substring(nameEQ.length, c.length); } + } + return null; + } + + /** + * Deletes the cookie with given name + * @param name cookie name + * @param path path of the domain + */ + public deleteCookie(name: string) { + this.setCookie(name, '', -1); + } + + /** + * Creates/sets the cookie + * @param name name of cookie + * @param value cookie value + * @param days validity in days + */ + public setCookie(name: string, value: string, days: number) { + let expires = ''; + if (days) { + const date = new Date(); + date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); + expires = '; expires=' + date.toUTCString(); + } + document.cookie = name + '=' + value + expires + '; path=/'; + } +} diff --git a/src/app/core/sidebar/sidebar.component.html b/src/app/core/sidebar/sidebar.component.html new file mode 100755 index 0000000..04b766a --- /dev/null +++ b/src/app/core/sidebar/sidebar.component.html @@ -0,0 +1 @@ + diff --git a/src/app/core/sidebar/sidebar.component.ts b/src/app/core/sidebar/sidebar.component.ts new file mode 100755 index 0000000..3798f17 --- /dev/null +++ b/src/app/core/sidebar/sidebar.component.ts @@ -0,0 +1,9 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-sidebar', + templateUrl: './sidebar.component.html' +}) +export class SidebarComponent { + constructor() {} +} diff --git a/src/app/core/welcome-banner/welcome-banner.component.html b/src/app/core/welcome-banner/welcome-banner.component.html new file mode 100755 index 0000000..9b92a1d --- /dev/null +++ b/src/app/core/welcome-banner/welcome-banner.component.html @@ -0,0 +1,16 @@ +
+
+ +
+
{{ 'WELCOME' | translate }} +
+
+
+
{{ 'LOGGED_IN' | translate }} +
+
+
+
+
\ No newline at end of file diff --git a/src/app/core/welcome-banner/welcome-banner.component.scss b/src/app/core/welcome-banner/welcome-banner.component.scss new file mode 100755 index 0000000..62bbf8f --- /dev/null +++ b/src/app/core/welcome-banner/welcome-banner.component.scss @@ -0,0 +1,14 @@ +.welcome, +.loggedin, +.banner { + font-weight: 100; + font-size: 15px; +} + +.banner { + font-weight: 600; +} + +.loggedin { + text-align: right; +} \ No newline at end of file diff --git a/src/app/core/welcome-banner/welcome-banner.component.spec.ts b/src/app/core/welcome-banner/welcome-banner.component.spec.ts new file mode 100755 index 0000000..b4aa437 --- /dev/null +++ b/src/app/core/welcome-banner/welcome-banner.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { WelcomeBannerComponent } from './welcome-banner.component'; + +describe('WelcomeBannerComponent', () => { + let component: WelcomeBannerComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [WelcomeBannerComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(WelcomeBannerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/core/welcome-banner/welcome-banner.component.ts b/src/app/core/welcome-banner/welcome-banner.component.ts new file mode 100755 index 0000000..135f2f3 --- /dev/null +++ b/src/app/core/welcome-banner/welcome-banner.component.ts @@ -0,0 +1,59 @@ +import { Component, OnInit } from '@angular/core' +import { ConstantsService } from 'src/app/common/services/constants.service' +import * as moment from 'moment' +import { SessionService } from 'src/app/session/session.service'; +import { trigger, style, transition, animate, keyframes, query, stagger } from '@angular/animations'; +@Component({ + selector: 'app-welcome-banner', + templateUrl: './welcome-banner.component.html', + styleUrls: ['./welcome-banner.component.scss'], + animations: [ + + trigger('welcomeAnimation', [ + transition('* => *', [ + + query('.welcome-banner', style({ opacity: 0, transform: 'translateY(-40px)' })), + + query('.welcome-banner', stagger('200ms', [ + animate('400ms 1.2s ease-in', style({ opacity: 1, transform: 'translateY(0)' })), + ])), + + query('.welcome-banner', [ + animate(1000, style('*')) + ]) + ]) + ]) + ] +}) +export class WelcomeBannerComponent implements OnInit { + constructor(private _constant: ConstantsService, private sessionService: SessionService) { } + + public loggedInUser: string = '' + timer: any + user: any + + ngOnInit() { + + this.user = this._constant.getUserProfile() + + console.log(this.user, 'my user') + + if (this.user.first_name != "" && this.user.last_name != "") { + this.loggedInUser = this.user.first_name + " " + this.user.last_name + } else { + this.loggedInUser = this.user.username + } + + this.startTimer() + } + get loggedInRoleName() { + if (this.user) + return this.user.role_name + return "" + } + + startTimer() { + let startTimestamp = this._constant.getTimeLoggedIn() + this.timer = moment(startTimestamp).format('hh:mm A') + } +} diff --git a/src/app/dashboard-v2/dashboard-v2.component.html b/src/app/dashboard-v2/dashboard-v2.component.html new file mode 100644 index 0000000..691a672 --- /dev/null +++ b/src/app/dashboard-v2/dashboard-v2.component.html @@ -0,0 +1,305 @@ +
+ + +
+ + +
+ +
+

Attendance Charts - {{getSelectedDispaly()}}

+
+ + + + + +
+
+ +
+ + +
+ + + + +
+
+ + + + +
+
+
+
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ + +

Enrolment Charts - {{getSelectedDispaly()}}

+
+ + +
+ + + + +
+ +
+ + + + +
+
+ +
+
+ + + + +
+ +
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ +

Absenteeism Charts - {{getSelectedDispaly()}}

+
+
+ + + + +
+
+ + + + + + + +
+
\ No newline at end of file diff --git a/src/app/dashboard-v2/dashboard-v2.component.scss b/src/app/dashboard-v2/dashboard-v2.component.scss new file mode 100644 index 0000000..c4fc85e --- /dev/null +++ b/src/app/dashboard-v2/dashboard-v2.component.scss @@ -0,0 +1,155 @@ +:host ::ng-deep .card-title { + font-family: "Prompt-Regular" !important; +} + +:host ::ng-deep .card-text { + font-size: 13px !important; +} + +:host ::ng-deep .school-class { + background-color: #929292 !important; + color: #ffffff !important; +} + +:host ::ng-deep .student-class { + background-color: #009688 !important; + color: #fff !important; +} + +:host ::ng-deep .male-class { + background-color: #2196f3 !important; + color: #fff !important; +} + +:host ::ng-deep .female-class { + // #FFD28F + background-color: #ff10f0 !important; + color: #fff !important; +} + +:host ::ng-deep .dropout-male-class { + background-color: #e91e1e !important; + color: #fff !important; +} + +:host ::ng-deep .dropout-female-class { + + // background-color: #e91e63 !important; + background-color: #a52b70 !important; + color: #fff !important; +} + + +:host ::ng-deep .my-chart-wrapper { + padding: 0px !important; +} + +.mat-card { + padding: 10px; +} + +.row-no-pad { + padding-left: 0px !important; + padding-right: 0px !important; +} + +.data-list-class { + width: 99%; +} + +:host ::ng-deep .absencereason { + min-height: 500px !important; +} + +:host ::ng-deep .att_lwd_grade { + min-height: 400px !important; +} + + +:host ::ng-deep .att_grade { + min-height: 400px !important; +} + +:host ::ng-deep .att_county { + min-height: 400px !important; +} + +:host ::ng-deep .att_month { + min-height: 400px !important; +} + +:host ::ng-deep .att_lwd { + min-height: 400px !important; +} + +:host ::ng-deep .enr_grade { + min-height: 400px !important; +} + +:host ::ng-deep .enr_county { + min-height: 400px !important; +} + +:host ::ng-deep .enr_month { + min-height: 400px !important; +} + +:host ::ng-deep .enr_lwd { + min-height: 400px !important; +} + +:host ::ng-deep .enr_lwd_grade { + min-height: 400px !important; +} + +:host ::ng-deep .enr_lwd_county { + min-height: 400px !important; +} + +.stats-wrapper { + max-width: fit-content !important; + margin-left: 0 !important; + overflow-x: hidden !important; +} + +.chart-titles { + font-family: "Prompt-Medium" !important; + padding-top: 5px; +} + +.chart-title-2 { + font-family: "Prompt-Medium" !important; + padding-top: 15px; +} + +.title-date-wrapper { + display: grid; + grid-template-columns: 5fr 1fr; + padding-right: 10px; + padding-top: 20px; + padding-bottom: 10px; +} + +#exampleSelect { + font-size: 14px; +} + +.divider-top { + margin-top: 20px; +} + +:host ::ng-deep .no-data-title { + font-family: "Prompt-Medium" !important; + font-size: 16px !important; +} + +:host ::ng-deep .no-data-subtitle { + font-family: "Prompt-Regular" !important; + font-size: 15px !important; +} + +:host ::ng-deep .no-data-text { + font-family: "Prompt-Regular" !important; + font-size: 14px !important; + margin-top: 10px !important; +} \ No newline at end of file diff --git a/src/app/dashboard-v2/dashboard-v2.component.spec.ts b/src/app/dashboard-v2/dashboard-v2.component.spec.ts new file mode 100644 index 0000000..e7c8771 --- /dev/null +++ b/src/app/dashboard-v2/dashboard-v2.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { DashboardV2Component } from './dashboard-v2.component'; + +describe('DashboardV2Component', () => { + let component: DashboardV2Component; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ DashboardV2Component ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(DashboardV2Component); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/dashboard-v2/dashboard-v2.component.ts b/src/app/dashboard-v2/dashboard-v2.component.ts new file mode 100644 index 0000000..fdceeeb --- /dev/null +++ b/src/app/dashboard-v2/dashboard-v2.component.ts @@ -0,0 +1,700 @@ +import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute, Router } from '@angular/router'; +import { BarGraphYAxis, DataCardModel, DataMapModel } from '@sisitech/charts'; +import { Chart, registerables, TooltipItem } from 'chart.js'; +import { Subscription, concat } from 'rxjs'; +import { ConstantsService } from '../common/services/constants.service'; + + +@Component({ + selector: 'app-dashboard-v2', + templateUrl: './dashboard-v2.component.html', + styleUrls: ['./dashboard-v2.component.scss'] +}) +export class DashboardV2Component implements OnInit { + + dateFilter = { + start_date: null, + end_date: null + } + statsDuration: any = 180 + + myName = 'More Customers' + myData = [100, 20, 40, 50] + + grouped = true; + barPercentage = 0.8 + borderWidth = 3 + tension = 0.2 + + defaultBarGrahDefault = { + barPercentage: this.barPercentage, + tension: this.tension + } + enrDataMap = {} + defaultMaleAttGraphOptions = [ + this.getBarGraphOptions('absent_males', "red"), + this.getBarGraphOptions('present_males', "blue"), + ] + + defaultFeMaleAttGraphOptions = [ + this.getBarGraphOptions('present_females', "green"), + this.getBarGraphOptions('absent_females', "orange"), + ] + + blueColor = "rgb(32,150,243,0.7)" + redColor = "rgb(216,3,81,0.9)" + + femaleColor = "#ff10f0" + + defaultCombinedAttGraphOptions = [ + // Blue + this.getBarGraphOptions('present_percentage', this.blueColor), + // Red + this.getBarGraphOptions('absent_percentage', this.redColor), + ] + + defaultEnrolmentGraphOptions = [ + // Blue + this.getBarGraphOptions('males', this.blueColor), + // Red + this.getBarGraphOptions('females', this.femaleColor), + ] + + reasonForAbsenceGraphOptions = [ + // Blue + this.getBarGraphOptions('males', this.blueColor, { barThickness: 20 }), + // Red + this.getBarGraphOptions('females', this.femaleColor, { barThickness: 20 }), + ] + + yAxisFields: BarGraphYAxis[] = [ + ...this.defaultFeMaleAttGraphOptions, + ...this.defaultMaleAttGraphOptions, + ] + + attendanceGradeBarGraph: BarGraphYAxis[] = [ + ...this.defaultCombinedAttGraphOptions + ] + attendanceCountyBarGraph: BarGraphYAxis[] = [ + ...this.defaultCombinedAttGraphOptions + ] + attendanceDefaultBarGraph: BarGraphYAxis[] = [ + this.getBarGraphOptions('present_percentage', this.blueColor), + // Red + this.getBarGraphOptions('absent_percentage', this.redColor), + ] + attendanceMonthBarGraph: BarGraphYAxis[] = [ + ...this.defaultCombinedAttGraphOptions + ] + + + + lineCharAxisFields1: BarGraphYAxis[] = [ + this.getBarGraphOptions('present_females', "green"), + this.getBarGraphOptions('absent_females', "orange"), + ] + + + + lineCharAxisFields: BarGraphYAxis[] = [ + this.getBarGraphOptions('present_males', "grey", { dataKey: "day", ...this.defaultBarGrahDefault }), + this.getBarGraphOptions('absent_males', "green", { dataKey: "day", ...this.defaultBarGrahDefault }), + ] + + myGraphType = "doughnut" + getFirstItemIfArray = false + cardDetails: DataCardModel[] = [ + { title: '@active_schools#', subtitle: "Active Schools", link: "schools/view-schools", icon: "../assets/images/school.svg", extraModalClasses: "school-class" }, + { title: '@total_learners#', subtitle: "Total Students", link: "students/view-students", icon: "../assets/images/students.svg", extraModalClasses: "student-class" }, + { title: '@students.males#', subtitle: "Male Learners", link: "", icon: "../assets/images/male.svg", extraModalClasses: "male-class" }, + { title: '@students.females#', subtitle: "Female Learners", link: "", icon: "../assets/images/female.svg", extraModalClasses: "female-class" }, + { title: '@students.dropout_males#', subtitle: "Dropout Male Learners", link: "", icon: "../assets/images/male-dropout.svg", extraModalClasses: "dropout-male-class" }, + { title: '@students.dropout_females#', subtitle: "Dropout Female Learners", link: "", icon: "../assets/images/female-dropout.svg", extraModalClasses: "dropout-female-class" }, + ] + + + cardDetailsAtt: DataCardModel[] = [ + { title: '@stats.total_range_attendances#', subtitle: "Total Attendances Marked", link: "students/view-students", icon: "../assets/images/attendance.svg", extraModalClasses: "student-class" }, + { title: '@stats.total_att_range_schools#', subtitle: "Schools that Marked Attendance \n (@stats.schools_att_percentage#% of active schools). ", link: "students/view-students", icon: "../assets/images/school.svg", extraModalClasses: "student-class" }, + + { title: '@att_county.0.display_name#', subtitle: "Top Active @dynamic_display_name#", link: "schools/view-schools", icon: "../assets/images/top.svg", extraModalClasses: "male-class" }, + { title: '@att_county_least.0.display_name#', subtitle: "Least Active @dynamic_display_name#", link: "schools/view-schools", icon: "../assets/images/bottom.svg", extraModalClasses: "dropout-female-class" }, + // { title: '@students.males#', subtitle: "Top Active County", link: "", icon: "../assets/images/top.svg", extraModalClasses: "male-class" }, + // { title: '@students.females#', subtitle: "Least Active County", link: "", icon: "../assets/images/bottom.svg", extraModalClasses: "dropout-female-class" }, + ] + + cardDetailsEnrl: DataCardModel[] = [ + { title: '@stats.total_range_students#', subtitle: "Total Enrolment", link: "schools/view-schools", icon: "../assets/images/add-user.svg", extraModalClasses: "school-class" }, + { title: '@stats.total_range_schools#', subtitle: "Schools that Enrolled Learners", link: "students/view-students", icon: "../assets/images/school.svg", extraModalClasses: "student-class" }, + { title: '@enr_county.0.display_name#', subtitle: "Top Active @dynamic_display_name#", link: "", icon: "../assets/images/top.svg", extraModalClasses: "male-class" }, + { title: '@enr_county_least.0.display_name#', subtitle: "Least Active @dynamic_display_name#", link: "", icon: "../assets/images/bottom.svg", extraModalClasses: "dropout-female-class" }, + ] + + dataMap: DataMapModel = { + + } + + card + routeSub?: Subscription + shouldReload = false + user: any + + role_map_endoint = { + "SCHA": "stream", + "SCHT": "stream", + "SCO": "school", + "CO": "sub-county", + "A": "county", + } + + durationsMap = [ + { value: 7, display_name: "1 Week Ago" }, + { value: 14, display_name: "2 Weeks Ago" }, + { value: 30, display_name: "1 Month Ago" }, + { value: 90, display_name: "3 Months Ago" }, + { value: 180, display_name: "6 Months Ago" }, + { value: 365, display_name: "1 Year Ago" }, + ] + + role_map_display_key = { + "SCHA": "stream_name", + "SCHT": "stream_name", + "SCO": "school_name", + "CO": "sub_county_name", + "A": "county_name", + } + role_map_query_params = { + "SCHA": { "order_by": "base_class", "order": "ASC" }, + "SCHT": { "order_by": "base_class", "order": "ASC" }, + "SCO": {}, + "CO": {}, + "A": {}, + } + + constructor(private route: ActivatedRoute, private _constant: ConstantsService, private router: Router) { + Chart.register(...registerables); + } + + ngOnDestroy() { + this.routeSub?.unsubscribe() + } + + + getXDisplayFieldName(): string { + const path = this.role_map_display_key[this.user.role] ?? "N/A aa" + // console.log(`Found path is ${path}`) + return path + } + + getRoleMapEndoint(): string { + const path = this.role_map_endoint[this.user.role] + // console.log(`Found path is ${path}`) + return path + } + + getRoleExtraFilter(): any { + return this.role_map_query_params[this.user.role] + } + + getDynamicRoleType() { + const preText = "" + return `${preText} ${this.getRoleMapEndoint().capitalizeEachWord()}` + } + + getSelectedDispaly() { + return this.durationsMap.filter(item => item.value == this.statsDuration)[0].display_name + } + + + xScaleAxisExtraOptions = { + ticks: { + font: { + family: "Prompt-Regular" + }, + } + } + + xAxisExtraOptions = { + font: { + size: 12, + family: "Prompt-Regular" + }, + } + + titleExtraOptions = { + font: { + size: 16, + weight: 400, + family: 'Prompt-Semibold', + lineHeight: 1, + }, + layout: { + padding: 5 + } + } + + subtitleExtraOptions = { + font: { + size: 13, + family: 'Prompt-Regular', + }, + layout: { + padding: 30 + } + } + + legendExtraOptions = { + font: { + size: 9, + family: 'Prompt-Regular', + }, + } + + ngOnInit(): void { + this.routeSub = this.route.queryParams.subscribe((params) => { + if (params.hasOwnProperty("stats_duration")) { + console.log(params) + let newDuration = parseInt(params.stats_duration) + console.log("Change detected.") + this.statsDuration = parseInt(params.stats_duration) + const reload = localStorage.getItem("reload") + console.log("Reload", reload) + if (reload == "true") { + localStorage.setItem("reload", "false") + window.location.reload(); + } + + } + }) + + this.user = this._constant.getUserProfile() + + this.setupDashboardV2DataModels() + + // this.setupDataModel() + } + + attCardsPreChartData(data, rawData) { + let getDynamicFieldName = (item: any) => { + if (item.hasOwnProperty("stream_name")) { + return "stream_name" + } else if (item.hasOwnProperty("school_name")) { + return "school_name" + } else if (item.hasOwnProperty("sub_county_name")) { + return "sub_county_name" + } else if (item.hasOwnProperty("county_name")) { + return "county_name" + } + return "" + } + let getDynamicFieldDisplayName = (item: any) => { + return item[getDynamicFieldName(item)] + } + + data.att_county_least = data.att_county_least.filter(dt => dt.value != null).map(item => { + item.display_name = getDynamicFieldDisplayName(item) + return item + }) + + data.att_county = data.att_county.filter(dt => dt.value != null).map(item => { + item.display_name = getDynamicFieldDisplayName(item) + return item + }) + + data.stats.total_range_attendances = data.att_gender.reduce((prev, current) => prev + current.total_attendances_taken, 0) + data.stats.total_att_range_schools = rawData.att_school.data.count ?? 0 + + // console.log(data) + const firstItem = data.att_county_least[0] + data.dynamic_display_name = getDynamicFieldName(firstItem).replace("_name", "").capitalizeEachWord() + + const total_schools = data.stats.active_schools + if (total_schools > 0) { + let value = Math.round(data.stats.total_att_range_schools * 100.0 / total_schools) + data.stats.schools_att_percentage = value < 1 ? "less than 1" : value + } else { + data.stats.schools_att_percentage = 0 + } + + + console.log(data) + console.log(rawData) + return data + } + enrollCardsPreChartData(data, rawData) { + let getDynamicFieldName = (item: any) => { + if (item.hasOwnProperty("stream_name")) { + return "stream_name" + } else if (item.hasOwnProperty("school_name")) { + return "school_name" + } else if (item.hasOwnProperty("sub_county_name")) { + return "sub_county_name" + } else if (item.hasOwnProperty("county_name")) { + return "county_name" + } + return "" + } + let getDynamicFieldDisplayName = (item: any) => { + return item[getDynamicFieldName(item)] + } + + + data.enr_county_least = data.enr_county_least.filter(dt => dt.value != null).map(item => { + item.display_name = getDynamicFieldDisplayName(item) + return item + }) + + data.enr_county = data.enr_county.filter(dt => dt.value != null).map(item => { + item.display_name = getDynamicFieldDisplayName(item) + return item + }) + + data.stats.total_range_students = data.enr_gender.reduce((prev, current) => prev + current.total_students, 0) + data.stats.total_range_schools = rawData.enr_school.data.count ?? 0 + + const firstItem = data.att_county_least[0] + data.dynamic_display_name = getDynamicFieldName(firstItem).replace("_name", "").capitalizeEachWord() + + + + return data + } + + attendanceCombinedPreChartData(data: any) { + if (!data) return data + data.map(grade => { + grade.present = grade.present_males + grade.present_females + grade.absent = grade.absent_males + grade.absent_females + return grade + }) + return data + } + + attendancePercentageCombinedPreChartData(dataPoints: any[]) { + if (!dataPoints) return dataPoints + dataPoints.map(grade => { + let total = grade.present + grade.absent + grade.present_percentage = Math.round(grade.present * 100.0 / total) + grade.absent_percentage = Math.round(grade.absent * 100.0 / total) + return grade + }) + return dataPoints + } + + gradeNameAppendPreChartData(data: any) { + if (!data) return data + data.map(grade => { + let class_type = parseInt(grade.class_name) < 7 ? "Grade" : "Class" + grade.class_name = `${class_type} ${grade.class_name}` + return grade + }) + return data + } + + streamNameAppendPreChartData(data: any) { + if (!data) return data + data.map(grade => { + if (grade.hasOwnProperty("stream_name")) { + + let class_type = parseInt(grade.stream_name[0]) < 7 ? "Grade" : "Class" + grade.stream_name = `${class_type} ${grade.stream_name}` + } + + return grade + }) + return data + } + + + monthNamePreChartData(datas: any) { + if (!datas) return datas + datas.map((data: any) => { + data.month = new Date(data.month).toLocaleString('default', { year: 'numeric', month: 'long' }) + return data + }) + return datas.filter((grd: any) => grd.value != null) + } + + removeNullValuePreChartData(data: any) { + if (!data) return data + return data.filter(grd => grd.value != null) + } + + preChartDataCard(data) { + + data.total_learners = data.students.males + data.students.females + return data + } + addAllClassesData(data: any[]) { + if (!data) return data + console.log(data) + const res = { "total_attendances_taken": data.reduce((prev, current) => prev + current.total_attendances_taken, 0) } + console.log(res) + return res + } + + getBarGraphOptions(fieldName, backgroundColor, extras = {}) { + return { + fieldName: fieldName, + backgroundColor: backgroundColor, + barThickness: undefined, + borderWidth: 1, + grouped: this.grouped, + barPercentage: this.barPercentage, + ...extras + } + } + + getDataCardOptions() { + + } + + + titleTooltipFuncDay(context: TooltipItem<"bar">, row: any) { + // console.log(context, row) + return "Hello" + } + titleTooltipFunc(context: TooltipItem<"bar">, row: any) { + console.log(context) + return "@county_name - @sub_county_name#".interpolate({ ...row }).capitalizeEachWord() + } + + thisMonth: DataCardModel[] = [ + { + title: '@county.0.county_name# (@county.0.total_attendances_taken#)', + subtitle: "Top COunty in Data Collection", + link: "", + icon: "", + extraModalClasses: "12323" + }, + { + title: '@school.0.school_name# (@school.0.total_attendances_taken#)', + subtitle: "Top SChool in Data Collection", + link: "", + icon: "", + extraModalClasses: "" + }, + // { title: '@active_schools#', subtitle: "Active SChools" }, + // { title: '@students.females#', subtitle: "Female learners" }, + // { title: '@students.males#', subtitle: "Male learners" }, + // { title: '@students.dropout_males#', subtitle: "Dropout Male learners" }, + ] + getDateXDaysAgo(x) { + const currentDate = new Date(); + const pastDate = new Date(currentDate); + pastDate.setDate(currentDate.getDate() - x); + // Format the date as "yyyy-mm-dd" + const formattedDate = pastDate.toISOString().slice(0, 10); + return formattedDate; + } + + routeToNewPage() { + localStorage.setItem("reload", "true") + this.router.navigate(["/",], { queryParams: { stats_duration: this.statsDuration, } }) + } + + setupDashboardV2DataModels() { + console.log("Fethcing data..") + // let default_args = { "start_date": "2023-01-01", "end_date": "2023-11-30", "page_size": 5 } + let start_date = this.getDateXDaysAgo(this.statsDuration) + let default_args = { "start_date": start_date, "page_size": 13, "is_training_school": false } + let default_attandance_args = { "order_by": "total_attendances_taken", "order": "DESC" } + let default_enrolment_args = { "order_by": "total_students", "order": "DESC" } + let attendance_base_url = "api/v1/attendances/stats" + let enrollment_base_url = "api/v1/students/stats" + let absence_reason_base_url = "api/v1/students-absent-reasons/stats" + let date_from = `From date ${start_date} ` + + this.dataMap["stats"] = { + name: "stats", + url: "api/v1/statistics", + data: null, + error: null, + args: {}, + description: "Overral stats" + } + + this.dataMap["att_grade"] = { + name: "att_grade", + url: `${attendance_base_url}/class`, + data: null, + error: null, + args: { ...default_args, "order_by": "class_name", "order": "ASC" }, + description: date_from + } + this.dataMap["att_gender"] = { + name: "att_gender", + url: `${attendance_base_url}/gender`, + data: null, + error: null, + args: { ...default_args, }, + description: date_from + } + + this.dataMap["att_school"] = { + name: "att_school", + url: `${attendance_base_url}/school`, + data: null, + error: null, + args: { ...default_args, ...default_attandance_args }, + description: date_from + } + + + this.dataMap["att_county"] = { + name: "att_county", + url: `${attendance_base_url}/${this.getRoleMapEndoint()}`, + data: null, + error: null, + args: { ...default_attandance_args, ...default_args, ...this.getRoleExtraFilter() }, + description: date_from + } + + this.dataMap["att_county_least"] = { + name: "att_county", + url: `${attendance_base_url}/${this.getRoleMapEndoint()}`, + data: null, + error: null, + args: { ...{ "order_by": "total_attendances_taken", "order": "ASC" }, ...default_args, ...this.getRoleExtraFilter() }, + description: date_from + } + + this.dataMap["att_month"] = { + name: "att_month", + url: `${attendance_base_url}/month`, + data: null, + error: null, + args: { ...default_attandance_args, ...default_args, "order_by": "month", "order": "ASC" }, + description: date_from + } + + this.dataMap["att_lwd"] = { + name: "att_month", + url: `${attendance_base_url}/special-need`, + data: null, + error: null, + args: { ...default_attandance_args, ...default_args }, + description: date_from + } + + this.dataMap["att_lwd_grade"] = { + name: "att_lwd_grade", + url: `${attendance_base_url}/class`, + data: null, + error: null, + args: { ...default_args, no_special_needs: false, "order_by": "class_name", "order": "ASC" }, + description: date_from + } + + this.dataMap["att_lwd_county"] = { + name: "att_lwd_county", + url: `${attendance_base_url}/${this.getRoleMapEndoint()}`, + data: null, + error: null, + args: { ...default_args, ...default_attandance_args, no_special_needs: false, ...this.getRoleExtraFilter() }, + description: date_from + } + + + this.dataMap["enr_month"] = { + name: "enr_month", + url: `${enrollment_base_url}/month`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args, "order_by": "month", "order": "ASC" }, + description: date_from + } + + this.dataMap["enr_grade"] = { + name: "enr_grade", + url: `${enrollment_base_url}/class`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args, "order_by": "class_name", "order": "ASC" }, + description: date_from + } + this.dataMap["enr_gender"] = { + name: "enr_gender", + url: `${enrollment_base_url}/gender`, + data: null, + error: null, + args: { ...default_args, }, + description: date_from + } + + this.dataMap["enr_school"] = { + name: "enr_school", + url: `${enrollment_base_url}/school`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args }, + description: date_from + } + + this.dataMap["enr_county"] = { + name: "enr_county", + url: `${enrollment_base_url}/${this.getRoleMapEndoint()}`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args, ...this.getRoleExtraFilter() }, + description: date_from + } + + this.dataMap["enr_county_least"] = { + name: "enr_county_least", + url: `${enrollment_base_url}/${this.getRoleMapEndoint()}`, + data: null, + error: null, + args: { ...default_args, ...{ "order_by": "total_students", "order": "ASC" }, ...this.getRoleExtraFilter() }, + description: date_from + } + + this.dataMap["enr_lwd"] = { + name: "enr_lwd", + url: `${enrollment_base_url}/special-need`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args }, + description: date_from + } + + this.dataMap["enr_lwd_grade"] = { + name: "enr_lwd_grade", + url: `${enrollment_base_url}/class`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args, no_special_needs: false, "order_by": "class_name", "order": "ASC" }, + description: date_from + } + this.dataMap["enr_lwd_county"] = { + name: "enr_lwd_grade", + url: `${enrollment_base_url}/${this.getRoleMapEndoint()}`, + data: null, + error: null, + args: { ...default_args, ...default_enrolment_args, no_special_needs: false, ...this.getRoleExtraFilter() }, + description: date_from + } + + + this.dataMap["absence_reason"] = { + name: "absence_reason", + url: `${absence_reason_base_url}/reason`, + data: null, + error: null, + args: { ...default_args, no_special_needs: false }, + description: date_from + } + } + + + formatLabel(ob: any, fieldName: string) { + // return Date.parse(ob[fieldName]) + // return `@${fieldName}#`.interpolate(ob).toDateDisplay() + let day = `@${fieldName}#`.interpolate(ob) + + return `Date ${day.split("-")[2]}` + return fieldName.interpolate(ob) + } + +} diff --git a/src/app/dashboard-v2/dashboard-v2.module.ts b/src/app/dashboard-v2/dashboard-v2.module.ts new file mode 100644 index 0000000..f421c3e --- /dev/null +++ b/src/app/dashboard-v2/dashboard-v2.module.ts @@ -0,0 +1,35 @@ +import { CommonModule } from "@angular/common"; +import { NgModule } from "@angular/core"; +import { SharedModule } from "../shared/shared.module"; +import { RouterModule, Routes } from "@angular/router"; +import { DashboardV2Component } from "./dashboard-v2.component"; +import { ChartModule } from '@sisitech/charts'; +import { environment } from 'src/environments/environment' + +const authConfig = { + APIEndpoint: environment.APIEndpointNoSlash, + version: "api/v1", + clientId: environment.APIClientID, +} + +const Dashboardv2Routes: Routes = [ + { + path: '', + component: DashboardV2Component + }, +]; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(Dashboardv2Routes), + SharedModule, + ChartModule + ], + declarations: [ + DashboardV2Component + ], providers: [ + { provide: 'config', useValue: authConfig || {} } + ], +}) +export class DashboardV2Module { } \ No newline at end of file diff --git a/src/app/dashboard/dashboard.component.html b/src/app/dashboard/dashboard.component.html new file mode 100755 index 0000000..c8921a3 --- /dev/null +++ b/src/app/dashboard/dashboard.component.html @@ -0,0 +1,161 @@ + + + +
+ + + + + +
+ +
+
+ + + {{ 'DAILY_ATTENDANCE' | translate }} + {{ 'ATTENDANCE_DESC' | translate }} (Last 5 days) + + + + + + Loading... + + +
+ +
+ + + {{ 'MONTHLY_ATTENDANCE' | translate }} + {{ 'ATTENDANCE_DESC' | translate }} (Last 90 days) + + + + + + + Loading... + + +
+
+ + + {{ 'ANNUAL_ATTENDANCE' | translate }} + {{ 'ATTENDANCE_DESC' | translate }} (Last 1 Year) + + + + + + + Loading... + + + +
+
+
+
+ + + {{ 'STUDENT_ENROLMENT_TITLE_CLASS' | translate}} + {{ 'STUDENT_ENROLMENT_CLASS' | translate }} + + + + + + +
+ +
+ + + {{ 'STUDENT_ENROLMENT_DIST_GENDER' | translate}} + {{ 'STUDENT_ENROLMENT_DESC_DIST_GENDER' | translate}} + + + + + +
+ +
\ No newline at end of file diff --git a/src/app/dashboard/dashboard.component.scss b/src/app/dashboard/dashboard.component.scss new file mode 100755 index 0000000..5e778e7 --- /dev/null +++ b/src/app/dashboard/dashboard.component.scss @@ -0,0 +1,20 @@ +.mat-pink { + background-color: #d80351; + color: #ffffff; +} + +.mat-gray { + background-color: #929292; + color: #ffffff; +} + +.mat-yellow { + background-color: #f5d908; + color: #ffffff; +} + +@media (max-width: 500px) { + .chart-wrapper { + display: block !important; + } +} diff --git a/src/app/dashboard/dashboard.component.ts b/src/app/dashboard/dashboard.component.ts new file mode 100755 index 0000000..ad1b99e --- /dev/null +++ b/src/app/dashboard/dashboard.component.ts @@ -0,0 +1,465 @@ +import { Component, OnInit } from '@angular/core' +import { TranslateService } from '@ngx-translate/core' +import { ConstantsService } from '../common/services/constants.service'; +import { SessionService } from '../session/session.service'; +import { DashboardService } from './dashboard.service'; +import * as moment from 'moment' +import { Router } from '@angular/router'; +import { trigger, style, transition, animate, keyframes, query, stagger } from '@angular/animations'; +import { MatSnackBar } from '@angular/material/snack-bar'; + +@Component({ + selector: 'app-dashboard', + templateUrl: './dashboard.component.html', + styleUrls: ['./dashboard.component.scss'], + animations: [ + + // trigger('cardAnimation', [ + // transition('* => *', [ + + // query('.card-widget', style({ opacity: 0, transform: 'translateX(-40px)' })), + + // query('.card-widget', stagger('300ms', [ + // animate('300ms 1.2s ease-in', style({ opacity: 1, transform: 'translateX(0)' })), + // ])), + + // query('.card-widget', [ + // animate(300, style('*')) + // ]) + // ]) + // ]) + ] +}) +export class DashboardComponent implements OnInit { + + public statistics: any = {} + public singlebar: string = 'bar' + public bar: string = 'bar' + public doughnut: string = 'doughnut' + public students: any = {} + public en_distribution = {} + public att_distribution = {} + public class_distribution = {} + public att_m_distribution = {} + public att_d_distribution = {} + public en_resolver: boolean = false + public att_resolver: boolean = false + public class_resolver: boolean = false + public att_d_resolver: boolean = false + public att_m_resolver: boolean = false + public role: any = '' + public stats_widget_size: number + + public daily_chart: boolean + public monthly_chart: boolean + public annual_chart: boolean + public enrolment_class_chart: boolean + public enrolment_gender_chart: boolean + public enrolment_lwd_chart: boolean + + monthlyLoading: boolean = false + dailyLoading: boolean = false + yearlyLoading: boolean = false + + + + constructor(translate: TranslateService, + private snackBar: MatSnackBar, + private _constant: ConstantsService, + private session: SessionService, + private dashboardService: DashboardService, + private route: Router) { + + // TODO: implement translations later + // translate.addLangs(['en', 'fr']) + // translate.setDefaultLang('en') + // const browserLang: string = translate.getBrowserLang() + // translate.use(browserLang.match(/en|fr/) ? browserLang : 'en') + } + + ngOnInit() { + + const user = this.dashboardService.getUser() + + this.role = this._constant.getUserRole() + if (this.role == 'A') { + this.stats_widget_size = 20 + } else if (this.role == 'SCHA') { + this.stats_widget_size = 25 + } + this.stats_widget_size = 20 + + this.getStatistics() + + this.getEnrols() + this.getAttendance() + } + + getEnrols() { + this.getGenderEnrols() + this.getClassEnrols() + this.getSpecialNeedsEnrols() + } + + getStatistics(query: string = '') { + this.dashboardService.getStatistics(query).subscribe(res => { + this.statistics = { + schools: res.active_schools, + boys: res.students.males, + girls: res.students.females, + students: res.students.females + res.students.males, // fixme: check api for total students + dropouts: (res.students.dropout_males + res.students.dropout_females) + } + }) + } + + getGenderEnrols() { + this.dashboardService.getEnrolments('gender').subscribe(res => { + + // fix-me: refactor + if (res.results.length) { + this.enrolment_gender_chart = true + } else { + this.enrolment_gender_chart = false + } + + // console.log(res) + let males = 0 + let females = 0 + try { + males = res.results.filter(gend => gend.value == "M")[0]!.total_students || 0 + } catch (error) { } + + try { + females = res.results.filter(gend => gend.value == "F")[0]!.total_students || 0 + } catch (error) { } + + this.en_distribution = { + data: [males, females], + labels: ['Boys Enrolled', 'Girls Enrolled'] + } + + this.en_resolver = true + }) + } + + getSpecialNeedsEnrols() { + this.dashboardService.getEnrolments('special-need').subscribe(res => { + console.log(res, 'resulttttt') + + if (res.results.length) { + this.enrolment_lwd_chart = true + } else { + this.enrolment_lwd_chart = false + } + + + }) + } + + + + getClassEnrols() { + + this.class_distribution = {} + + let series: any = [] + let labels: any = [] + + this.dashboardService.getEnrolments('class').subscribe(res => { + + if (res.results.length) { + this.enrolment_class_chart = true + } else { + this.enrolment_class_chart = false + } + + for (let i in res.results) { + + if (res.results[i].value < 7) { + labels.push("Class " + res.results[i].class_name) + } else { + labels.push("Class " + res.results[i].class_name) + } + series.push(res.results[i].total_students) + } + + // fix-me: refactor + this.class_distribution = { + series: { + series_a: series, + series_b: series, + labels: { + label_a: 'Enrolments', + label_b: 'Enrolments' + } + }, + labels: labels, + } + // console.log(labels) + + this.class_resolver = true + }) + + // this.class_distribution = {} + + // let series: any = [] + // let labels: any = [] + + // this.dashboardService.getEnrolments('class').subscribe(res => { + + // if (res.results.length) { + // this.enrolment_class_chart = true + // } else { + // this.enrolment_class_chart = false + // } + + // for (let i in res.results) { + + // if (res.results[i].value < 7) { + // labels.push("Grade " + res.results[i].value) + // } else { + // labels.push("Class " + res.results[i].value) + // } + // series.push(res.results[i].total_students) + // } + + // // fix-me: refactor + // this.class_distribution = { + // series: { + // series_b: series, + // labels: { + // label_a: 'Enrolments', + // label_b: 'Enrolments' + // } + // }, + // labels: labels, + // } + + // this.class_resolver = true + // }) + } + + getAttendance() { + this.getDailyAttendance() + this.getYearlyAttendance() + this.getMonthlyAttendance() + } + + showStudents(type) { + this.route.navigate(['students/view-students'], { + queryParams: { + type: type + } + }); + } + + getYearlyAttendance() { + this.yearlyLoading = true + this.dashboardService.getAttendance('year').subscribe(res => { + this.yearlyLoading = false + if (res.results.length) { + this.annual_chart = true + + this.att_distribution = { + data: [ + res.results[0].present_males, + res.results[0].absent_males, + res.results[0].present_females, + res.results[0].absent_females], + labels: ['Boys present', 'Boys Absent', 'Girls present', 'Girls absent'] + } + + } else { + this.annual_chart = false + } + + + this.att_resolver = true + }, error => { + console.log(error) + this.yearlyLoading = false + }) + } + + getMonthlyAttendance() { + this.monthlyLoading = true + this.dashboardService.getAttendance('monthly').subscribe(res => { + this.monthlyLoading = false + let labels = [] + let presents = [] + let absents = [] + + if (res.results.length) { + this.monthly_chart = true + } else { + this.monthly_chart = false + } + + for (let i in res.results) { + + res.results[i].value = res.results[i].value.replace(/\b(\d{1})\b/g, '0$1') // fixme: bug on the date returned from the API - No ISO format. + labels.push(moment(res.results[i].value).format('MMM')) + let absentsTotal = (res.results[i].absent_males + res.results[i].absent_females) / 2 + + let presentTotal = (res.results[i].present_males + res.results[i].present_females) / 2 + + let total = absentsTotal + presentTotal + + let absentPercent = (absentsTotal / total) * 100 + let presentPercent = (presentTotal / total) * 100 + + + presents.push(parseFloat(presentPercent.toString()).toFixed(2)) + absents.push(parseFloat(absentPercent.toString()).toFixed(2)) + } + console.log(presents) + console.log(absents) + + this.att_m_distribution = { + series: { + series_a: presents, + series_b: absents, + labels: { + label_a: 'Present', + label_b: 'Absent' + } + }, + labels: labels + }; + + this.att_m_resolver = true + }, error => { + this.monthlyLoading = false + console.log(error) + }) + + } + + getDailyAttendance() { + + let labels = [] + let presents = [] + let absents = [] + this.dailyLoading = true + this.dashboardService.getAttendance('daily').subscribe(res => { + this.dailyLoading = false + // todo: distribute per gender in next rollout + + if (res.results.length) { + this.daily_chart = true + } else { + this.daily_chart = false + } + + for (let i in res.results) { + labels.push(moment(res.results[i].value).format('DD-MM-YY')) + presents.push(res.results[i].present_males + res.results[i].present_females) + absents.push(res.results[i].absent_males + res.results[i].absent_females) + } + + this.att_d_distribution = { + series: { + series_a: presents, + series_b: absents, + labels: { + label_a: 'Present', + label_b: 'Absent' + } + }, + labels: labels + } + + this.att_d_resolver = true + }, error => { + this.dailyLoading = false + console.log(error) + }) + + } + + bar_configs = { + legend: true, + labelString: 'Days', + colors: { + colors: [ + { + backgroundColor: 'rgb(32,150,243,0.7)', + borderColor: 'rgb(32,150,243, 0.7)', + pointBackgroundColor: 'rgb(32,150,243, 0.7)', + pointBorderColor: '#fff', + pointHoverBackgroundColor: '#fff', + pointHoverBorderColor: 'rgb(32,150,243, 0.7)' + }, + { + + backgroundColor: 'rgb(216,3,81,0.9)', + borderColor: 'rgb(146,146,146,0)', + pointBackgroundColor: 'rgba(225,10,24,0.2)', + pointBorderColor: '#fff', + pointHoverBackgroundColor: '#fff', + pointHoverBorderColor: 'rgba(225,10,24,0.2)' + } + ], + xColor: 'rgba(0,0,0,0.02)', + xZeroLineColor: 'rgba(0,0,0,0.02)', + yColor: 'rgba(0,0,0,0.02)', + yZeroLineColor: 'rgba(0,0,0,0.02)', + } + } + + monthly_attendance_configs = { + ...this.bar_configs, + labelString: 'Months', + yLabelString: 'Attendance %' + } + + learner_configs = { + legend: false, + labelString: 'Grade / Class', + colors: { + colors: [ + { + backgroundColor: 'transparent', + borderColor: 'transparent' + }, + { + backgroundColor: 'rgb(32,150,243,0.7)', + } + ], + xColor: 'rgba(0,0,0,0.02)', + xZeroLineColor: 'rgba(0,0,0,0.02)', + yColor: 'rgba(0,0,0,0.02)', + yZeroLineColor: 'rgba(0,0,0,0.02)', + } + } + + // learner_configs = { + // legend: false, + // labelString: 'Grade / Class', + // colors: { + // colors: [ + // { + // backgroundColor: 'transparent', + // }, + // { + // backgroundColor: 'rgb(32,150,243,0.7)', + // } + // ], + // xColor: 'rgba(0,0,0,0.02)', + // xZeroLineColor: 'rgba(0,0,0,0.02)', + // yColor: 'rgba(0,0,0,0.02)', + // yZeroLineColor: 'rgba(0,0,0,0.02)', + // } + // } + + doughnut_configs = { + colors: ['#2096f3', '#F5D908'] + } + + attendance_doughnut_configs = { + colors: ['#2096f3', '#ff0059e8', '#F5D908', '#e91d63'], + + } + +} \ No newline at end of file diff --git a/src/app/dashboard/dashboard.module.ts b/src/app/dashboard/dashboard.module.ts new file mode 100755 index 0000000..758391e --- /dev/null +++ b/src/app/dashboard/dashboard.module.ts @@ -0,0 +1,18 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; + +import { DashboardComponent } from './dashboard.component'; +import { DashboardRoutes } from './dashboard.routing'; +import { SharedModule } from '../shared/shared.module'; + +@NgModule({ + imports: [ + CommonModule, + SharedModule, + // TablesModule, + RouterModule.forChild(DashboardRoutes) + ], + declarations: [DashboardComponent] +}) +export class DashboardModule { } diff --git a/src/app/dashboard/dashboard.routing.ts b/src/app/dashboard/dashboard.routing.ts new file mode 100755 index 0000000..4d96233 --- /dev/null +++ b/src/app/dashboard/dashboard.routing.ts @@ -0,0 +1,48 @@ +import { Routes } from '@angular/router'; + +import { DashboardComponent } from './dashboard.component'; +import { NotAdminGuard, AdminGuard, AuthGuard } from '../core/guards/auth.guard'; + +export const DashboardRoutes: Routes = [ + { + path: '', + loadChildren: () => import('../dashboard-v2/dashboard-v2.module').then(m => m.DashboardV2Module), + canActivate: [AuthGuard] + }, + { + path: '', + children: [ + { + path: 'schools', + loadChildren: () => import('../school/school.module').then(m => m.SchoolModule), + // canActivate: [AdminGuard] + }, + { + path: 'students', + loadChildren: () => import('../school/learners/learners.module').then(m => m.LearnersModule) + }, + { + path: 'teachers', + loadChildren: () => import('../school/teachers/teachers.module').then(m => m.TeachersModule) + }, + { + path: 'settings', + loadChildren: () => import('../settings/settings.module').then(m => m.SettingsModule) + }, + { + path: 'classes', + loadChildren: () => import('../school/classes/classes.module').then(m => m.ClassesModule), + // canActivate: [NotAdminGuard] + }, + { + path: 'reports', + loadChildren: () => import('../reports/reports.module').then(m => m.ReportsModule) + }, + { + path: 'imports', + loadChildren: () => import('../imports/imports.module').then(m => m.ImportsModule) + }, + ] + } +]; + diff --git a/src/app/dashboard/dashboard.service.ts b/src/app/dashboard/dashboard.service.ts new file mode 100755 index 0000000..be67309 --- /dev/null +++ b/src/app/dashboard/dashboard.service.ts @@ -0,0 +1,48 @@ +import { environment } from 'src/environments/environment' +import { HttpClient } from '@angular/common/http' +import { Injectable } from '@angular/core' +import { Observable } from 'rxjs' +import * as moment from 'moment' + +const endpoint = environment.APIv1Endpoint + +@Injectable({ + providedIn: 'root' +}) +export class DashboardService { + + constructor(private http: HttpClient) { } + + user_profile = this.getUser() + + getStatistics(query: string = ''): Observable { + return this.http.get(endpoint + 'statistics/' + query) + } + + getEnrolments(query: string = ''): Observable { + return this.http.get(endpoint + 'students/enrolls/' + query + '?paginator=cursor') + } + + getAttendance(query: string = ''): Observable { + if (query == 'daily') { + const startdate = moment().subtract(5, "days") + query = 'day?start_date=' + moment(startdate).format('YYYY-MM-DD') + '&order_by=value&paginator=cursor' + return this.http.get(endpoint + 'attendances/stats/' + query) + } else if (query == 'monthly') { + const startdate = moment().subtract(3, "months").format('YYYY-MM-DD') + + query = 'month' + '?order_by=value&paginator=cursor&start_date=' + startdate + return this.http.get(endpoint + 'attendances/stats/' + query) + + } else { + const startdate = moment().subtract(12, "months").format('YYYY-MM-DD') + query = query + `?order_by=value&paginator=cursor&start_date=${startdate}` + return this.http.get(endpoint + 'attendances/stats/' + query) + } + } + + getUser() { + return JSON.parse(localStorage.getItem('user_profile')) + } + +} diff --git a/src/app/imports/add-import/add-import.component.html b/src/app/imports/add-import/add-import.component.html new file mode 100644 index 0000000..ab921f2 --- /dev/null +++ b/src/app/imports/add-import/add-import.component.html @@ -0,0 +1,32 @@ +icon_close + + +

NOTE! This does not import any + learners + + +

+ +

Upload your Excel + sheet to + start cleaning and verifying the quality of your + data.

+
+ + +

NOTE! Data uploaded will be + imported +

+ +

Upload + your Excel + sheet to + start the data importation process.

+
+ + + + + \ No newline at end of file diff --git a/src/app/imports/add-import/add-import.component.scss b/src/app/imports/add-import/add-import.component.scss new file mode 100644 index 0000000..cc175bf --- /dev/null +++ b/src/app/imports/add-import/add-import.component.scss @@ -0,0 +1,38 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.page-subtitle { + font-family: "Prompt-Regular"; + font-size: 14px; + text-align: center; + color: #fff; + margin-top: 7%; + margin-bottom: 7%; + background-color: $primarypink; + padding: 10px; + border-radius: 8px; +} + +.page-subtitle-black { + @extend .page-subtitle; + color: #000; + background-color: transparent; +} + +.title-success { + background-color: $primarygreen; + color: #fff; +} + + +:host ::ng-deep .page-form { + filter: none !important; +} + +.close-icon { + display: flex; + justify-content: right; + min-width: 100%; + cursor: pointer; +} \ No newline at end of file diff --git a/src/app/imports/add-import/add-import.component.spec.ts b/src/app/imports/add-import/add-import.component.spec.ts new file mode 100644 index 0000000..584be7d --- /dev/null +++ b/src/app/imports/add-import/add-import.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddImportComponent } from './add-import.component'; + +describe('AddImportComponent', () => { + let component: AddImportComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddImportComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddImportComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/imports/add-import/add-import.component.ts b/src/app/imports/add-import/add-import.component.ts new file mode 100644 index 0000000..120e462 --- /dev/null +++ b/src/app/imports/add-import/add-import.component.ts @@ -0,0 +1,59 @@ +import { Component, Inject, OnInit } from '@angular/core'; +import { MatDialog, MatDialogRef, MAT_DIALOG_DATA, } from '@angular/material/dialog'; +import { Router } from '@angular/router'; +import { options } from './options'; + +@Component({ + selector: 'app-add-import', + templateUrl: './add-import.component.html', + styleUrls: ['./add-import.component.scss'] +}) +export class AddImportComponent implements OnInit { + + // My Form + formItems: any = options; + url: string = "api/v1/schools-imports/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ['name'], + ['import_file'], + ['update_learner'] + + ] + instance: any + dialogTitle: any + + constructor(private router: Router, private dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) data) { + console.log(data) + this.extra_fields = data + } + + onNoClick(): void { + this.dialogRef.close(); + } + + ngOnInit() { + } + + onValidatedData(data: any) { + console.log(data) + } + onPostedData(data) { + this.dialogRef.close(); + } + + closeDialog() { + this.dialogRef.close(); + } + + get isCleaning() { + return this.router.url == "/imports/clean" + } + + get isImport() { + return this.router.url == "/imports/import" + } + + +} diff --git a/src/app/imports/add-import/options.ts b/src/app/imports/add-import/options.ts new file mode 100644 index 0000000..3b73e94 --- /dev/null +++ b/src/app/imports/add-import/options.ts @@ -0,0 +1,323 @@ +const options = { + "name": "List Create Schools Students Imports Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "step_display": { + "type": "field", + "required": false, + "read_only": true, + "label": "Step display" + }, + "user_details": { + "type": "nested object", + "required": false, + "read_only": true, + "label": "User details", + "children": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "First name", + "max_length": 150 + }, + "dummy": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Dummy" + }, + + "is_school_admin": { + "type": "boolean", + "required": false, + "read_only": true, + "label": "Is school admin" + }, + "teacher": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Teacher" + }, + "school": { + "type": "integer", + "required": false, + "read_only": true, + "label": "School" + }, + "school_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "School name" + }, + "emis_code": { + "type": "string", + "required": false, + "read_only": true, + "label": "Emis code" + }, + "role_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "Role name" + }, + "last_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Last name", + "max_length": 150 + }, + "username": { + "type": "string", + "required": true, + "read_only": false, + "label": "Username", + "help_text": "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.", + "max_length": 150 + }, + "dob": { + "type": "date", + "required": false, + "read_only": false, + "label": "Dob" + }, + "changed_password": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Changed password" + }, + "role": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Role", + "choices": [ + { + "value": "A", + "display_name": "Admin" + }, + { + "value": "SCHA", + "display_name": "School Admin" + }, + { + "value": "SCHT", + "display_name": "School Teacher" + }, + { + "value": "CO", + "display_name": "County Officer" + }, + { + "value": "SCO", + "display_name": "Sub County Officer" + }, + { + "value": "RO", + "display_name": "Read Only" + } + ] + }, + "image": { + "type": "image upload", + "required": false, + "read_only": false, + "label": "Image" + }, + "email": { + "type": "email", + "required": false, + "read_only": false, + "label": "Email address", + "max_length": 254 + }, + "phone": { + "type": "string", + "required": false, + "read_only": false, + "label": "Phone", + "max_length": 50 + }, + "gender": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Gender", + "choices": [ + { + "value": "M", + "display_name": "Male" + }, + { + "value": "F", + "display_name": "Female" + }, + { + "value": "NS", + "display_name": "Not Set" + } + ] + }, + "password": { + "type": "string", + "required": true, + "read_only": false, + "label": "Password", + "max_length": 128 + }, + "profile_image": { + "type": "field", + "required": false, + "read_only": true, + "label": "Profile image" + }, + "gender_display": { + "type": "string", + "required": false, + "read_only": true, + "label": "Gender display" + } + } + }, + "update_learner": { + "type": "boolean", + "required": false, + "read_only": false, + "default": false, + "label": "Update Learner Status (If duplicate found)", + "placeholder": "Check only when updating the status" + }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Sheet Name", + "max_length": 45 + }, + "import_file": { + "type": "file", + "required": true, + "read_only": false, + "label": "Import Sheet (.xls)", + "max_length": 100 + }, + "step": { + "type": "string", + "required": false, + "read_only": true, + "label": "Step" + }, + "errors_file": { + "type": "file upload", + "required": false, + "read_only": false, + "label": "Errors file", + "max_length": 100 + }, + "start_time": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Start time" + }, + "end_time": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "End time" + }, + "args": { + "type": "string", + "required": false, + "read_only": true, + "label": "Args" + }, + "rows_count": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Rows count" + }, + "imported_rows_count": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Imported rows count" + }, + "duplicates_count": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Duplicates count" + }, + "error_rows_count": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Error rows count" + }, + "new_students_created": { + "type": "integer", + "required": false, + "read_only": true, + "label": "New students created" + }, + "errors": { + "type": "string", + "required": false, + "read_only": false, + "label": "Errors", + "max_length": 2000 + }, + "user": { + "type": "field", + "required": false, + "read_only": false, + "label": "User" + } + } + } +} + +export { + options +} \ No newline at end of file diff --git a/src/app/imports/cleaning/cleaning.component.html b/src/app/imports/cleaning/cleaning.component.html new file mode 100644 index 0000000..9b7c830 --- /dev/null +++ b/src/app/imports/cleaning/cleaning.component.html @@ -0,0 +1,29 @@ +
+
+
+

Data {{action}}

+
+ +
+ + help_outline +
Help
+
+ + + add_circle +
Import Data Sheet
+
+
+
+ + +
+ + +
+ +
+
\ No newline at end of file diff --git a/src/app/imports/cleaning/cleaning.component.scss b/src/app/imports/cleaning/cleaning.component.scss new file mode 100644 index 0000000..95b0c77 --- /dev/null +++ b/src/app/imports/cleaning/cleaning.component.scss @@ -0,0 +1,56 @@ +.page-title { + font-family: "Prompt-Medium"; + font-size: 19px; + padding-top: 5px; +} + +.header { + display: grid; + grid-template-columns: 1fr 1fr; + align-items: center; +} + +.btn-container { + display: grid; + grid-template-columns: 0px 75px; + justify-content: end; +} + +.icon-container { + display: grid; + grid-template-columns: 30px 130px; + justify-content: end; + align-items: center; + cursor: pointer; +} + +.import-btn-title { + padding-top: 2px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} + +/* Mobile View */ +@media screen and (min-width:250px) and (max-width:480px) { + .btn-container { + display: grid; + grid-template-columns: 1fr; + justify-content: end; + row-gap: .5em; + margin-top: 10px; + } + + .import-btn-title { + text-align: right; + } + + .icon-help { + margin-left: 100px; + } + + +} diff --git a/src/app/imports/cleaning/cleaning.component.spec.ts b/src/app/imports/cleaning/cleaning.component.spec.ts new file mode 100644 index 0000000..47bd8ff --- /dev/null +++ b/src/app/imports/cleaning/cleaning.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { CleaningComponent } from './cleaning.component'; + +describe('CleaningComponent', () => { + let component: CleaningComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [CleaningComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CleaningComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/imports/cleaning/cleaning.component.ts b/src/app/imports/cleaning/cleaning.component.ts new file mode 100644 index 0000000..1cc2c43 --- /dev/null +++ b/src/app/imports/cleaning/cleaning.component.ts @@ -0,0 +1,168 @@ +import { Component, OnInit } from '@angular/core'; +import { MatDialog, MatDialogConfig } from '@angular/material/dialog'; +import { Router } from '@angular/router'; +import { AddImportComponent } from '../add-import/add-import.component'; +import { ImportHelpComponent } from '../import-help/import-help.component'; + +@Component({ + selector: 'app-cleaning', + templateUrl: './cleaning.component.html', + styleUrls: ['./cleaning.component.scss'] +}) + +export class CleaningComponent implements OnInit { + + // importsUrl = "api/v1/schools-imports" + refreshDuration: number = 10000 + commonHeaders = [ + { + name: " Id", + source: "id" + }, + 'name', + 'created', + 'update_learner', + { + name: "Rows", + source: "rows_count" + }, + { + name: "Clean", + source: 'is_clean', + }, + { + name: "Processed", + source: 'imported_rows_count', + }, + { + name: "Duplicates", + source: 'duplicates_count', + }, + { + name: "Errors", + source: 'error_rows_count', + }, + ] + + + actionHeaders = [ + { + name: "Status", + source: 'step_display', + }, + { + name: 'Issues', + source: "errors", + }, + { + name: 'Original File', + type: "actions", + data: [ + { + name: "Click to Download", + type: "download", + downloadUrl: "import_file", + cssClass: { + source: "step", + classes: { + "default": "btn btn-outline-success" + } + } + } + ] + }, + { + name: 'Errors File', + type: "actions", + data: [ + { + name: "Click to Download", + type: "download", + downloadUrl: "errors_file", + // source: "step_display", + cssClass: { + source: "step", + classes: { + "default": "btn-outline-danger" + } + } + } + ] + } + ] + + importHeaders = [ + ...this.commonHeaders, + { + name: "Added Learners", + source: 'new_students_created', + }, + ...this.actionHeaders + ] + + cleaningHeaders = [ + ...this.commonHeaders, + ...this.actionHeaders + ] + + name: string; + importArgs: any = {} + constructor(public dialog: MatDialog, private router: Router) { } + + ngOnInit() { + this.importArgs = { should_import: this.isImporting } + } + + get importsUrl() { + return `api/v1/schools-imports` + } + + + get action() { + return this.isCleaning ? "Cleaning" : "Importing" + } + + get isCleaning() { + return this.router.url == "/imports/clean" + } + get isImporting() { + return this.router.url == "/imports/import" + } + + + + get headers() { + if (this.isCleaning) { + return this.cleaningHeaders + } + return this.importHeaders + } + + downloadsActions(event) { + } + + openDialog(): void { + let dialogRef = this.dialog.open(AddImportComponent, { + width: '500px' + , data: { should_import: this.isImporting } + } + ); + + dialogRef.afterClosed().subscribe(result => { + this.importArgs = { should_import: this.isImporting } + + }) + + } + + openHelpDialog(): void { + let dialogRef = this.dialog.open(ImportHelpComponent, { + width: '500px' + } + ); + + dialogRef.afterClosed().subscribe(result => { + }) + + } +} diff --git a/src/app/imports/import-help/import-help.component.html b/src/app/imports/import-help/import-help.component.html new file mode 100644 index 0000000..ca01842 --- /dev/null +++ b/src/app/imports/import-help/import-help.component.html @@ -0,0 +1,92 @@ +icon_close + +

Data Importation

+ +

Data Cleaning

+

Data cleaning is the first step in the data importation process. It + is + always advisable to start by cleaning your data. + + +

    +
  1. + Download a template data sheet. + + +
    + + This template will guide you with the + format that you should use to upload your data. +

    +
      Incase a data field is missing, the data will be uploaded provided the required fields are + present. +
    +
    +
      Otherwise, a downloadable errors spreadsheet report will be generated. Correct the errors + and reupload your data. +
    +
  2. + +
  3. + Click on the 'Import Data + Sheet' button to upload a learner's data sheet. +
  4. + + +
  5. + Your data will be queued and uploaded. Once done, the data cleaning table will display the total + number + of learner rows uploaded, processed rows, upload status, your original + downloadable excel + spreadsheet and a downloadable errors excel spreadsheet. +
  6. + +
  7. + Incase of errors, download the errors spreadsheet and use the row number and error + description to reformat and correct the errors. When ready, reupload your excel sheet. +
  8. +
+ +

+ +

Data Importation

+
    +
  1. + Once you get to this step, that means your data is clean and free of any errors captured in the data + cleaning + process. +
  2. + + + +
  3. + Upload/Reupload your excel spreadsheet. +
  4. + +
  5. + Once finished processing, the data importation table will display your rows, processed rows, + duplicate rows, number of rows with errors, new learners imported, status, + original + downloadable excel spreadsheet and downloaded erors spreadsheet (if any errors occur). +
  6. + + +
  7. + Incase of errors, repeat the cleaning process until you are satisfied with your uploaded data. +
  8. + +
  9. + Happy Importation :) +
  10. +
+ +
+ + + \ No newline at end of file diff --git a/src/app/imports/import-help/import-help.component.scss b/src/app/imports/import-help/import-help.component.scss new file mode 100644 index 0000000..01e8b70 --- /dev/null +++ b/src/app/imports/import-help/import-help.component.scss @@ -0,0 +1,20 @@ +h2, h3 { + font-family: "Prompt-Medium"; +} + +mat-dialog-content { +font-family: "Prompt-Regular"; +} + +.download-container { + display: grid; + grid-template-columns: 220px 30px; + padding-top: 8px; +} + +.close-icon { + display: flex; + justify-content: right; + min-width: 100%; + cursor: pointer; +} \ No newline at end of file diff --git a/src/app/imports/import-help/import-help.component.spec.ts b/src/app/imports/import-help/import-help.component.spec.ts new file mode 100644 index 0000000..82caaab --- /dev/null +++ b/src/app/imports/import-help/import-help.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ImportHelpComponent } from './import-help.component'; + +describe('ImportHelpComponent', () => { + let component: ImportHelpComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ImportHelpComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ImportHelpComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/imports/import-help/import-help.component.ts b/src/app/imports/import-help/import-help.component.ts new file mode 100644 index 0000000..c0d8da4 --- /dev/null +++ b/src/app/imports/import-help/import-help.component.ts @@ -0,0 +1,21 @@ +import { Component, OnInit } from '@angular/core'; +import { MatDialogRef } from '@angular/material/dialog'; +import { AddImportComponent } from '../add-import/add-import.component'; + +@Component({ + selector: 'app-import-help', + templateUrl: './import-help.component.html', + styleUrls: ['./import-help.component.scss'] +}) +export class ImportHelpComponent implements OnInit { + + constructor(private dialogRef: MatDialogRef) { } + + ngOnInit() { + } + + closeDialog() { + this.dialogRef.close(); + } + +} diff --git a/src/app/imports/imports.module.ts b/src/app/imports/imports.module.ts new file mode 100644 index 0000000..82c7616 --- /dev/null +++ b/src/app/imports/imports.module.ts @@ -0,0 +1,18 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; +import { ImportRoutes } from './imports.routing'; +import { CleaningComponent } from './cleaning/cleaning.component'; +import { SharedModule } from '../shared/shared.module'; +import { AddImportComponent } from './add-import/add-import.component'; +import { ImportHelpComponent } from './import-help/import-help.component'; +@NgModule({ + declarations: [CleaningComponent, AddImportComponent, ImportHelpComponent], + imports: [ + CommonModule, + RouterModule.forChild(ImportRoutes), + SharedModule, + // MatDialogModule + ] +}) +export class ImportsModule { } diff --git a/src/app/imports/imports.routing.ts b/src/app/imports/imports.routing.ts new file mode 100644 index 0000000..761b7b1 --- /dev/null +++ b/src/app/imports/imports.routing.ts @@ -0,0 +1,18 @@ +import { Routes } from '@angular/router'; +import { CleaningComponent } from './cleaning/cleaning.component'; + +export const ImportRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'clean', + component: CleaningComponent + }, + { + path: 'import', + component: CleaningComponent + }, + ] + } +]; \ No newline at end of file diff --git a/src/app/interceptors/auth.interceptor.ts b/src/app/interceptors/auth.interceptor.ts new file mode 100755 index 0000000..5df0cf6 --- /dev/null +++ b/src/app/interceptors/auth.interceptor.ts @@ -0,0 +1,70 @@ +import { Injectable } from '@angular/core' +import { + HttpRequest, + HttpHandler, + HttpEvent, + HttpInterceptor, + HttpErrorResponse +} from '@angular/common/http' +import { Observable, throwError } from 'rxjs' +import { ConstantsService } from '../common/services/constants.service' +import { catchError, map } from 'rxjs/operators' + +@Injectable() +export class AuthInterceptor implements HttpInterceptor { + constructor(public auth: ConstantsService) { } + + intercept(request: HttpRequest, next: HttpHandler): Observable> { + const token = this.auth.getToken() + + if (token) { + request = request.clone({ + setHeaders: ({ + 'Authorization': 'Bearer ' + token, + 'Accept': 'application/json' + }) + }) + } + + if (!token) { + request = request.clone({ + setHeaders: ({ + 'Content-Type': 'application/json', + 'Accept': 'application/json' + }) + }) + } + + return next.handle(request) + .pipe( + catchError((error: HttpErrorResponse) => { + // console.log(error.error) + + let errorMessage = '' + let errorGroup: any = [] + if (!error.url.includes("/auth/token")) { + return throwError(error) + } + if (error.error.detail) { + errorMessage = error.error.detail + + } else if (error.error.name) { + errorMessage = error.error.name[0] + + } else if (error.error.error_description) { + errorMessage = error.error.error_description + + } else { + console.log(error) + if (error.status == 0) { + errorMessage = "Failed, try again later. Make sure you have a working internet connection." + } else { + errorMessage = "Make sure you have a working internet connection." + } + } + + return throwError(errorMessage) + }) + ) + } +} diff --git a/src/app/reports/absence/absence.component.html b/src/app/reports/absence/absence.component.html new file mode 100644 index 0000000..02845b9 --- /dev/null +++ b/src/app/reports/absence/absence.component.html @@ -0,0 +1,17 @@ +
+
+
+

Absenteeism Report

+ + +
+
+ + +
+
\ No newline at end of file diff --git a/src/app/reports/absence/absence.component.scss b/src/app/reports/absence/absence.component.scss new file mode 100644 index 0000000..5fa84f6 --- /dev/null +++ b/src/app/reports/absence/absence.component.scss @@ -0,0 +1,60 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.filter-bar { + margin-top: 15px; + margin-bottom: 15px; + padding: 10px; + background-color: #fff; + border-radius: 6px; + filter: drop-shadow(0px 3px 6px #00000029); +} + +.filter-bar-item { + width: fit-content !important; + font-family: 13px; + font-family: "Prompt-Medium"; + border-right: 1px solid $primaryblue; + padding: 5px; +} + +.filter-bar-item span { + margin: 0px 10px; +} + +.filter-bar-item mat-icon { + width: 18px; + height: 18px; + color: #000; +} + +mat-icon { + width: 12px; + margin-left: 10px; +} + +.filter-type { + font-size: 14px; +} + +.filter-type-desc { + font-size: 13px; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + + +:host ::ng-deep .form-control { + font-size: 14px !important; +} \ No newline at end of file diff --git a/src/app/reports/absence/absence.component.spec.ts b/src/app/reports/absence/absence.component.spec.ts new file mode 100644 index 0000000..a970b0a --- /dev/null +++ b/src/app/reports/absence/absence.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AbsenceComponent } from './absence.component'; + +describe('AbsenceComponent', () => { + let component: AbsenceComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ AbsenceComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(AbsenceComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/absence/absence.component.ts b/src/app/reports/absence/absence.component.ts new file mode 100644 index 0000000..956f0b3 --- /dev/null +++ b/src/app/reports/absence/absence.component.ts @@ -0,0 +1,90 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from './options'; + +@Component({ + selector: 'app-absence', + templateUrl: './absence.component.html', + styleUrls: ['./absence.component.scss'] +}) +export class AbsenceComponent implements OnInit { + + /// MyTable + url = 'api/v1/students-absent-reasons/stats/id' + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + enableOrderBy = true + headersOrder = ["full_name", "school_name", "county_name", "sub_county_name", "class", "admission_number", "upi", "gender", "student_status", "date_of_birth"] + formGroupOrder = [ + ['grouping', 'paginator'], + ['county_id', 'sub_county_id'], + ['school_id', 'base_class', 'reason'], + ['start_attendance_date', 'end_attendance_date'], + ] + fetchingData = false + collapseFilters = false + + constructor(private route: Router) { } + + ngOnInit(): void { + } + + downloadsActions(event) { + } + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['/reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + isLoading(status) { + this.fetchingData = status + } + + handleActions(event) { + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["report_type", "grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/students-absent-reasons/stats/${data.grouping}` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } +} diff --git a/src/app/reports/absence/options.ts b/src/app/reports/absence/options.ts new file mode 100644 index 0000000..df96829 --- /dev/null +++ b/src/app/reports/absence/options.ts @@ -0,0 +1,284 @@ +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "Attendance List (No Grouping)" + }, + { + value: "reason", + display_name: "Reason For Absence" + }, + + { + value: "gender", + display_name: "Gender" + }, + { + value: "class", + display_name: "Class" + }, + { + value: "school", + display_name: "School" + } + + + // { + // value: "reason-description", + // display_name: "Reason Description" + // }, + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + "stream": { + "type": "multifield", + "required": false, + "multiple": false, + "read_only": false, + "label": "Filter by Stream", + "url": `api/v1/streams/`, + "value_field": "id", + "search_field": "school_name", + "placeholder": "Search School Name ..", + "display_name": "full_class_name" + }, + "start_attendance_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by Start Date", + "placeholder": "Search Start Date .." + }, + "end_attendance_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by End Date", + "placeholder": "Search End Date .." + }, + "gender": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Gender", + "choices": [ + { + value: "M", + display_name: "Male" + }, + { + value: "F", + display_name: "Female" + } + ] + }, + "leaner_status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Leaner Status", + "display_name": "name", + "value_field": "value", + "placeholder": "Search Learner Status ..", + "choices": [ + { + "value": "OOSC", + "display_name": "Over Age" + }, + { + "value": "NE", + "display_name": "Never Enrolled" + }, + { + "value": "PE", + "display_name": "Re Enrolled" + } + ] + }, + "status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter By Attendance ", + "choices": [ + { + value: "1", + display_name: "Present" + }, + { + value: "0", + display_name: "Absent" + } + ] + }, + "base_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Class", + "default": "", + "choices": [ + { + value: "1", + display_name: "1" + }, + { + value: "2", + display_name: "2" + }, + { + value: "3", + display_name: "3" + }, + { + value: "4", + display_name: "4" + }, + { + value: "5", + display_name: "5" + }, + { + value: "6", + display_name: "6" + }, + { + value: "7", + display_name: "7" + }, + { + value: "8", + display_name: "8" + }, + + ], + + }, + "county_id": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": false, + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "sub_county_id": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub County", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": false, + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "search": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Search ", + "display_name": "name", + "placeholder": "Search county name..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "paginator": { + "type": "field", + "required": false, + "read_only": false, + "label": "Mode", + "default": "pa", + "choices": [ + { "value": "cursor", display_name: "Preview" }, + { "value": "pa", display_name: "Detailed" }, + ] + }, + "school_id": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "reason": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Reason", + "display_name": "name", + "placeholder": "Search Reason Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/students-absent-reasons/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "special_needs": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Special Needs", + "display_name": "name", + "placeholder": "Search Special Need ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/special-needs/`, + "search_field": "name", + "edit_display_name": "item_name" + } + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/reports/attendance/attendance.component.html b/src/app/reports/attendance/attendance.component.html new file mode 100644 index 0000000..c10b252 --- /dev/null +++ b/src/app/reports/attendance/attendance.component.html @@ -0,0 +1,17 @@ +
+
+
+

Attendance Report

+ + +
+
+ + +
+
\ No newline at end of file diff --git a/src/app/reports/attendance/attendance.component.scss b/src/app/reports/attendance/attendance.component.scss new file mode 100644 index 0000000..e6c6cf0 --- /dev/null +++ b/src/app/reports/attendance/attendance.component.scss @@ -0,0 +1,61 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.filter-bar { + margin-top: 15px; + margin-bottom: 15px; + padding: 10px; + background-color: #fff; + border-radius: 6px; + filter: drop-shadow(0px 3px 6px #00000029); +} + +.filter-bar-item { + width: fit-content !important; + font-family: 13px; + font-family: "Prompt-Medium"; + border-right: 1px solid $primaryblue; + padding: 5px; +} + +.filter-bar-item span { + margin: 0px 10px; +} + +.filter-bar-item mat-icon { + width: 18px; + height: 18px; + color: #000; +} + +mat-icon { + width: 12px; + margin-left: 10px; +} + +.filter-type { + font-size: 14px; +} + +.filter-type-desc { + font-size: 13px; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } + } \ No newline at end of file diff --git a/src/app/reports/attendance/attendance.component.spec.ts b/src/app/reports/attendance/attendance.component.spec.ts new file mode 100644 index 0000000..0bd2b76 --- /dev/null +++ b/src/app/reports/attendance/attendance.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AttendanceComponent } from './attendance.component'; + +describe('AttendanceComponent', () => { + let component: AttendanceComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AttendanceComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AttendanceComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/attendance/attendance.component.ts b/src/app/reports/attendance/attendance.component.ts new file mode 100644 index 0000000..fd01854 --- /dev/null +++ b/src/app/reports/attendance/attendance.component.ts @@ -0,0 +1,124 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from './options'; + +@Component({ + selector: 'app-attendance', + templateUrl: './attendance.component.html', + styleUrls: ['./attendance.component.scss'] +}) +export class AttendanceComponent implements OnInit { + /// MyTable + url = 'api/v1/attendances/stats/id' + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + enableOrderBy = true + headersOrder = ["full_name", "school_name", "county_name", "sub_county_name", "class", "admission_number", "upi", "leaner_gender", "leaner_status", "date_of_birth"] + formGroupOrder = [ + ['grouping', 'paginator'], + ['school_county', 'school_sub_county', 'gender'], + ['school', 'base_class',], + ['learner_status', 'status'], + ['start_date', 'end_date', 'is_training_school'], + ['partner', 'special_needs'] + + ] + + headers = [ + { + "source": "full_name", + "name": "Name" + }, + { + "source": "county_name", + "name": "County" + }, + { + "source": "sub_county_name", + "name": "Sub County" + }, + { + "source": "school_name", + "name": "School" + }, + 'class', + 'admission_number', + 'attendance', + 'attendance_date', + { + "source": "gender", + "name": "Gender" + }, + { + "source": "student_status", + "name": "Status" + }, + 'leaner_in_school' + ] + + fetchingData = false + constructor(private route: Router) { } + + ngOnInit() { + } + + downloadsActions(event) { + } + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['/reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + isLoading(status) { + this.fetchingData = status + } + + handleActions(event) { + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["report_type", "grouping", "paginator", "start_date"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/attendances/stats/${data.grouping}` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + +} \ No newline at end of file diff --git a/src/app/reports/attendance/options.ts b/src/app/reports/attendance/options.ts new file mode 100644 index 0000000..1099052 --- /dev/null +++ b/src/app/reports/attendance/options.ts @@ -0,0 +1,424 @@ + +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "No Grouping" + }, + { + value: "class", + display_name: "Class" + }, + { + value: "student", + display_name: "Student" + }, + { + value: "county", + display_name: "County" + }, + { + value: "sub-county", + display_name: "Sub County" + }, + { + value: "partner", + display_name: "Partner" + }, + { + value: "school", + display_name: "School" + }, + { + value: "special-need", + display_name: "Special Needs" + }, + { + value: "student-status", + display_name: "Status" + }, + + { + value: "gender", + display_name: "Gender" + }, + { + value: "age", + display_name: "Age" + }, + { + value: "month", + display_name: "Month" + }, + { + value: "year", + display_name: "Year" + }, + { + value: "week", + display_name: "Week" + }, + { + value: "day", + display_name: "Day" + }, + { + value: "knows-dob", + display_name: "Knows Date of Birth" + } + ] + }, + "start_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by Start Date", + "placeholder": "Search Start Date .." + }, + "end_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by End Date", + "placeholder": "Search End Date .." + }, + "is_training_school": { + "type": "field", + "required": false, + "read_only": false, + "label": "Show Training School Data", + "default": "false", + "choices": [ + { "display_name": "Yes", "value": true }, + { "display_name": "No", "value": false }, + ] + }, + "status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Attendance Status", + "choices": [ + { + value: "1", + display_name: "Present" + }, + { + value: "0", + display_name: "Absent" + } + ] + }, + "learner_status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Status", + "display_name": "name", + "value_field": "value", + "placeholder": "Search Learner Status ..", + "choices": [ + { + "value": "OOSC", + "display_name": "Out Of School" + }, + { + "value": "NE", + "display_name": "Newly Enrolled" + }, + { + "value": "PE", + "display_name": "Previously Enrolled" + } + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + "gender": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Gender", + "choices": [ + { + value: "M", + display_name: "Male" + }, + { + value: "F", + display_name: "Female" + } + ] + }, + "base_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Class", + "default": "", + "choices": [ + { + value: "1", + display_name: "1" + }, + { + value: "2", + display_name: "2" + }, + { + value: "3", + display_name: "3" + }, + { + value: "4", + display_name: "4" + }, + { + value: "5", + display_name: "5" + }, + { + value: "6", + display_name: "6" + }, + { + value: "7", + display_name: "7" + }, + { + value: "8", + display_name: "8" + }, + + ], + + }, + "school_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "school_sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub County", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "search": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Search ", + "display_name": "name", + "placeholder": "Search county name..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "special_needs": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Special Need", + "display_name": "name", + "placeholder": "Search Special Need ..", + "value_field": "id", + "url": `api/v1/special-needs/`, + "default": null, + "search_field": "name", + }, + "no_special_needs": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Learners With / Without Special Needs", + "choices": [ + { + value: false, + display_name: "With Special Needs" + }, + { + value: true, + display_name: "Without Special Needs" + } + ] + }, + "paginator": { + "type": "field", + "required": false, + "read_only": false, + "label": "Mode", + "default": "pa", + "choices": [ + { "value": "cursor", display_name: "Preview" }, + { "value": "pa", display_name: "Detailed" }, + ] + }, + "school": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "partner": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter By Partner", + "placeholder": "Select Partner", + "choices": [ + + { + value: 10713, + display_name: "Werk" + }, + { + value: 10714, + display_name: "FCA" + }, + { + value: 10715, + display_name: "LISP" + }, + { + value: 10716, + display_name: "Special Olympics" + }, + { + value: 10717, + display_name: "Save The Children" + }, + { + value: 10718, + display_name: "IRCK" + }, + { + value: 10719, + display_name: "Qatar Charity" + }, + { + value: 12563, + display_name: "HIWYA" + }, + { + value: 8972, + display_name: "CDE BARINGO" + }, + { + value: 8973, + display_name: " CDE BUNGOMA" + }, + { + value: 8974, + display_name: "CDE GARISSA" + }, + { + value: 8975, + display_name: "CDE ISIOLO" + }, + { + value: 8976, + display_name: "CDE KAJIADO" + }, + { + value: 8977, + display_name: "CDE KILIFI" + }, + { + value: 8978, + display_name: "CDE KWALE" + }, + { + value: 8979, + display_name: "CDE MANDERA" + }, + { + value: 8980, + display_name: "CDE MARSABIT" + }, + { + value: 8981, + display_name: "CDE NAIROBI" + }, + { + value: 8982, + display_name: "CDE NAROK" + }, + { + value: 8983, + display_name: "CDE SAMBURU" + }, + { + value: 8984, + display_name: "CDE TANARIVER" + }, + { + value: 8985, + display_name: "CDE TURKANA" + }, + { + value: 8986, + display_name: "CDE WAJIR" + }, + { + value: 8987, + display_name: "CDE WESTPOKOT" + } + ] + } + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/reports/auto-reports/auto-reports.component.html b/src/app/reports/auto-reports/auto-reports.component.html new file mode 100644 index 0000000..46b6824 --- /dev/null +++ b/src/app/reports/auto-reports/auto-reports.component.html @@ -0,0 +1,10 @@ +
+ +

Create Auto Report

+ + + + +
\ No newline at end of file diff --git a/src/app/reports/auto-reports/auto-reports.component.scss b/src/app/reports/auto-reports/auto-reports.component.scss new file mode 100644 index 0000000..94ffc38 --- /dev/null +++ b/src/app/reports/auto-reports/auto-reports.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/reports/auto-reports/auto-reports.component.spec.ts b/src/app/reports/auto-reports/auto-reports.component.spec.ts new file mode 100644 index 0000000..7d8ca23 --- /dev/null +++ b/src/app/reports/auto-reports/auto-reports.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AutoReportsComponent } from './auto-reports.component'; + +describe('AutoReportsComponent', () => { + let component: AutoReportsComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ AutoReportsComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(AutoReportsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/auto-reports/auto-reports.component.ts b/src/app/reports/auto-reports/auto-reports.component.ts new file mode 100644 index 0000000..17a6639 --- /dev/null +++ b/src/app/reports/auto-reports/auto-reports.component.ts @@ -0,0 +1,50 @@ +import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute, Router } from '@angular/router'; +import { ConstantsService } from 'src/app/common/services/constants.service'; +import { autoReportFilter } from './options'; + +@Component({ + selector: 'app-auto-reports', + templateUrl: './auto-reports.component.html', + styleUrls: ['./auto-reports.component.scss'] +}) +export class AutoReportsComponent implements OnInit { + + formItems: any = autoReportFilter; + url: string = "api/v1/downloads/custom/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ['title', 'custom_report_name'], + ['description'], + ['start_date', 'end_date', 'list_size'], + ] + instance: any; + + constructor(private route: ActivatedRoute, private router: Router, public commonService: ConstantsService) { + this.route.queryParams.subscribe(params => { + if (this.router.getCurrentNavigation().extras.state) { + const instance = this.router.getCurrentNavigation().extras.state; + if (instance.hasOwnProperty("id")) { + this.instance = instance + } + } + }) + } + preSaveDataFunction(data) { + data.name = data.title + return data + } + + ngOnInit(): void { + } + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(data) { + return this.router.navigate(['/reports/downloads']); + } + +} diff --git a/src/app/reports/auto-reports/options.ts b/src/app/reports/auto-reports/options.ts new file mode 100644 index 0000000..472558c --- /dev/null +++ b/src/app/reports/auto-reports/options.ts @@ -0,0 +1,248 @@ +const autoReportFilter = { + "name": "List Create Custom Exports Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "status_display": { + "type": "string", + "required": false, + "read_only": true, + "label": "Status display" + }, + "completed_percentage": { + "type": "field", + "required": false, + "read_only": true, + "label": "Completed percentage" + }, + "duration": { + "type": "field", + "required": false, + "read_only": true, + "label": "Duration" + }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Name", + "placeholder": "Will not appear in the report.", + "max_length": 45 + }, + "custom_report_name": { + "type": "choice", + "required": false, + "read_only": false, + "default": "overall", + "label": "Custom report name", + "choices": [ + { + "value": "overall", + "display_name": "General Overall Report" + } + ] + }, + "title": { + "type": "string", + "required": true, + "read_only": false, + "label": "Report Title", + "placeholder": "Report Title / Heading. Eg, June Report", + "max_length": 45 + }, + "description": { + "type": "string", + "required": false, + "read_only": false, + "label": "Report Sub Title", + "max_length": 1000, + "placeholder": "Report Sub Title. Eg, Attendance, Enrolment Report", + }, + "status": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Status", + "choices": [ + { + "value": "Q", + "display_name": "Queued" + }, + { + "value": "E", + "display_name": "Exporting..." + }, + { + "value": "P", + "display_name": "Preparing Download..." + }, + { + "value": "F", + "display_name": "Failed" + }, + { + "value": "D", + "display_name": "Click To Download" + } + ] + }, + "rows_count": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Rows count" + }, + "exported_rows_count": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Exported rows count" + }, + "args": { + "type": "string", + "required": false, + "read_only": false, + "label": "Args", + "max_length": 1000 + }, + "type": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Type", + "choices": [ + { + "value": "C", + "display_name": "CSV" + }, + { + "value": "P", + "display_name": "PDF" + } + ] + }, + "file": { + "type": "file", + "required": false, + "read_only": false, + "label": "File", + "max_length": 100 + }, + "start_time": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Start time" + }, + "end_time": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "End time" + }, + "errors": { + "type": "string", + "required": false, + "read_only": false, + "label": "Errors", + "max_length": 2000 + }, + "is_custom": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Is custom" + }, + "start_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Start Date" + }, + "end_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "End Date" + }, + "list_size": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Table Size", + "default": "20", + "choices": [ + { + "value": 20, + "display_name": "20" + }, + { + "value": 50, + "display_name": "50" + }, + { + "value": 100, + "display_name": "100" + }, + { + "value": 300, + "display_name": "300" + }, + { + "value": 500, + "display_name": "500" + }, + { + "value": 800, + "display_name": "800" + }, + { + "value": 1000, + "display_name": "1000" + }, + { + "value": 10000, + "display_name": "10000" + } + ] + }, + "user": { + "type": "field", + "required": false, + "read_only": false, + "label": "User" + } + } + } +} + +export { + autoReportFilter +} \ No newline at end of file diff --git a/src/app/reports/delete/delete.component.html b/src/app/reports/delete/delete.component.html new file mode 100644 index 0000000..5c36b45 --- /dev/null +++ b/src/app/reports/delete/delete.component.html @@ -0,0 +1,17 @@ +
+
+
+

Deactivations Report

+ + +
+
+ + +
+
\ No newline at end of file diff --git a/src/app/reports/delete/delete.component.scss b/src/app/reports/delete/delete.component.scss new file mode 100644 index 0000000..5fa84f6 --- /dev/null +++ b/src/app/reports/delete/delete.component.scss @@ -0,0 +1,60 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.filter-bar { + margin-top: 15px; + margin-bottom: 15px; + padding: 10px; + background-color: #fff; + border-radius: 6px; + filter: drop-shadow(0px 3px 6px #00000029); +} + +.filter-bar-item { + width: fit-content !important; + font-family: 13px; + font-family: "Prompt-Medium"; + border-right: 1px solid $primaryblue; + padding: 5px; +} + +.filter-bar-item span { + margin: 0px 10px; +} + +.filter-bar-item mat-icon { + width: 18px; + height: 18px; + color: #000; +} + +mat-icon { + width: 12px; + margin-left: 10px; +} + +.filter-type { + font-size: 14px; +} + +.filter-type-desc { + font-size: 13px; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + + +:host ::ng-deep .form-control { + font-size: 14px !important; +} \ No newline at end of file diff --git a/src/app/reports/delete/delete.component.spec.ts b/src/app/reports/delete/delete.component.spec.ts new file mode 100644 index 0000000..5116533 --- /dev/null +++ b/src/app/reports/delete/delete.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { DeleteComponent } from './delete.component'; + +describe('DeleteComponent', () => { + let component: DeleteComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ DeleteComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(DeleteComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/delete/delete.component.ts b/src/app/reports/delete/delete.component.ts new file mode 100644 index 0000000..a85157a --- /dev/null +++ b/src/app/reports/delete/delete.component.ts @@ -0,0 +1,90 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from './options'; + +@Component({ + selector: 'app-delete', + templateUrl: './delete.component.html', + styleUrls: ['./delete.component.scss'] +}) +export class DeleteComponent implements OnInit { + + /// MyTable + url = 'api/v1/students-delete-reasons/stats/id' + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + enableOrderBy = true + headersOrder = ["full_name", "school_name", "county_name", "sub_county_name", "class", "admission_number", "upi", "gender", "student_status", "date_of_birth"] + formGroupOrder = [ + ['grouping', 'paginator'], + ['county_id', 'sub_county_id'], + ['school_id', 'base_class', 'reason'], + ['start_recorded_date', 'end_recorded_date'], + ] + fetchingData = false + collapseFilters = false + constructor(private route: Router) { } + + ngOnInit(): void { + } + + downloadsActions(event) { + } + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['/reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + isLoading(status) { + this.fetchingData = status + } + + handleActions(event) { + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["report_type", "grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/students-delete-reasons/stats/${data.grouping}` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + +} diff --git a/src/app/reports/delete/options.ts b/src/app/reports/delete/options.ts new file mode 100644 index 0000000..a049654 --- /dev/null +++ b/src/app/reports/delete/options.ts @@ -0,0 +1,282 @@ +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "Attendance List (No Grouping)" + }, + + { + value: "reason", + display_name: "Reason For Deactivation" + }, + { + value: "gender", + display_name: "Gender" + }, + { + value: "class", + display_name: "Class" + }, + { + value: "school", + display_name: "School" + } + // { + // value: "reason-description", + // display_name: "Reason Description" + // }, + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + "stream": { + "type": "multifield", + "required": false, + "multiple": false, + "read_only": false, + "label": "Filter by Stream", + "url": `api/v1/streams/`, + "value_field": "id", + "search_field": "school_name", + "placeholder": "Search School Name ..", + "display_name": "full_class_name" + }, + "start_recorded_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by Start Date", + "placeholder": "Search Start Date .." + }, + "end_recorded_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by End Date", + "placeholder": "Search End Date .." + }, + "gender": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Gender", + "choices": [ + { + value: "M", + display_name: "Male" + }, + { + value: "F", + display_name: "Female" + } + ] + }, + "leaner_status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Leaner Status", + "display_name": "name", + "value_field": "value", + "placeholder": "Search Learner Status ..", + "choices": [ + { + "value": "OOSC", + "display_name": "Over Age" + }, + { + "value": "NE", + "display_name": "Never Enrolled" + }, + { + "value": "PE", + "display_name": "Re Enrolled" + } + ] + }, + "status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter By Attendance ", + "choices": [ + { + value: "1", + display_name: "Present" + }, + { + value: "0", + display_name: "Absent" + } + ] + }, + "base_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Class", + "default": "", + "choices": [ + { + value: "1", + display_name: "1" + }, + { + value: "2", + display_name: "2" + }, + { + value: "3", + display_name: "3" + }, + { + value: "4", + display_name: "4" + }, + { + value: "5", + display_name: "5" + }, + { + value: "6", + display_name: "6" + }, + { + value: "7", + display_name: "7" + }, + { + value: "8", + display_name: "8" + }, + + ], + + }, + "county_id": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": false, + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "sub_county_id": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub County", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": false, + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "search": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Search ", + "display_name": "name", + "placeholder": "Search county name..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "paginator": { + "type": "field", + "required": false, + "read_only": false, + "label": "Mode", + "default": "pa", + "choices": [ + { "value": "cursor", display_name: "Preview" }, + { "value": "pa", display_name: "Detailed" }, + ] + }, + "school_id": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "reason": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Reason", + "display_name": "name", + "placeholder": "Search Reason Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/students-delete-reasons/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "special_needs": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Special Needs", + "display_name": "name", + "placeholder": "Search Special Need ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/special-needs/`, + "search_field": "name", + "edit_display_name": "item_name" + } + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/reports/downloads/downloads.component.html b/src/app/reports/downloads/downloads.component.html new file mode 100644 index 0000000..4354282 --- /dev/null +++ b/src/app/reports/downloads/downloads.component.html @@ -0,0 +1,12 @@ +
+ +

Exports Downloads

+ + +
+ + +
+
\ No newline at end of file diff --git a/src/app/reports/downloads/downloads.component.scss b/src/app/reports/downloads/downloads.component.scss new file mode 100644 index 0000000..fbfecdd --- /dev/null +++ b/src/app/reports/downloads/downloads.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 15px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/reports/downloads/downloads.component.spec.ts b/src/app/reports/downloads/downloads.component.spec.ts new file mode 100644 index 0000000..dbcaa60 --- /dev/null +++ b/src/app/reports/downloads/downloads.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { DownloadsComponent } from './downloads.component'; + +describe('DownloadsComponent', () => { + let component: DownloadsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [DownloadsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(DownloadsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/downloads/downloads.component.ts b/src/app/reports/downloads/downloads.component.ts new file mode 100644 index 0000000..17b96b6 --- /dev/null +++ b/src/app/reports/downloads/downloads.component.ts @@ -0,0 +1,97 @@ +import { Component, OnInit } from '@angular/core'; +import { + trigger, + state, + style, + animate, + transition, + // ... +} from '@angular/animations'; + +@Component({ + selector: 'app-downloads', + templateUrl: './downloads.component.html', + styleUrls: ['./downloads.component.scss'], + animations: [ + trigger('openClose', [ + // ... + state('open', style({ + height: '200px', + opacity: 1, + backgroundColor: 'yellow' + })), + state('closed', style({ + height: '100px', + opacity: 0.8, + backgroundColor: 'blue' + })), + transition('open => closed', [ + animate('1s') + ]), + transition('closed => open', [ + animate('0.5s') + ]), + ]), + ] +}) +export class DownloadsComponent implements OnInit { + + isOpen = true; + + toggle() { + this.isOpen = !this.isOpen; + } + + constructor() { } + downloadsUrl = "api/v1/downloads" + downloadArgs: any = {} + refreshDuration: number = 10000 + downloadsHeaders = [ + 'name', + { + name: "Active Filters", + source: "args" + }, + { + name: "Rows", + source: "rows_count" + }, + { + name: "Exported", + source: 'exported_rows_count', + }, + { + name: "Completed %", + source: 'completed_percentage', + }, + { + name: 'Download Link', + type: "actions", + data: [ + { + name: "Click to Downloadda", + type: "download", + downloadUrl: "file", + source: "status_display", + cssClass: { + source: "status", + classes: { + "D": "btn-outline-success", + "F": "btn disabled btn-outline-danger", + "Q": "btn disabled btn-outline-secondary", + "P": "btn disabled btn-outline-info", + "E": "btn disabled btn-outline-info", + "default": "btn disabled btn-outline-secondary" + } + } + } + ] + }, + ] + ngOnInit() { + } + + downloadsActions(event) { + } + +} diff --git a/src/app/reports/downloads/downloads.module.spec.ts b/src/app/reports/downloads/downloads.module.spec.ts new file mode 100644 index 0000000..70f510b --- /dev/null +++ b/src/app/reports/downloads/downloads.module.spec.ts @@ -0,0 +1,13 @@ +import { DownloadsModule } from './downloads.module'; + +describe('DownloadsModule', () => { + let downloadsModule: DownloadsModule; + + beforeEach(() => { + downloadsModule = new DownloadsModule(); + }); + + it('should create an instance', () => { + expect(downloadsModule).toBeTruthy(); + }); +}); diff --git a/src/app/reports/enrolment/enrolment.component.html b/src/app/reports/enrolment/enrolment.component.html new file mode 100644 index 0000000..4732fd3 --- /dev/null +++ b/src/app/reports/enrolment/enrolment.component.html @@ -0,0 +1,18 @@ +
+
+
+

Enrolment Report

+ + +
+
+ + +
+
+ \ No newline at end of file diff --git a/src/app/reports/enrolment/enrolment.component.scss b/src/app/reports/enrolment/enrolment.component.scss new file mode 100644 index 0000000..e6c6cf0 --- /dev/null +++ b/src/app/reports/enrolment/enrolment.component.scss @@ -0,0 +1,61 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.filter-bar { + margin-top: 15px; + margin-bottom: 15px; + padding: 10px; + background-color: #fff; + border-radius: 6px; + filter: drop-shadow(0px 3px 6px #00000029); +} + +.filter-bar-item { + width: fit-content !important; + font-family: 13px; + font-family: "Prompt-Medium"; + border-right: 1px solid $primaryblue; + padding: 5px; +} + +.filter-bar-item span { + margin: 0px 10px; +} + +.filter-bar-item mat-icon { + width: 18px; + height: 18px; + color: #000; +} + +mat-icon { + width: 12px; + margin-left: 10px; +} + +.filter-type { + font-size: 14px; +} + +.filter-type-desc { + font-size: 13px; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } + } \ No newline at end of file diff --git a/src/app/reports/enrolment/enrolment.component.spec.ts b/src/app/reports/enrolment/enrolment.component.spec.ts new file mode 100644 index 0000000..3b3bdf0 --- /dev/null +++ b/src/app/reports/enrolment/enrolment.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { EnrolmentComponent } from './enrolment.component'; + +describe('EnrolmentComponent', () => { + let component: EnrolmentComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [EnrolmentComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(EnrolmentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/enrolment/enrolment.component.ts b/src/app/reports/enrolment/enrolment.component.ts new file mode 100644 index 0000000..ccf67b6 --- /dev/null +++ b/src/app/reports/enrolment/enrolment.component.ts @@ -0,0 +1,92 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from '../stats/options'; + +@Component({ + selector: 'app-enrolment', + templateUrl: './enrolment.component.html', + styleUrls: ['./enrolment.component.scss'] +}) +export class EnrolmentComponent implements OnInit { + /// MyTable + url = 'api/v1/students/stats/id' + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + enableOrderBy = true + // headers = ["sub_county_name", "county_name", "males", "females"] + + headersOrder = ["full_name", "school_name", "county_name", "sub_county_name", "class", "admission_number", "upi", "leaner_gender", "leaner_status", "date_of_birth"] + formGroupOrder = [ + ['grouping', 'active', 'paginator'], + ['school_county', 'school_sub_county', 'gender'], + ['school', 'base_class', 'status'], + ['start_date', 'end_date', 'is_training_school'], + ['partner', 'no_special_needs', 'special_needs'] + ] + + fetchingData = false + constructor(private route: Router) { } + + ngOnInit() { + } + + downloadsActions(event) { + } + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['/reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + isLoading(status) { + this.fetchingData = status + } + + handleActions(event) { + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["report_type", "grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/students/stats/${data.grouping}` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + +} \ No newline at end of file diff --git a/src/app/reports/enrolment/options.ts b/src/app/reports/enrolment/options.ts new file mode 100644 index 0000000..e738e70 --- /dev/null +++ b/src/app/reports/enrolment/options.ts @@ -0,0 +1,326 @@ + +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "No Groupingaasas" + }, + { + value: "class", + display_name: "Class" + }, + { + value: "county", + display_name: "County" + }, + { + value: "sub-county", + display_name: "Sub County" + }, + { + value: "school", + display_name: "School" + }, + { + value: "special-need", + display_name: "Special Needs" + }, + { + value: "student-status", + display_name: "Status" + }, + { + value: "gender", + display_name: "Gender" + }, + { + value: "age", + display_name: "Age" + }, + { + value: "month", + display_name: "Month" + }, + { + value: "year", + display_name: "Year" + }, + { + value: "week", + display_name: "Week" + }, + { + value: "day", + display_name: "Day" + }, + { + value: "knows-dob", + display_name: "Knows Date of Birth" + } + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + "gender": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Gender", + "choices": [ + { + value: "M", + display_name: "Male" + }, + { + value: "F", + display_name: "Female" + } + ] + }, + + "base_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Class", + "default": "", + "choices": [ + { + value: "1", + display_name: "1" + }, + { + value: "2", + display_name: "2" + }, + { + value: "3", + display_name: "3" + }, + { + value: "4", + display_name: "4" + }, + { + value: "5", + display_name: "5" + }, + { + value: "6", + display_name: "6" + }, + { + value: "7", + display_name: "7" + }, + { + value: "8", + display_name: "8" + }, + + ], + + }, + "school_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "school_sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub County", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "search": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Search ", + "display_name": "name", + "placeholder": "Search county name..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "paginator": { + "type": "field", + "required": false, + "read_only": false, + "label": "Mode", + "default": "cursor", + "choices": [ + { "value": "cursor", display_name: "Preview" }, + { "value": "pa", display_name: "Detailed" }, + ] + }, + "school": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "partner": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter By Partner", + "placeholder": "Select Partner", + "choices": [ + + { + value: 10713, + display_name: "Werk" + }, + { + value: 10714, + display_name: "FCA" + }, + { + value: 10715, + display_name: "LISP" + }, + { + value: 10716, + display_name: "Special Olympics" + }, + { + value: 10717, + display_name: "Save The Children" + }, + { + value: 10718, + display_name: "IRCK" + }, + { + value: 10719, + display_name: "Qatar Charity" + }, + { + value: 12563, + display_name: "HIWYA" + }, + { + value: 8972, + display_name: "CDE BARINGO" + }, + { + value: 8973, + display_name: " CDE BUNGOMA" + }, + { + value: 8974, + display_name: "CDE GARISSA" + }, + { + value: 8975, + display_name: "CDE ISIOLO" + }, + { + value: 8976, + display_name: "CDE KAJIADO" + }, + { + value: 8977, + display_name: "CDE KILIFI" + }, + { + value: 8978, + display_name: "CDE KWALE" + }, + { + value: 8979, + display_name: "CDE MANDERA" + }, + { + value: 8980, + display_name: "CDE MARSABIT" + }, + { + value: 8981, + display_name: "CDE NAIROBI" + }, + { + value: 8982, + display_name: "CDE NAROK" + }, + { + value: 8983, + display_name: "CDE SAMBURU" + }, + { + value: 8984, + display_name: "CDE TANARIVER" + }, + { + value: 8985, + display_name: "CDE TURKANA" + }, + { + value: 8986, + display_name: "CDE WAJIR" + }, + { + value: 8987, + display_name: "CDE WESTPOKOT" + } + ] + } + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/reports/maps/maps.component.html b/src/app/reports/maps/maps.component.html new file mode 100755 index 0000000..eec5166 --- /dev/null +++ b/src/app/reports/maps/maps.component.html @@ -0,0 +1,52 @@ + + +
+
+ + + + + + + +
+

{{vil.name}}

+
+

{{ 'MAP.ATTENDANCE_DATA' | translate }}

+

{{ 'MAP.PRESENT' | translate }} {{vil.present}} %

+

{{ 'MAP.BOYS' | translate }} {{vil.present_males}} %

+

{{ 'MAP.GIRLS' | translate }} {{vil.present_females}} %

+

+

{{ 'MAP.ABSENT' | translate }} {{vil.absent}} %

+

{{ 'MAP.BOYS' | translate }} {{vil.absent_males}} %

+

{{ 'MAP.GIRLS' | translate }} {{vil.absent_females }} %

+ +

+

{{ 'MAP.ENROLLMENT_DATA' | translate }}

+

{{ 'MAP.TOTAL_ENROLLMENT' | translate }} {{vil.enrol_total}}

+

{{ 'MAP.BOYS' | translate }} {{vil.enrol_total_males}}

+

{{ 'MAP.GIRLS' | translate }} {{vil.enrol_total_females}}

+ +

+

{{ 'MAP.DROPOUT_DATA' | translate }}

+

{{ 'MAP.TOTAL_DROPOUTS' | translate }} {{vil.dropout_total}}

+

{{ 'MAP.BOYS' | translate }} {{vil.dropout_males}}

+

{{ 'MAP.GIRLS' | translate }} {{vil.dropout_females}}

+
+
+
+
+
+ + +
+
\ No newline at end of file diff --git a/src/app/reports/maps/maps.component.scss b/src/app/reports/maps/maps.component.scss new file mode 100755 index 0000000..1fb1750 --- /dev/null +++ b/src/app/reports/maps/maps.component.scss @@ -0,0 +1,49 @@ +@import "../../../assets/styles/scss/material.variables"; + +$info_data_color: #2096f3; +$info_data_warn_color: #d32f2f; +$info-data-title: #43a047; + +:host { + margin-left: -5px; + margin-right: -5px; + margin-top: -5px; + display: block; + height: 100%; +} + +.sebm-google-map-container { + width: 100%; + height: 500px; + display: flex; +} + +$mat-toolbar-height-desktop: 64px !default; +$mat-toolbar-height-mobile-portrait: 56px !default; +$mat-toolbar-height-mobile-landscape: 48px !default; + +.mat-card-top { + margin-top: -($mat-toolbar-height-desktop); +} + +.info-window-data-color { + color: $info_data_color; +} +.info-window-data-warn-color { + color: $info_data_warn_color; +} +.info-data-title { + color: $info_data_title; +} + +@media ($mat-xsmall) and (orientation: portrait) { + .mat-card-top { + margin-top: -($mat-toolbar-height-mobile-portrait); + } +} + +@media ($mat-small) and (orientation: landscape) { + .mat-card-top { + margin-top: -($mat-toolbar-height-mobile-landscape); + } +} diff --git a/src/app/reports/maps/maps.component.spec.ts b/src/app/reports/maps/maps.component.spec.ts new file mode 100755 index 0000000..ffa9d24 --- /dev/null +++ b/src/app/reports/maps/maps.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { MapsComponent } from './maps.component'; + +describe('MapsComponent', () => { + let component: MapsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [MapsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(MapsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/maps/maps.component.ts b/src/app/reports/maps/maps.component.ts new file mode 100755 index 0000000..0593709 --- /dev/null +++ b/src/app/reports/maps/maps.component.ts @@ -0,0 +1,96 @@ +import { Component, OnInit, ViewChild } from '@angular/core'; +import { ReportsService } from '../reports.service'; + +@Component({ + selector: 'app-maps', + templateUrl: './maps.component.html', + styleUrls: ['./maps.component.scss'] +}) +export class MapsComponent implements OnInit { + + @ViewChild('map', { static: true }) map; + villages: any = []; + + zoom = 7; + kenyaCenter: any; + styles: any = [ + { + featureType: 'all', + stylers: [ + { + saturation: -80 + } + ] + }, + { + featureType: 'road.arterial', + elementType: 'geometry', + stylers: [ + { + hue: '#00ffee' + }, + { + saturation: 50 + } + ] + }, + { + featureType: 'poi.business', + elementType: 'labels', + stylers: [ + { + visibility: 'off' + } + ] + } + ]; + + constructor(private reportsService: ReportsService) { + this.getMapCoordinates(); + } + + ngOnInit() { + this.kenyaCenter = { lat: 0.0236, lng: 37.9062 }; + + this.map.triggerResize().then(() => + this.map._mapsWrapper.setCenter(this.kenyaCenter) + ); + } + + + getMapCoordinates() { + this.reportsService.getSchoolCoordinates().subscribe((res) => { + + // console.log(res.results, 'sdsdsd'); + + res.results.map(vil => { + //console.log(vil) + + let village = vil.value.split("_"); + vil.id = village[0]; + vil.lat = parseInt(village[1]); + vil.lng = parseInt(village[2]); + vil.name = village[3].toUpperCase(); + vil.villageCoordinates = { lat: 0.355557, lng: 40.875549 }; + + res.results.enrolls.map(res => { + const villageEnrolls = res.value.split("_"); + if (villageEnrolls[0] === village[0]) { + vil.dropout_females = res.dropout_females; + vil.dropout_males = res.dropout_males; + vil.dropout_total = res.dropout_total; + vil.enrol_total_females = res.females; + vil.enrol_total_males = res.males; + vil.enrol_total = res.total; + } + }); + + // console.log(vil); + this.villages.push(vil); + }); + + }, error => { + console.log(error); + }) + } +} \ No newline at end of file diff --git a/src/app/reports/maps/maps.module.spec.ts b/src/app/reports/maps/maps.module.spec.ts new file mode 100755 index 0000000..9edba08 --- /dev/null +++ b/src/app/reports/maps/maps.module.spec.ts @@ -0,0 +1,13 @@ +import { MapsModule } from './maps.module'; + +describe('MapsModule', () => { + let mapsModule: MapsModule; + + beforeEach(() => { + mapsModule = new MapsModule(); + }); + + it('should create an instance', () => { + expect(mapsModule).toBeTruthy(); + }); +}); diff --git a/src/app/reports/reports.component.html b/src/app/reports/reports.component.html new file mode 100755 index 0000000..d4d12af --- /dev/null +++ b/src/app/reports/reports.component.html @@ -0,0 +1,3 @@ +

+ reports works! +

diff --git a/src/app/reports/reports.component.scss b/src/app/reports/reports.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/reports/reports.component.spec.ts b/src/app/reports/reports.component.spec.ts new file mode 100755 index 0000000..df0c1fc --- /dev/null +++ b/src/app/reports/reports.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ReportsComponent } from './reports.component'; + +describe('ReportsComponent', () => { + let component: ReportsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ReportsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ReportsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/reports.component.ts b/src/app/reports/reports.component.ts new file mode 100755 index 0000000..9cf0387 --- /dev/null +++ b/src/app/reports/reports.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-reports', + templateUrl: './reports.component.html', + styleUrls: ['./reports.component.scss'] +}) +export class ReportsComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/reports/reports.module.spec.ts b/src/app/reports/reports.module.spec.ts new file mode 100755 index 0000000..1874284 --- /dev/null +++ b/src/app/reports/reports.module.spec.ts @@ -0,0 +1,13 @@ +import { ReportsModule } from './reports.module'; + +describe('ReportsModule', () => { + let reportsModule: ReportsModule; + + beforeEach(() => { + reportsModule = new ReportsModule(); + }); + + it('should create an instance', () => { + expect(reportsModule).toBeTruthy(); + }); +}); diff --git a/src/app/reports/reports.module.ts b/src/app/reports/reports.module.ts new file mode 100755 index 0000000..bc126eb --- /dev/null +++ b/src/app/reports/reports.module.ts @@ -0,0 +1,39 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +import { AgmCoreModule } from '@agm/core'; +import { SharedModule } from '../shared/shared.module'; +import { RouterModule } from '@angular/router'; +import { ReportsRoutes } from './reports.routing'; +import { MapsComponent } from './maps/maps.component'; +import { ReportsComponent } from './reports.component'; +import { ReportFilterModule } from '../shared/report-filter/report-filter.module'; +import { StatsComponent } from './stats/stats.component'; +import { DownloadsComponent } from './downloads/downloads.component'; + +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { EnrolmentComponent } from './enrolment/enrolment.component'; +import { AttendanceComponent } from './attendance/attendance.component'; +import { AbsenceComponent } from './absence/absence.component'; +import { DeleteComponent } from './delete/delete.component'; +import { AutoReportsComponent } from './auto-reports/auto-reports.component'; + +@NgModule({ + imports: [ + CommonModule, + // MatCardModule, + // MatToolbarModule, + // MatTabsModule, + AgmCoreModule.forRoot({ + apiKey: 'AIzaSyBNezLRlMDDEewnDoyK0QmNwFKWtBva8tg' + }), + SharedModule, + // TablesModule, + // MyformModule, + + ReportFilterModule, + RouterModule.forChild(ReportsRoutes) + ], + declarations: [ReportsComponent, StatsComponent, DownloadsComponent, MapsComponent, ReportsComponent, EnrolmentComponent, AttendanceComponent, AbsenceComponent, DeleteComponent, AutoReportsComponent] +}) +export class ReportsModule { } \ No newline at end of file diff --git a/src/app/reports/reports.routing.ts b/src/app/reports/reports.routing.ts new file mode 100755 index 0000000..3c31386 --- /dev/null +++ b/src/app/reports/reports.routing.ts @@ -0,0 +1,49 @@ +import { Routes } from '@angular/router'; +import { AttendanceComponent } from './attendance/attendance.component'; +import { DownloadsComponent } from './downloads/downloads.component'; +import { EnrolmentComponent } from './enrolment/enrolment.component'; +import { MapsComponent } from './maps/maps.component'; +import { StatsComponent } from './stats/stats.component'; +import { AbsenceComponent } from './absence/absence.component'; +import { DeleteComponent } from './delete/delete.component'; +import { AutoReportsComponent } from './auto-reports/auto-reports.component'; + +export const ReportsRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'maps', + component: MapsComponent + }, + { + path: 'stats', + component: StatsComponent + }, + { + path: 'downloads', + component: DownloadsComponent + }, + { + path: 'enrolment', + component: EnrolmentComponent + }, + { + path: 'attendance', + component: AttendanceComponent + }, + { + path: 'absence', + component: AbsenceComponent + }, + { + path: 'delete', + component: DeleteComponent + }, + { + path: 'auto', + component: AutoReportsComponent + }, + ] + }, +]; diff --git a/src/app/reports/reports.service.spec.ts b/src/app/reports/reports.service.spec.ts new file mode 100755 index 0000000..b6f338e --- /dev/null +++ b/src/app/reports/reports.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { ReportsService } from './reports.service'; + +describe('ReportsService', () => { + beforeEach(() => TestBed.configureTestingModule({ teardown: { destroyAfterEach: false } })); + + it('should be created', () => { + const service: ReportsService = TestBed.get(ReportsService); + expect(service).toBeTruthy(); + }); +}); diff --git a/src/app/reports/reports.service.ts b/src/app/reports/reports.service.ts new file mode 100755 index 0000000..e110314 --- /dev/null +++ b/src/app/reports/reports.service.ts @@ -0,0 +1,29 @@ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { environment } from 'src/environments/environment'; +import { Observable } from 'rxjs'; +import { map,mergeMap } from 'rxjs/operators'; + +const endpoint = environment.APIv1Endpoint; + +@Injectable({ + providedIn: 'root' +}) +export class ReportsService { + + constructor(private http: HttpClient) {} + + getSchoolCoordinates(): Observable { + return this.http.get(endpoint + 'attendances/school').pipe( + mergeMap(val => { + + return this.http.get(endpoint + 'students/enrolls/school').pipe( + map(res => { + val.results.enrolls = res.results; + return val + }) + ); + }) + ) + } +} diff --git a/src/app/reports/stats/options.ts b/src/app/reports/stats/options.ts new file mode 100644 index 0000000..fac41a3 --- /dev/null +++ b/src/app/reports/stats/options.ts @@ -0,0 +1,426 @@ + +const filterOptions = { + "name": "Learner Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "report_type": { + "type": "field", + "required": true, + "read_only": false, + "label": "Type of Report", + "default": "students", + "choices": [ + { + value: "attendances", + display_name: "Attendance Report" + }, + { + value: "students", + display_name: "Students Report" + } + ] + }, + "active": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by In School", + "choices": [ + { + value: true, + display_name: "In School" + }, + { + value: false, + display_name: "Dropout" + } + ] + }, + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "No Grouping", + }, + { + value: "class", + display_name: "Class" + }, + { + value: "county", + display_name: "County" + }, + { + value: "sub-county", + display_name: "Sub County" + }, + { + value: "partner", + display_name: "Partner" + }, + { + value: "school", + display_name: "School" + }, + { + value: "special-need", + display_name: "Special Needs" + }, + { + value: "student-status", + display_name: "Status" + }, + { + value: "gender", + display_name: "Gender" + }, + { + value: "age", + display_name: "Age" + }, + { + value: "year", + display_name: "Year" + }, + { + value: "month", + display_name: "Month" + }, + { + value: "day", + display_name: "Day" + }, + { + value: "duplicate", + display_name: "DLCT" + }, + { + value: "knwos-dob", + display_name: "Knows Date of Birth" + } + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + "no_special_needs": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Learners With / Without Special Needs", + "choices": [ + { + value: false, + display_name: "With Special Needs" + }, + { + value: true, + display_name: "Without Special Needs" + } + ] + }, + "base_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Class", + "default": "", + "choices": [ + { + value: "1", + display_name: "1" + }, + { + value: "2", + display_name: "2" + }, + { + value: "3", + display_name: "3" + }, + { + value: "4", + display_name: "4" + }, + { + value: "5", + display_name: "5" + }, + { + value: "6", + display_name: "6" + }, + { + value: "7", + display_name: "7" + }, + { + value: "8", + display_name: "8" + }, + + ], + + }, + "special_needs": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Special Need", + "display_name": "name", + "placeholder": "Search Special Need ..", + "value_field": "id", + "url": `api/v1/special-needs/`, + "default": null, + "search_field": "name", + }, + "school_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "school_sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub County", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "search": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Search ", + "display_name": "name", + "placeholder": "Search county name..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "paginator": { + "type": "field", + "required": false, + "read_only": false, + "label": "Mode", + "default": "pa", + "choices": [ + { "value": "cursor", display_name: "Preview" }, + { "value": "pa", display_name: "Detailed" }, + ] + }, + "start_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by Start Date", + "placeholder": "Search Start Date .." + }, + "end_date": { + "type": "date", + "required": false, + "read_only": false, + "label": "Filter by End Date", + "placeholder": "Search End Date .." + }, + "status": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Status", + "display_name": "name", + "value_field": "value", + "placeholder": "Search Learner Status ..", + "choices": [ + { + "value": "OOSC", + "display_name": "Dropped Out" + }, + { + "value": "NE", + "display_name": "Never Been To School" + }, + { + "value": "PE", + "display_name": "Already Enrolled" + } + ] + }, + "school": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "is_training_school": { + "type": "field", + "required": false, + "read_only": false, + "label": "Show Training School Data", + "default": "false", + "choices": [ + { "display_name": "Yes", "value": true }, + { "display_name": "No", "value": false }, + ] + }, + + "partner": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter By Partner", + "placeholder": "Select Partner", + "choices": [ + + { + value: 10713, + display_name: "Werk" + }, + { + value: 10714, + display_name: "FCA" + }, + { + value: 10715, + display_name: "LISP" + }, + { + value: 10716, + display_name: "Special Olympics" + }, + { + value: 10717, + display_name: "Save The Children" + }, + { + value: 10718, + display_name: "IRCK" + }, + { + value: 10719, + display_name: "Qatar Charity" + }, + { + value: 12563, + display_name: "HIWYA" + }, + { + value: 8972, + display_name: "CDE BARINGO" + }, + { + value: 8973, + display_name: " CDE BUNGOMA" + }, + { + value: 8974, + display_name: "CDE GARISSA" + }, + { + value: 8975, + display_name: "CDE ISIOLO" + }, + { + value: 8976, + display_name: "CDE KAJIADO" + }, + { + value: 8977, + display_name: "CDE KILIFI" + }, + { + value: 8978, + display_name: "CDE KWALE" + }, + { + value: 8979, + display_name: "CDE MANDERA" + }, + { + value: 8980, + display_name: "CDE MARSABIT" + }, + { + value: 8981, + display_name: "CDE NAIROBI" + }, + { + value: 8982, + display_name: "CDE NAROK" + }, + { + value: 8983, + display_name: "CDE SAMBURU" + }, + { + value: 8984, + display_name: "CDE TANARIVER" + }, + { + value: 8985, + display_name: "CDE TURKANA" + }, + { + value: 8986, + display_name: "CDE WAJIR" + }, + { + value: 8987, + display_name: "CDE WESTPOKOT" + } + ] + } + + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/reports/stats/stats.component.html b/src/app/reports/stats/stats.component.html new file mode 100644 index 0000000..3a651b9 --- /dev/null +++ b/src/app/reports/stats/stats.component.html @@ -0,0 +1,17 @@ +
+
+
+

Report Statistics

+ + +
+
+ + +
+
\ No newline at end of file diff --git a/src/app/reports/stats/stats.component.scss b/src/app/reports/stats/stats.component.scss new file mode 100644 index 0000000..7ae75e1 --- /dev/null +++ b/src/app/reports/stats/stats.component.scss @@ -0,0 +1,55 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.filter-bar { + margin-top: 15px; + margin-bottom: 15px; + padding: 10px; + background-color: #fff; + border-radius: 6px; + filter: drop-shadow(0px 3px 6px #00000029); +} + +.filter-bar-item { + width: fit-content !important; + font-family: 13px; + font-family: "Prompt-Medium"; + border-right: 1px solid $primaryblue; + padding: 5px; +} + +.filter-bar-item span { + margin: 0px 10px; +} + +.filter-bar-item mat-icon { + width: 18px; + height: 18px; + color: #000; +} + +mat-icon { + width: 12px; + margin-left: 10px; +} + +.filter-type { + font-size: 14px; +} + +.filter-type-desc { + font-size: 13px; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} diff --git a/src/app/reports/stats/stats.component.spec.ts b/src/app/reports/stats/stats.component.spec.ts new file mode 100644 index 0000000..411a0a7 --- /dev/null +++ b/src/app/reports/stats/stats.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { StatsComponent } from './stats.component'; + +describe('StatsComponent', () => { + let component: StatsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [StatsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(StatsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/reports/stats/stats.component.ts b/src/app/reports/stats/stats.component.ts new file mode 100644 index 0000000..1fe8a60 --- /dev/null +++ b/src/app/reports/stats/stats.component.ts @@ -0,0 +1,84 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from "./options" +@Component({ + selector: 'app-stats', + templateUrl: './stats.component.html', + styleUrls: ['./stats.component.scss'] +}) +export class StatsComponent implements OnInit { + /// MyTable + url = 'api/v1/stats/students/id' + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + formGroupOrder = [ + ['report_type', 'grouping', 'paginator'], + ['school_county', 'school_sub_county', 'gender'], + ['school'] + ] + fetchingData = false + constructor(private route: Router) { } + + ngOnInit() { + } + + downloadsActions(event) { + } + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['/reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + isLoading(status) { + this.fetchingData = status + } + + handleActions(event) { + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["report_type", "grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/stats/${data.report_type}/${data.grouping}` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + +} diff --git a/src/app/reports/stats/stats.module.spec.ts b/src/app/reports/stats/stats.module.spec.ts new file mode 100644 index 0000000..94912d9 --- /dev/null +++ b/src/app/reports/stats/stats.module.spec.ts @@ -0,0 +1,13 @@ +import { StatsModule } from './stats.module'; + +describe('StatsModule', () => { + let statsModule: StatsModule; + + beforeEach(() => { + statsModule = new StatsModule(); + }); + + it('should create an instance', () => { + expect(statsModule).toBeTruthy(); + }); +}); diff --git a/src/app/school/add-school-myform/add-school-myform.component.html b/src/app/school/add-school-myform/add-school-myform.component.html new file mode 100644 index 0000000..d99816d --- /dev/null +++ b/src/app/school/add-school-myform/add-school-myform.component.html @@ -0,0 +1,13 @@ +
+ +

Add School

+ + + + + + +
\ No newline at end of file diff --git a/src/app/school/add-school-myform/add-school-myform.component.scss b/src/app/school/add-school-myform/add-school-myform.component.scss new file mode 100644 index 0000000..be22e2f --- /dev/null +++ b/src/app/school/add-school-myform/add-school-myform.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; + } + + .page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; + } + + :host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/school/add-school-myform/add-school-myform.component.spec.ts b/src/app/school/add-school-myform/add-school-myform.component.spec.ts new file mode 100644 index 0000000..8b26cf2 --- /dev/null +++ b/src/app/school/add-school-myform/add-school-myform.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddSchoolMyformComponent } from './add-school-myform.component'; + +describe('AddSchoolMyformComponent', () => { + let component: AddSchoolMyformComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddSchoolMyformComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddSchoolMyformComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/add-school-myform/add-school-myform.component.ts b/src/app/school/add-school-myform/add-school-myform.component.ts new file mode 100644 index 0000000..3ce235a --- /dev/null +++ b/src/app/school/add-school-myform/add-school-myform.component.ts @@ -0,0 +1,47 @@ +import { Component, OnInit } from '@angular/core'; +import { options } from './options'; +import { ActivatedRoute, Router } from '@angular/router'; +import { BaseCrudComponent } from 'src/app/shared/components/base-crud.component'; +import { Subscription } from 'rxjs/internal/Subscription'; + +@Component({ + selector: 'app-add-school-myform', + templateUrl: './add-school-myform.component.html', + styleUrls: ['./add-school-myform.component.scss'] +}) +export class AddSchoolMyformComponent extends BaseCrudComponent { + + constructor(public override route: ActivatedRoute, public override router: Router) { + super(route, router); + } + + formItems: any = options; + url: string = "api/v1/schools/" + extra_fields: any + routeParamSub?: Subscription; + formGroupOrder = [ + ['name', 'emis_code'], + ['phone', 'email'], + ['location', 'gender'], + ['sub_county'] + ] + + + ngOnInit() { + } + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(data) { + // TODO + } + + setIntance(event) { + console.log(event, 'event') + this.instance = event; + } + + +} diff --git a/src/app/school/add-school-myform/options.ts b/src/app/school/add-school-myform/options.ts new file mode 100644 index 0000000..38fe112 --- /dev/null +++ b/src/app/school/add-school-myform/options.ts @@ -0,0 +1,303 @@ +const options = { + "name": "List Create Schools Dynamics Api", + "description": "Group statistics by:\n`type` = id, sub-county, county", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "village_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "Village name" + }, + "district_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "District name" + }, + "district": { + "type": "string", + "required": false, + "read_only": true, + "label": "District" + }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "name": { + "type": "string", + "required": true, + "read_only": false, + "label": "School Name", + "max_length": 45 + }, + "emis_code": { + "type": "string", + "required": true, + "read_only": false, + "label": "Emis Code", + "max_length": 45 + }, + "phone": { + "type": "string", + "required": false, + "read_only": false, + "label": "Phone", + "max_length": 30 + }, + "email": { + "type": "email", + "required": false, + "read_only": false, + "label": "Email Address", + "max_length": 100 + }, + "school_ministry": { + "type": "string", + "required": false, + "read_only": false, + "label": "School ministry", + "max_length": 100 + }, + "founder_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Founder name", + "max_length": 70 + }, + "year_of_foundation": { + "type": "date", + "required": false, + "read_only": false, + "label": "Year of foundation" + }, + "ownership": { + "type": "string", + "required": false, + "read_only": false, + "label": "Ownership", + "max_length": 100 + }, + "location": { + "type": "choice", + "required": false, + "read_only": false, + "label": "School Category", + "choices": [ + { + "value": "R", + "display_name": "Rural" + }, + { + "value": "U", + "display_name": "Urban" + } + ] + }, + "lat": { + "type": "float", + "required": false, + "read_only": false, + "label": "Lat" + }, + "lng": { + "type": "float", + "required": false, + "read_only": false, + "label": "Lng" + }, + "start_of_calendar": { + "type": "date", + "required": false, + "read_only": false, + "label": "Start of calendar" + }, + "end_of_calendar": { + "type": "date", + "required": false, + "read_only": false, + "label": "End of calendar" + }, + "active": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Active" + }, + "lowest_grade": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Lowest grade", + "choices": [ + { + "value": "1", + "display_name": "1" + }, + { + "value": "2", + "display_name": "2" + }, + { + "value": "3", + "display_name": "3" + }, + { + "value": "4", + "display_name": "4" + }, + { + "value": "5", + "display_name": "5" + }, + { + "value": "6", + "display_name": "6" + }, + { + "value": "7", + "display_name": "7" + }, + { + "value": "8", + "display_name": "8" + } + ] + }, + "highest_grade": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Highest grade", + "choices": [ + { + "value": "1", + "display_name": "1" + }, + { + "value": "2", + "display_name": "2" + }, + { + "value": "3", + "display_name": "3" + }, + { + "value": "4", + "display_name": "4" + }, + { + "value": "5", + "display_name": "5" + }, + { + "value": "6", + "display_name": "6" + }, + { + "value": "7", + "display_name": "7" + }, + { + "value": "8", + "display_name": "8" + } + ] + }, + "schooling": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Schooling", + "choices": [ + { + "value": "D", + "display_name": "Day Only" + }, + { + "value": "B", + "display_name": "Boarding Only" + }, + { + "value": "BD", + "display_name": "Boarding and Day" + } + ] + }, + "gender": { + "type": "choice", + "required": false, + "read_only": false, + "label": "School Type", + "choices": [ + { + "value": "M", + "display_name": "Male" + }, + { + "value": "F", + "display_name": "Female" + }, + { + "value": "MX", + "display_name": "Mixed" + } + ] + }, + "moe_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe id", + "max_length": 50 + }, + "moe_emis_code": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe emis code", + "max_length": 50 + }, + "sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Sub County", + "url": `api/v1/sub-counties/`, + "display_name": "name", + "placeholder": "Search Sub County name ..", + "value_field": "id", + "search_field": "name" + } + } + } +} + +export { + options +} \ No newline at end of file diff --git a/src/app/school/add-school/add-school.component.html b/src/app/school/add-school/add-school.component.html new file mode 100755 index 0000000..2961d39 --- /dev/null +++ b/src/app/school/add-school/add-school.component.html @@ -0,0 +1,283 @@ +
+ + Section A: School Profile + School profile (*) - required fields + + +
+ + {{ error }} + +
+
+ + +
+
+ + + + EMIS number is required + +
+
+ + + + School + name is required + +
+
+
+ +
+
+ + + {{ region.name }} + + + Region is required + +
+
+ + + {{ district.name + }} + + + + District is required + +
+
+
+ +
+
+ + + {{ village.name }} + + + Village is required + +
+
+ + + +
+
+
+ +
+
+ + + +
+
+ + + +
+
+
+ + +
+ + + Section B: School History + Tell us about school history + + +
+
+ + + +
+
+ + + {{ year.name }} + + + Year of Foundation is required + +
+
+
+ +
+
+ + + +
+
+
+ +
+ + + Section C: School Particulars + B1. Tell us what organization or entity owns the school building and provides your school + with financial assistance. + + +
+
+
Ownership
+ + {{ i+1+'. ' + }}{{ owner }} + + + + +
+
+
+ +
+
+
Location (*)
+ + {{i+1+'. + '}}{{ loc.name }} + + Location is required + +
+
+
+ +
+
+
Enter school coordinates
+ + Latitude + + + + Longitude + + +
+
+
+ +
+ + + Section D: School Calendar + Tell us about school calendar + + +
+
+
In which month do you start the school year? (*)
+ + + {{ month.name }} + + + Start of School Calendar is required + +
+
+
+ +
+
+
In which month do you end the school year? (*)
+ + + {{ month.name }} + + + End of School Calendar is required + +
+
+
+
+ + + Section E: Grade levels + Tell us about school grade levels + + +
+
+
The lowest primary grade/class taught (*)
+ + + {{ class }} + + + Lowest Grade is required + +
+
+
+ +
+
+
The highest primary grade/class taught (*)
+ + + {{ class }} + + + Highest Grade is required + +
+
+
+
+ + + Section F: School timing + Tell us type of schooling provided in your school + + +
+
+
What type of schooling does your school provide? (*)
+ + {{i+1+'. + '}}{{ time.name }} + + Type of School is required + +
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/src/app/school/add-school/add-school.component.scss b/src/app/school/add-school/add-school.component.scss new file mode 100755 index 0000000..1e41460 --- /dev/null +++ b/src/app/school/add-school/add-school.component.scss @@ -0,0 +1,8 @@ +.inline-label { + padding-bottom: 10px; +} + +.mat-checkbox, +.mat-radio-button { + padding-right: 10px; +} \ No newline at end of file diff --git a/src/app/school/add-school/add-school.component.spec.ts b/src/app/school/add-school/add-school.component.spec.ts new file mode 100755 index 0000000..50158bd --- /dev/null +++ b/src/app/school/add-school/add-school.component.spec.ts @@ -0,0 +1,54 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing' + +import { AddSchoolComponent } from './add-school.component' +import { FormBuilder, Validators } from '@angular/forms'; +import { FormsModule, ReactiveFormsModule } from '@angular/forms'; +import { MatButtonModule } from '@angular/material/button'; +import { MatCardModule } from '@angular/material/card'; +import { MatCheckboxModule } from '@angular/material/checkbox'; +import { MatRadioModule } from '@angular/material/radio'; +import { MatSelectModule } from '@angular/material/select'; +import { MatTabsModule } from '@angular/material/tabs'; +import { MatToolbarModule } from '@angular/material/toolbar'; + + +describe('AddSchoolComponent', () => { + let component: AddSchoolComponent + let fixture: ComponentFixture + const fb: FormBuilder = new FormBuilder() + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + imports: [ + MatCardModule, + MatCheckboxModule, + MatButtonModule, + MatToolbarModule, + MatTabsModule, + MatRadioModule, + MatSelectModule, + FormsModule, + ReactiveFormsModule + ], + declarations: [AddSchoolComponent], + providers: [{ provide: FormBuilder, useValue: fb }], + teardown: { destroyAfterEach: false } + }) + .compileComponents() + .then(() => { + fixture = TestBed.createComponent(AddSchoolComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + })); + + // beforeEach(() => { + // fixture = TestBed.createComponent(AddSchoolComponent); + // component = fixture.componentInstance; + // fixture.detectChanges(); + // }); + + it('should create', () => { + expect(component).toBeTruthy() + }) +}) diff --git a/src/app/school/add-school/add-school.component.ts b/src/app/school/add-school/add-school.component.ts new file mode 100755 index 0000000..ab2bf54 --- /dev/null +++ b/src/app/school/add-school/add-school.component.ts @@ -0,0 +1,260 @@ +import { Component, OnInit, Input, Directive } from '@angular/core' +import { + FormBuilder, + FormGroup, + FormControl, + Validators, +} from '@angular/forms' +import { CustomValidators } from 'ng2-validation' +import { SchoolService } from '../school.service' +import { NotificationsService } from 'src/app/shared/notifications/notifications.service' +import { SharedService } from 'src/app/shared/shared.service' +import { Router, ActivatedRoute } from '@angular/router' + + +@Component({ + selector: 'app-add-school', + templateUrl: './add-school.component.html', + styleUrls: ['./add-school.component.scss'] +}) +export class AddSchoolComponent implements OnInit { + + public form: FormGroup; + public months: any; + public villages: any = []; + public districts: any = []; + public regions: any = []; + public ownership: any; + public location: any; + public timings: any; + public classes: any; + public years: any; + public ownership_status = false; + school: any; + update: boolean; + loading = false; + error: any = ''; + hideRegion = false; + + constructor(private fb: FormBuilder, private schoolService: SchoolService, public activatedRoute: ActivatedRoute, + private notifyService: NotificationsService, private sharedService: SharedService, private router: Router) { + + this.years = this.sharedService.getFirstDayofYears() + this.months = this.sharedService.getFirstDayofMonths() + this.ownership = ['Public', 'Community', 'Private', 'Other'] + this.location = [ + { name: 'Urban', value: 'U' }, + { name: 'Rural', value: 'R' } + ] + this.timings = [ + { value: 'D', name: 'Day school only' }, + { value: 'B', name: 'Boarding school only' }, + { value: 'DB', name: 'Day and boarding school' } + ] + + this.classes = ['P1', 'P2', 'P3', 'P4', 'P5', 'P6', 'P7', 'P8'] + } + + ngOnInit() { + this.form = this.fb.group({ + emis_code: [null, Validators.compose([Validators.required])], + name: [null, Validators.compose([Validators.required])], + region: new FormControl('', Validators.required), + district: new FormControl(null, Validators.required), + village: new FormControl('4', Validators.required), + phone: [null, Validators.compose([])], + email: [null, Validators.compose([CustomValidators.email])], + school_ministry: [null, Validators.compose([])], + founder_name: [null, Validators.compose([])], + former_school_name: [null, Validators.compose([])], + year_of_foundation: [null, Validators.compose([Validators.required])], + ownership: [null, Validators.compose([])], + other_owner: [null, Validators.compose([])], + location: [null, Validators.compose([Validators.required])], + lat: [null, Validators.compose([])], + lng: [null, Validators.compose([])], + start_of_calendar: [null, Validators.compose([Validators.required])], + end_of_calendar: [null, Validators.compose([Validators.required])], + lowest_grade: ['P1', Validators.compose([Validators.required])], + highest_grade: ['P8', Validators.compose([Validators.required])], + schooling: [null, Validators.compose([Validators.required])], + }) + + this.activatedRoute.queryParams + .subscribe(params => { + if (Object.entries(params).length > 1) { + this.update = true; + this.getSchool(params.school); + } else { + this.update = false; + this.villages = []; + this.districts = []; + this.form.reset(); + this.form.get('village').disable(); + this.form.get('district').disable(); + } + }); + + this.getRegions(); + this.formChangeSubscription(); + } + + + + formChangeSubscription() { + this.form.get('region').valueChanges.subscribe( + region => { + if (region != null) { + this.getDistricts(region); + this.form.get('district').setValue(''); + this.form.get('district').enable(); + this.form.get('village').disable(); + } + }); + + this.form.get('district').valueChanges.subscribe( + district => { + if (district != null) { + this.getVillages(district); + this.form.get('village').setValue(''); + this.form.get('village').enable(); + } + }); + + this.form.get('ownership').valueChanges.subscribe( + ownership => { + this.ownership_status = (ownership === 'Other') ? true : false + }) + } + + getRegions() { + this.sharedService.getRegions().subscribe(res => { + this.regions = res.results + }) + } + + getDistricts(id: number) { + const query = 'region=' + id + this.sharedService.getDistricts(query).subscribe(res => { + this.districts = res.results + }) + } + + getVillages(id: number) { + const query = 'district=' + id + this.sharedService.getVillages(query).subscribe(res => { + this.villages = res.results + }) + } + + onSubmit() { + this.loading = true + if (this.form.value.coordinates) { + const coordinates = this.form.value.coordinates.toString().split(',') + this.form.controls['lat'].setValue(coordinates[0]) + this.form.controls['lng'].setValue(coordinates[1]) + delete this.form.value.coordinates; + } + + if (this.form.value.other_owner) { + this.form.controls['ownership'].setValue(this.form.value.other_owner) + } + + this.update ? this.apiUpdateSchool() : this.apiCreateSchool() + } + + apiCreateSchool() { + this.schoolService.addSchools(this.form.value).subscribe( + res => { + this.school = res + this.notifyService.notify('School has been successfully created', 'success') + this.update = true + this.loading = false + this.router.navigate(['/schools/view-schools']) + + }, error => { + this.loading = false + this.error = error + this.notifyService.notify('Error occurred on creating school', 'error') + } + ) + } + + apiUpdateSchool() { + this.schoolService.updateSchool(this.form.value, this.school.id).subscribe( + res => { + this.loading = false + this.school = res + this.notifyService.notify('School has been successfully updated', 'success') + this.router.navigate(['/schools/view-schools']) + }, error => { + this.loading = false + this.error = error + this.notifyService.notify('Error occurred on updating school', 'error') + } + ) + } + + getSchool(id) { + this.schoolService.getSingleItem('schools', id).subscribe(res => { + this.school = res; + this.updateForm(res); + }); + } + + villagedClicked() { + if (this.update && this.hideRegion) { + console.log('seeen') + this.hideRegion = false; + this.form.get('village').setValue(''); + this.form.get('village').disable(); + this.form.get('district').disable(); + this.form.get('region').enable(); + } + } + + updateForm(data) { + const coodinates = data.lat && data.lng ? `${data.lat},${data.lng}` : ''; + this.form = this.fb.group({ + emis_code: data.emis_code, + name: data.name, + region: data.region, + district: data.district, + village: data.village, + phone: data.phone, + email: data.email, + school_ministry: data.school_ministry, + founder_name: data.founder_name, + former_school_name: data.former_school_name, + year_of_foundation: data.year_of_foundation, // todo: custom validation for year + ownership: data.ownership, + other_owner: data.other_owner, + location: data.location, + lat: data.lat, + lng: data.lng, + start_of_calendar: data.start_of_calendar, + end_of_calendar: data.end_of_calendar, + lowest_grade: data.lowest_grade, + highest_grade: data.highest_grade, + schooling: data.schooling, + }); + + this.formChangeSubscription(); + + if (data.village) { + this.form.get('district').disable(); + if (data.district) { + this.getVillages(data.district); + this.form.get('region').disable(); + this.hideRegion = true; + } else { + this.form.get('village').disable(); + } + } else { + this.form.get('village').disable(); + this.form.get('district').disable(); + } + this.form.get('village').setValue(data.village) + } +} + diff --git a/src/app/school/add-teacher/add-teacher.component.html b/src/app/school/add-teacher/add-teacher.component.html new file mode 100755 index 0000000..9ee9afc --- /dev/null +++ b/src/app/school/add-teacher/add-teacher.component.html @@ -0,0 +1,133 @@ +
+ + Add Teacher + {{'All fields marked * are required' | translate}} + + + {{ errorMessage | titlecase}} + + + + +
+
+ + + + {{'First name is required' | translate}} + +
+
+ + + +
+
+
+ + +
+
+ + + + {{'Last name is required' | translate}} + +
+
+
+ + +
+
+ + + + + +
+
+ + + + {{'Phone number is required' | translate}} + +
+
+
+ + +
+
+ + + {{ qual.name | translate }} + + + {{'Qualification is required + ' | translate}} +
+
+ + + {{ status.name | translate }} + + + {{'Marital status is required + ' | translate}} +
+
+
+ + + +
+
+ + + +
+
+
+ + + +
+
+

Add as Admin (allows teacher to access all classes):

+ + +
+
+
+ + +
+
+ + + {{ class.base_class | translate }}{{ class.name | translate }} + + + {{'Class is required + ' | translate}} +
+
+ + +
+ + + +
+
+ + + + + + \ No newline at end of file diff --git a/src/app/school/add-teacher/add-teacher.component.scss b/src/app/school/add-teacher/add-teacher.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/add-teacher/add-teacher.component.spec.ts b/src/app/school/add-teacher/add-teacher.component.spec.ts new file mode 100755 index 0000000..6163a01 --- /dev/null +++ b/src/app/school/add-teacher/add-teacher.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddTeacherComponent } from './add-teacher.component'; + +describe('AddTeacherComponent', () => { + let component: AddTeacherComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddTeacherComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddTeacherComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/add-teacher/add-teacher.component.ts b/src/app/school/add-teacher/add-teacher.component.ts new file mode 100755 index 0000000..e4dd5bc --- /dev/null +++ b/src/app/school/add-teacher/add-teacher.component.ts @@ -0,0 +1,184 @@ +import { Component, OnInit } from '@angular/core' +import { SchoolService } from '../school.service' +import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms' +import moment from 'moment' +import { ConstantsService } from 'src/app/common/services/constants.service' +import { Router, ActivatedRoute } from '@angular/router' +import { NotificationsService } from 'src/app/shared/notifications/notifications.service' + +@Component({ + selector: 'app-add-teacher', + templateUrl: './add-teacher.component.html', + styleUrls: ['./add-teacher.component.scss'] +}) +export class AddTeacherComponent implements OnInit { + addTeacherForm: FormGroup + + qualifications: any + maritalStatus: any + update = false + classes: any + loader = false + checked = false + teacher: any + user: any + errorMessage: any = '' + + + constructor(public schoolService: SchoolService, private fb: FormBuilder, private constantService: ConstantsService, + public route: Router, public activatedRoute: ActivatedRoute, private notifyService: NotificationsService, ) { + this.qualifications = [{ name: 'University', value: 'UNI' }, { name: 'College', value: 'COL' }] + + this.maritalStatus = [{ name: 'Single', value: 'S' }, { name: 'Married', value: 'M' }, { name: 'Divorced', value: 'D' }] + + this.addTeacherForm = this.fb.group({ + first_name: new FormControl('', Validators.required), + middle_name: new FormControl(''), + last_name: new FormControl('', Validators.required), + phone: new FormControl('', Validators.required), + dob: new FormControl(''), + qualifications: new FormControl('', Validators.required), + marital_status: new FormControl('', Validators.required), + email: new FormControl(''), + is_school_admin: new FormControl(false), + streams: new FormControl('', Validators.required), + }) + + + this.addTeacherForm.get('is_school_admin').valueChanges.subscribe(checked => { + checked ? this.addTeacherForm.removeControl('streams') : + this.addTeacherForm.addControl('streams', new FormControl('', [Validators.required])) + + this.addTeacherForm.updateValueAndValidity() + + }) + + } + + ngOnInit() { + this.activatedRoute.queryParams + .subscribe(params => { + if (Object.entries(params).length > 1) { + this.update = true; + this.getTeacher(params.teacher); + } else { + this.update = false; + this.addTeacherForm.reset(); + } + }); + this.getClasses(); + + this.user = this.constantService.getUserProfile(); + // fixme: to be removed only works when logged in as a school + } + + onSubmit() { + const user = JSON.parse(localStorage.getItem('user_profile')) + + this.addTeacherForm.value.dob ? this.addTeacherForm.value.dob = moment(this.addTeacherForm.value.dob).format('YYYY-MM-DD') : + delete this.addTeacherForm.value.dob + + this.addTeacherForm.value.school = user.school + // todo: to be removed + this.update ? this.updateTeacher() : this.createTeacher() + + } + + createTeacher() { + this.loader = true + this.schoolService.addTeacher(this.addTeacherForm.value).subscribe( + res => { + this.loader = false + this.teacher = res + this.update = true + this.notifyService.notify('A teacher has been added', 'success') + this.addTeacherForm.reset() + }, + error => { + this.loader = false + this.errorMessage = error + + if (error.error.phone[0] === 'teacher with this phone already exists') { + this.errorMessage = 'A teacher with this phone number already exists' + } else { + return this.notifyService.notify('An error occured, please try again later!', 'error') + } + }) + } + + updateTeacher() { + this.loader = true + this.schoolService.updateTeacher(this.addTeacherForm.value, this.teacher.id).subscribe(res => { + this.loader = false + this.teacher = res + this.notifyService.notify('Teacher has been successfully Updated', 'success') + this.addTeacherForm.reset() + + }, + error => { + this.loader = false + this.errorMessage = error + return this.notifyService.notify('An error occured, please try again later!', 'error') + + }) + } + + + updatePopulateForm() { + if (!this.teacher.dob) { + this.teacher.dob = '' + } + const data = { + first_name: this.teacher.first_name, + middle_name: this.teacher.middle_name, + last_name: this.teacher.last_name, + phone: this.teacher.phone, + dob: this.teacher.dob, + qualifications: this.teacher.qualifications, + marital_status: this.teacher.marital_status, + email: this.teacher.email, + is_school_admin: this.teacher.is_school_admin, + streams: this.teacher.streams, + } + + if (this.teacher.is_school_admin) { + delete data.streams + + this.addTeacherForm.removeControl('streams') + + this.addTeacherForm.updateValueAndValidity() + + } + this.addTeacherForm.setValue(data) + + } + + getClasses() { + this.schoolService.getClasses(1).subscribe(res => { + if (res.results.length < 1) { + return + } + this.classes = res.results + + }) + + } + + addNewTeacher() { + this.addTeacherForm.reset() + + this.update = false + + } + + getTeacher(id) { + this.schoolService.getSingleItem('teachers', id).subscribe(res => { + this.teacher = res + + this.updatePopulateForm() + + }) + + } + +} diff --git a/src/app/school/classes/add-class-myform/add-class-myform.component.html b/src/app/school/classes/add-class-myform/add-class-myform.component.html new file mode 100644 index 0000000..38265b2 --- /dev/null +++ b/src/app/school/classes/add-class-myform/add-class-myform.component.html @@ -0,0 +1,10 @@ +
+ +

Add Class

+ + + + +
\ No newline at end of file diff --git a/src/app/school/classes/add-class-myform/add-class-myform.component.scss b/src/app/school/classes/add-class-myform/add-class-myform.component.scss new file mode 100644 index 0000000..94ffc38 --- /dev/null +++ b/src/app/school/classes/add-class-myform/add-class-myform.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/school/classes/add-class-myform/add-class-myform.component.spec.ts b/src/app/school/classes/add-class-myform/add-class-myform.component.spec.ts new file mode 100644 index 0000000..2629347 --- /dev/null +++ b/src/app/school/classes/add-class-myform/add-class-myform.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddClassMyformComponent } from './add-class-myform.component'; + +describe('AddClassMyformComponent', () => { + let component: AddClassMyformComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddClassMyformComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddClassMyformComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/classes/add-class-myform/add-class-myform.component.ts b/src/app/school/classes/add-class-myform/add-class-myform.component.ts new file mode 100644 index 0000000..2907432 --- /dev/null +++ b/src/app/school/classes/add-class-myform/add-class-myform.component.ts @@ -0,0 +1,59 @@ +import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute, Router } from '@angular/router'; +import { ConstantsService } from 'src/app/common/services/constants.service'; +import { options } from './options'; + +@Component({ + selector: 'app-add-class-myform', + templateUrl: './add-class-myform.component.html', + styleUrls: ['./add-class-myform.component.scss'] +}) +export class AddClassMyformComponent implements OnInit { + + formItems: any = options; + url: string = "api/v1/streams/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ['school'], + ['base_class'], + ['name'], + ] + instance: any; + + constructor(private route: ActivatedRoute, private router: Router, public commonService: ConstantsService) { + this.route.queryParams.subscribe(params => { + if (this.router.getCurrentNavigation().extras.state) { + const instance = this.router.getCurrentNavigation().extras.state; + if (instance.hasOwnProperty("id")) { + this.instance = instance + } + } + }) + } + + ngOnInit() { + + } + + getUserProfile() { + + + } + + + preSendData(data) { + data["HsPresave"] = true + return data + } + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(data) { + // Do something + } + + +} diff --git a/src/app/school/classes/add-class-myform/options.ts b/src/app/school/classes/add-class-myform/options.ts new file mode 100644 index 0000000..04c581b --- /dev/null +++ b/src/app/school/classes/add-class-myform/options.ts @@ -0,0 +1,146 @@ +const options = { + "name": "List Create Streams Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "school_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "School name" + }, + "class_name": { + "type": "field", + "required": false, + "read_only": true, + "label": "Class name" + }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Stream", + "max_length": 45 + }, + "last_attendance": { + "type": "date", + "required": false, + "read_only": false, + "label": "Last attendance" + }, + "base_class": { + "type": "choice", + "required": true, + "read_only": false, + "label": "Class", + "choices": [ + { + "value": "1", + "display_name": "1" + }, + { + "value": "2", + "display_name": "2" + }, + { + "value": "3", + "display_name": "3" + }, + { + "value": "4", + "display_name": "4" + }, + { + "value": "5", + "display_name": "5" + }, + { + "value": "6", + "display_name": "6" + }, + { + "value": "7", + "display_name": "7" + }, + { + "value": "8", + "display_name": "8" + } + ] + }, + "moe_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe id", + "max_length": 50 + }, + "moe_section_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe section id", + "max_length": 45 + }, + "moe_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe name", + "max_length": 45 + }, + "moe_section_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe section name", + "max_length": 45 + }, + "school": { + "type": "multifield", + "required": true, + "read_only": false, + "label": "Assign School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "item_config" + } + } + } +} + +export { + options +} \ No newline at end of file diff --git a/src/app/school/classes/classes.component.html b/src/app/school/classes/classes.component.html new file mode 100755 index 0000000..54f02ff --- /dev/null +++ b/src/app/school/classes/classes.component.html @@ -0,0 +1,45 @@ +
+ + Add Class + {{'All fields marked * are required' | translate }} + + + {{ error | titlecase}} + + + +
+
+ + + {{ class.name }} + + + + {{'Select a class please + ' | translate}} +
+
+ + + +
+
+
+ + + + +
+
+ + + + + \ No newline at end of file diff --git a/src/app/school/classes/classes.component.scss b/src/app/school/classes/classes.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/classes/classes.component.spec.ts b/src/app/school/classes/classes.component.spec.ts new file mode 100755 index 0000000..c64d990 --- /dev/null +++ b/src/app/school/classes/classes.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ClassesComponent } from './classes.component'; + +describe('ClassesComponent', () => { + let component: ClassesComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ClassesComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ClassesComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/classes/classes.component.ts b/src/app/school/classes/classes.component.ts new file mode 100755 index 0000000..1db7040 --- /dev/null +++ b/src/app/school/classes/classes.component.ts @@ -0,0 +1,118 @@ +import { Component, OnInit } from '@angular/core'; +import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms'; +import { SchoolService } from '../school.service'; +import { ConstantsService } from 'src/app/common/services/constants.service'; +import { Router, ActivatedRoute } from '@angular/router'; +import { NotificationsService } from 'src/app/shared/notifications/notifications.service'; + +@Component({ + selector: 'app-classes', + templateUrl: './classes.component.html', + styleUrls: ['./classes.component.scss'] +}) +export class ClassesComponent implements OnInit { + public addClassForm: FormGroup; + baseClasses: any; + user: any; + loader = false; + update = false; + class: any; + error: any = '' + + constructor(private fb: FormBuilder, private schoolService: SchoolService, public router: Router, + private constantService: ConstantsService, public activatedRoute: ActivatedRoute, public notifyService: NotificationsService) { + this.baseClasses = [{ name: 1 }, { name: 2 }, { name: 3 }, { name: 4 }, { name: 5 }, { name: 6 }, + { name: 7 }, { name: 8 } + ]; + + this.addClassForm = this.fb.group({ + base_class: new FormControl('', Validators.required), + name: new FormControl('') + }); + } + + ngOnInit() { + this.activatedRoute.queryParams + .subscribe(params => { + if (Object.entries(params).length > 1) { + this.update = true; + this.getClass(params.stream); + } else { + this.update = false; + this.addClassForm.reset(); + } + }); + } + + onSubmit() { + const user = JSON.parse(localStorage.getItem('user_profile')); + this.loader = true; + if (!this.addClassForm.value.name.trim()) { delete this.addClassForm.value.name; } + this.addClassForm.value.school = user.school; + this.update ? this.apiUpdateStream() : this.apiCreateStream(); + } + + apiCreateStream() { + this.schoolService.addClass(this.addClassForm.value).subscribe(res => { + this.loader = false; + this.update = true; + this.class = res; + this.notifyService.notify('Class has been successfully created', 'success'); + this.addClassForm.reset(); + }, + error => { + this.loader = false; + this.error = error + + this.notifyService.notify('An error occured please try again later!', 'error'); + if (error === 'Stream already exists.') { + return this.notifyService.notify('Stream already exists', 'error'); + + } else { + this.notifyService.notify('An error occure please try again later!', 'error'); + + } + }); + } + + apiUpdateStream() { + this.schoolService.updateClass(this.addClassForm.value, this.class.id).subscribe(res => { + this.loader = false; + this.class = res; + this.notifyService.notify('Class has been successfully updated', 'success'); + this.addClassForm.reset(); + }, + error => { + this.loader = false; + this.error = error + + if (error === 'Stream already exists.') { + return this.notifyService.notify('Stream already exists', 'error'); + + } else { + return this.notifyService.notify('An error occurred please try again later!', 'error'); + + } + + }); + } + + getClass(id) { + this.schoolService.getSingleItem('streams', id).subscribe(res => { + this.class = res; + this.updateForm(res); + }); + } + + updateForm(data) { + this.addClassForm.setValue({ + base_class: Number(data.base_class), + name: data.name + }); + } + + addNewclass() { + this.addClassForm.reset(); + this.update = false; + } +} diff --git a/src/app/school/classes/classes.module.spec.ts b/src/app/school/classes/classes.module.spec.ts new file mode 100755 index 0000000..1040177 --- /dev/null +++ b/src/app/school/classes/classes.module.spec.ts @@ -0,0 +1,13 @@ +import { ClassesModule } from './classes.module'; + +describe('ClassesModule', () => { + let classesModule: ClassesModule; + + beforeEach(() => { + classesModule = new ClassesModule(); + }); + + it('should create an instance', () => { + expect(classesModule).toBeTruthy(); + }); +}); diff --git a/src/app/school/classes/classes.module.ts b/src/app/school/classes/classes.module.ts new file mode 100755 index 0000000..cd53076 --- /dev/null +++ b/src/app/school/classes/classes.module.ts @@ -0,0 +1,21 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { ClassesComponent } from './classes.component'; +import { RouterModule } from '@angular/router'; +import { ClassesRoutes } from './classes.routing'; +import { ViewClassesComponent } from '../view-classes/view-classes.component'; +import { FileUploadModule } from 'ng2-file-upload'; +import { SharedModule } from 'src/app/shared/shared.module'; +import { AddClassMyformComponent } from './add-class-myform/add-class-myform.component'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(ClassesRoutes), + FileUploadModule, + SharedModule, + // MyformModule, TablesModule + ], + declarations: [ClassesComponent, ViewClassesComponent, AddClassMyformComponent] +}) +export class ClassesModule { } diff --git a/src/app/school/classes/classes.routing.ts b/src/app/school/classes/classes.routing.ts new file mode 100755 index 0000000..2a07561 --- /dev/null +++ b/src/app/school/classes/classes.routing.ts @@ -0,0 +1,19 @@ +import { Routes } from '@angular/router'; +import { ViewClassesComponent } from '../view-classes/view-classes.component'; +import { AddClassMyformComponent } from './add-class-myform/add-class-myform.component'; + +export const ClassesRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'add-class', + component: AddClassMyformComponent + }, + { + path: 'view-classes', + component: ViewClassesComponent + }, + ] + } +]; diff --git a/src/app/school/learners/add-learner/add-learner.component.html b/src/app/school/learners/add-learner/add-learner.component.html new file mode 100644 index 0000000..08b1d70 --- /dev/null +++ b/src/app/school/learners/add-learner/add-learner.component.html @@ -0,0 +1,10 @@ +
+ +

Add Learner

+ + + + +
\ No newline at end of file diff --git a/src/app/school/learners/add-learner/add-learner.component.scss b/src/app/school/learners/add-learner/add-learner.component.scss new file mode 100644 index 0000000..cc0f6d9 --- /dev/null +++ b/src/app/school/learners/add-learner/add-learner.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; + } + + .page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; + } + + :host ::ng-deep { + .form-control { + font-size: 14px !important; + } + } \ No newline at end of file diff --git a/src/app/school/learners/add-learner/add-learner.component.spec.ts b/src/app/school/learners/add-learner/add-learner.component.spec.ts new file mode 100644 index 0000000..4e63790 --- /dev/null +++ b/src/app/school/learners/add-learner/add-learner.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddLearnerComponent } from './add-learner.component'; + +describe('AddLearnerComponent', () => { + let component: AddLearnerComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddLearnerComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddLearnerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/learners/add-learner/add-learner.component.ts b/src/app/school/learners/add-learner/add-learner.component.ts new file mode 100644 index 0000000..c5eabf7 --- /dev/null +++ b/src/app/school/learners/add-learner/add-learner.component.ts @@ -0,0 +1,54 @@ +import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute, Router } from '@angular/router'; +import { ConstantsService } from 'src/app/common/services/constants.service'; +import { options } from './options'; + +@Component({ + selector: 'app-add-learner', + templateUrl: './add-learner.component.html', + styleUrls: ['./add-learner.component.scss'] +}) +export class AddLearnerComponent implements OnInit { + + formItems: any = options; + url: string = "api/v1/students/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ['first_name', 'middle_name', 'last_name'], + ['gender', 'status', 'stream'], + ['date_enrolled', 'date_of_birth'], + ['upi', 'admission_no'], + ['sub_county', 'village'], + ['distance_from_school', 'cash_transfer_beneficiary'], + + //guardian details + ['guardian_name', 'guardian_phone'], + ['guardian_status', 'guardian_sub_county'] + ] + instance: any + + constructor(private route: ActivatedRoute, private router: Router, public commonService: ConstantsService) { + this.route.queryParams.subscribe(params => { + if (this.router.getCurrentNavigation().extras.state) { + const instance = this.router.getCurrentNavigation().extras.state; + if (instance.hasOwnProperty("id")) { + this.instance = instance + } + } + }) + } + + + ngOnInit() { + } + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(data) { + // TODO + } + +} diff --git a/src/app/school/learners/add-learner/options.ts b/src/app/school/learners/add-learner/options.ts new file mode 100644 index 0000000..96d3ee7 --- /dev/null +++ b/src/app/school/learners/add-learner/options.ts @@ -0,0 +1,496 @@ + +const options = { + "name": "List Students Dynamics Api", + "description": "Group statistics by:\n`type` = class, school, sub-county, county, special-need, gender, id, student-status, dropout-reason, knows-dob, month, year, day", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "school_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "School name" + }, + "stream_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "Stream name" + }, + "base_class": { + "type": "string", + "required": false, + "read_only": true, + "label": "Class" + }, + "full_name": { + "type": "field", + "required": false, + "read_only": true, + "label": "Full name" + }, + "student_id": { + "type": "field", + "required": false, + "read_only": true, + "label": "Student id" + }, + "date_enrolled": { + "type": "date", + "required": false, + "read_only": false, + "label": "Date Enrolled" + }, + "special_needs_details": { + "type": "field", + "required": false, + "read_only": true, + "label": "Special needs details", + "child": { + "type": "nested object", + "required": false, + "read_only": true, + "children": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "name": { + "type": "string", + "required": true, + "read_only": false, + "label": "Name", + "max_length": 100 + }, + "abbreviation": { + "type": "string", + "required": false, + "read_only": false, + "label": "Abbreviation", + "max_length": 10 + } + } + } + }, + "county": { + "type": "integer", + "required": false, + "read_only": true, + "label": "County" + }, + "guardian_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Guardian county", + "url": `api/v1/schools/`, + "display_name": "name", + "placeholder": "Search school name..", + "value_field": "id", + "edit_source_field": "items_details", + }, + // "age": { + // "type": "string", + // "required": false, + // "read_only": true, + // "label": "Estimate Age (Years)" + // }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "emis_code": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Emis code", + "min_value": -9223372036854775808, + "max_value": 9223372036854775807 + }, + "first_name": { + "type": "string", + "required": true, + "read_only": false, + "label": "First name", + "max_length": 200 + }, + "middle_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Middle name", + "max_length": 200 + }, + "last_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Last name", + "max_length": 200 + }, + "date_of_birth": { + "type": "date", + "required": false, + "read_only": false, + "label": "Date of birth" + }, + "admission_no": { + "type": "string", + "required": true, + "read_only": false, + "label": "Admission Number", + "max_length": 50 + }, + "gender": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Gender", + "choices": [ + { + "value": "M", + "display_name": "Male" + }, + { + "value": "F", + "display_name": "Female" + } + ] + }, + "previous_class": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Previous class", + "min_value": -2147483648, + "max_value": 2147483647 + }, + "mode_of_transport": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Mode of transport", + "choices": [ + { + "value": "PERSONAL", + "display_name": "Personal Vehicle" + }, + { + "value": "BUS", + "display_name": "School Bus" + }, + { + "value": "FOOT", + "display_name": "By Foot" + }, + { + "value": "NS", + "display_name": "Not Set" + } + ] + }, + "time_to_school": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Time to school", + "choices": [ + { + "value": "1HR", + "display_name": "One Hour" + }, + { + "value": "-0.5HR", + "display_name": "Less than 1/2 Hour" + }, + { + "value": "+1HR", + "display_name": "More than one hour." + }, + { + "value": "NS", + "display_name": "Not Set" + } + ] + }, + "distance_from_school": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Distance from school (km)", + "min_value": -2147483648, + "max_value": 2147483647 + }, + "household": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Household", + "min_value": -2147483648, + "max_value": 2147483647 + }, + "meals_per_day": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Meals per day", + "min_value": -2147483648, + "max_value": 2147483647 + }, + "not_in_school_before": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Not in school before" + }, + "cash_transfer_beneficiary": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Cash Transfer Beneficiary" + }, + "emis_code_histories": { + "type": "string", + "required": false, + "read_only": false, + "label": "Emis code histories", + "max_length": 200 + }, + "total_attendance": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Total attendance", + "min_value": -2147483648, + "max_value": 2147483647 + }, + "total_absents": { + "type": "integer", + "required": false, + "read_only": false, + "label": "Total absents", + "min_value": -2147483648, + "max_value": 2147483647 + }, + "last_attendance": { + "type": "date", + "required": false, + "read_only": false, + "label": "Last attendance" + }, + "knows_dob": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Knows dob" + }, + "guardian_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Guardian name", + "max_length": 50 + }, + "guardian_phone": { + "type": "string", + "required": false, + "read_only": false, + "label": "Guardian phone", + "max_length": 20 + }, + "guardian_status": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Guardian status", + "choices": [ + { + "value": "B", + "display_name": "Both Parents" + }, + { + "value": "S", + "display_name": "Single Parent" + }, + { + "value": "N", + "display_name": "No Parents" + } + ] + }, + "village": { + "type": "string", + "required": false, + "read_only": false, + "label": "Learner's Village", + "max_length": 45 + }, + "active": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Active" + }, + "graduated": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Graduated" + }, + "dropout_reason": { + "type": "string", + "required": false, + "read_only": false, + "label": "Dropout reason", + "max_length": 200 + }, + "offline_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Offline id", + "max_length": 20 + }, + "status": { + "type": "choice", + "required": true, + "read_only": false, + "label": "Status", + "choices": [ + { + "value": "OOSC", + "display_name": "Dropped Out" + }, + { + "value": "NE", + "display_name": "Never Been to School" + }, + { + "value": "PE", + "display_name": "Previously Enrolled" + } + ] + }, + "moe_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe id", + "max_length": 50 + }, + "moe_unique_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe unique id", + "max_length": 45 + }, + "moe_extra_info": { + "type": "field", + "required": false, + "read_only": false, + "label": "Moe extra info" + }, + "upi": { + "type": "string", + "required": false, + "read_only": false, + "label": "Upi Number", + "help_text": "Unique Identification provided by the school", + "max_length": 45 + }, + "stream": { + "type": "multifield", + "required": true, + "read_only": false, + "label": "Assign Stream", + "display_name": "full_class_name", + "placeholder": "Search School Name ..", + "url": `api/v1/streams/`, + "value_field": "id", + "search_field": "school_name" + }, + "guardian_sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Guardian Sub county", + "url": `api/v1/sub-counties/`, + "display_name": "name", + "placeholder": "Search Sub County name ..", + "value_field": "id", + "search_field": "name" + }, + "sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Learner's Sub county", + "url": `api/v1/sub-counties/`, + "display_name": "name", + "placeholder": "Search Sub County name ..", + "value_field": "id", + "search_field": "name" + + }, + "graduates_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Graduates class" + }, + "special_needs": { + "type": "field", + "required": false, + "read_only": false, + "label": "Special needs", + "multiple": true, + "url": `api/v1/special-needs/`, + "display_name": "name", + "placeholder": "Search Special needs ..", + "value_field": "id", + "search_field": "name", + } + } + } +} + +export { + options +} diff --git a/src/app/school/learners/learners.module.ts b/src/app/school/learners/learners.module.ts new file mode 100644 index 0000000..96ca5b5 --- /dev/null +++ b/src/app/school/learners/learners.module.ts @@ -0,0 +1,45 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; +import { SharedModule } from '../../shared/shared.module'; +import { LearnersRoutes } from './learners.routing'; +import { AddLearnerComponent } from './add-learner/add-learner.component'; +import { ViewLearnerComponent } from './view-learner/view-learner.component'; +import { MoveLearnerComponent } from './move-learner/move-learner.component'; +import { PromoteLearnerComponent } from './promote-learner/promote-learner.component'; +import { IndividualComponent } from '../students/individual/individual.component'; +import { DropoutsComponent } from '../students/dropouts/dropouts.component'; +import { PromoteToDialogComponent, PromoteStudentsComponent } from '../students/promote-students/promote-students.component'; +import { MoveStudentsComponent } from '../students/move-students/move-students.component'; +import { StudentsComponent } from '../students/students.component'; +import { AddStudentComponent } from '../students/add-student/add-student.component'; +import { FileUploadModule } from 'ng2-file-upload'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(LearnersRoutes), + FileUploadModule, + SharedModule, + // MatDatepickerModule, + // MatNativeDateModule, + // MatListModule, + // MatDialogModule, + // MyformModule, + // TablesModule + ], + declarations: [ + AddLearnerComponent, + ViewLearnerComponent, + MoveLearnerComponent, + PromoteLearnerComponent, + IndividualComponent, + DropoutsComponent, + PromoteToDialogComponent, + MoveStudentsComponent, + PromoteStudentsComponent, + StudentsComponent, + AddStudentComponent + ] +}) +export class LearnersModule { } diff --git a/src/app/school/learners/learners.routing.ts b/src/app/school/learners/learners.routing.ts new file mode 100644 index 0000000..9dce48b --- /dev/null +++ b/src/app/school/learners/learners.routing.ts @@ -0,0 +1,43 @@ +import { Routes } from '@angular/router'; +import { NotAdminGuard } from 'src/app/core/guards/auth.guard'; +import { DropoutsComponent } from '../students/dropouts/dropouts.component'; +import { IndividualComponent } from '../students/individual/individual.component'; +import { AddLearnerComponent } from './add-learner/add-learner.component'; +import { MoveLearnerComponent } from './move-learner/move-learner.component'; +import { PromoteLearnerComponent } from './promote-learner/promote-learner.component'; +import { ViewLearnerComponent } from './view-learner/view-learner.component'; + +export const LearnersRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'view-students', + component: ViewLearnerComponent + }, + { + path: 'view-students/deactivated', + component: DropoutsComponent + }, + { + path: 'add-student', + component: AddLearnerComponent, + // canActivate: [NotAdminGuard] + }, + { + path: 'details', + component: IndividualComponent + }, + { + path: 'move-students', + component: MoveLearnerComponent, + // canActivate: [NotAdminGuard] + }, + { + path: 'promote-students', + component: PromoteLearnerComponent, + // canActivate: [NotAdminGuard] + } + ] + } +]; diff --git a/src/app/school/learners/move-learner/move-learner.component.html b/src/app/school/learners/move-learner/move-learner.component.html new file mode 100644 index 0000000..9392dac --- /dev/null +++ b/src/app/school/learners/move-learner/move-learner.component.html @@ -0,0 +1,3 @@ +

+ move-learner works! +

diff --git a/src/app/school/learners/move-learner/move-learner.component.scss b/src/app/school/learners/move-learner/move-learner.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/school/learners/move-learner/move-learner.component.spec.ts b/src/app/school/learners/move-learner/move-learner.component.spec.ts new file mode 100644 index 0000000..dde405d --- /dev/null +++ b/src/app/school/learners/move-learner/move-learner.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { MoveLearnerComponent } from './move-learner.component'; + +describe('MoveLearnerComponent', () => { + let component: MoveLearnerComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [MoveLearnerComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(MoveLearnerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/learners/move-learner/move-learner.component.ts b/src/app/school/learners/move-learner/move-learner.component.ts new file mode 100644 index 0000000..89afdd3 --- /dev/null +++ b/src/app/school/learners/move-learner/move-learner.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-move-learner', + templateUrl: './move-learner.component.html', + styleUrls: ['./move-learner.component.scss'] +}) +export class MoveLearnerComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/school/learners/promote-learner/promote-learner.component.html b/src/app/school/learners/promote-learner/promote-learner.component.html new file mode 100644 index 0000000..d7b15ce --- /dev/null +++ b/src/app/school/learners/promote-learner/promote-learner.component.html @@ -0,0 +1,3 @@ +

+ promote-learner works! +

diff --git a/src/app/school/learners/promote-learner/promote-learner.component.scss b/src/app/school/learners/promote-learner/promote-learner.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/school/learners/promote-learner/promote-learner.component.spec.ts b/src/app/school/learners/promote-learner/promote-learner.component.spec.ts new file mode 100644 index 0000000..a161884 --- /dev/null +++ b/src/app/school/learners/promote-learner/promote-learner.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { PromoteLearnerComponent } from './promote-learner.component'; + +describe('PromoteLearnerComponent', () => { + let component: PromoteLearnerComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [PromoteLearnerComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(PromoteLearnerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/learners/promote-learner/promote-learner.component.ts b/src/app/school/learners/promote-learner/promote-learner.component.ts new file mode 100644 index 0000000..0239484 --- /dev/null +++ b/src/app/school/learners/promote-learner/promote-learner.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-promote-learner', + templateUrl: './promote-learner.component.html', + styleUrls: ['./promote-learner.component.scss'] +}) +export class PromoteLearnerComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/school/learners/view-learner/options.ts b/src/app/school/learners/view-learner/options.ts new file mode 100644 index 0000000..2f57a65 --- /dev/null +++ b/src/app/school/learners/view-learner/options.ts @@ -0,0 +1,242 @@ + +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "No Grouping" + }, + { + value: "class", + display_name: "Class" + }, + { + value: "county", + display_name: "County" + }, + { + value: "sub-county", + display_name: "Sub County" + }, + { + value: "school", + display_name: "School" + }, + { + value: "special-need", + display_name: "Special Needs" + }, + { + value: "student-status", + display_name: "Status" + }, + { + value: "gender", + display_name: "Gender" + }, + { + value: "age", + display_name: "Age" + }, + { + value: "month", + display_name: "Month" + }, + { + value: "year", + display_name: "Year" + }, + { + value: "day", + display_name: "Day" + }, + { + value: "dropout-reason", + display_name: "Student Deactivations" + }, + { + value: "knows-dob", + display_name: "Knows Date of Birth" + } + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + "gender": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Gender", + "choices": [ + { + value: "M", + display_name: "Male" + }, + { + value: "F", + display_name: "Female" + } + ] + }, + "base_class": { + "type": "field", + "required": false, + "read_only": false, + "label": "Filter by Class", + "default": "", + "choices": [ + { + value: "1", + display_name: "1" + }, + { + value: "2", + display_name: "2" + }, + { + value: "3", + display_name: "3" + }, + { + value: "4", + display_name: "4" + }, + { + value: "5", + display_name: "5" + }, + { + value: "6", + display_name: "6" + }, + { + value: "7", + display_name: "7" + }, + { + value: "8", + display_name: "8" + }, + + ], + + }, + "school_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "school_sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub County", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "search": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Search ", + "display_name": "name", + "placeholder": "Search county name..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "paginator": { + "type": "field", + "required": false, + "read_only": false, + "label": "Mode", + "default": "pa", + "choices": [ + { "value": "cursor", display_name: "Preview" }, + { "value": "pa", display_name: "Detailed" }, + ] + }, + "school": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by School", + "display_name": "name", + "placeholder": "Search School Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "status": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Filter by Status", + "choices": [ + { + "value": "OOSC", + "display_name": "Out Of School" + }, + { + "value": "NE", + "display_name": "Newly Enrolled" + }, + { + "value": "PE", + "display_name": "Previously Enrolled" + } + ] + }, + + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/school/learners/view-learner/view-learner.component.html b/src/app/school/learners/view-learner/view-learner.component.html new file mode 100644 index 0000000..ea0c4d4 --- /dev/null +++ b/src/app/school/learners/view-learner/view-learner.component.html @@ -0,0 +1,18 @@ +
+
+
+

View Learners

+ + +
+
+
+ + + +
\ No newline at end of file diff --git a/src/app/school/learners/view-learner/view-learner.component.scss b/src/app/school/learners/view-learner/view-learner.component.scss new file mode 100644 index 0000000..94ffc38 --- /dev/null +++ b/src/app/school/learners/view-learner/view-learner.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/school/learners/view-learner/view-learner.component.spec.ts b/src/app/school/learners/view-learner/view-learner.component.spec.ts new file mode 100644 index 0000000..b230196 --- /dev/null +++ b/src/app/school/learners/view-learner/view-learner.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ViewLearnerComponent } from './view-learner.component'; + +describe('ViewLearnerComponent', () => { + let component: ViewLearnerComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ViewLearnerComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ViewLearnerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/learners/view-learner/view-learner.component.ts b/src/app/school/learners/view-learner/view-learner.component.ts new file mode 100644 index 0000000..1c886b4 --- /dev/null +++ b/src/app/school/learners/view-learner/view-learner.component.ts @@ -0,0 +1,91 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from './options'; + +@Component({ + selector: 'app-view-learner', + templateUrl: './view-learner.component.html', + styleUrls: ['./view-learner.component.scss'] +}) +export class ViewLearnerComponent implements OnInit { + + /// MyTable + url = 'api/v1/students/stats/id' + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + enableOrderBy = true + headersOrder = ["full_name", "school_name", "county_name", "sub_county_name", "class", "admission_number", "upi", "gender", "student_status", "date_of_birth"] + formGroupOrder = [ + ['grouping', 'paginator'], + ['school_county', 'school_sub_county', 'gender'], + ['school', 'base_class', 'status'] + ] + fetchingData = false + constructor(private route: Router) { } + + ngOnInit() { + } + + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['../reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + async handleActions(action) { + if (action.name == "Edit") { + const data = action.data; + // data.school = { id: data.school, name: data.school_name } + await this.route.navigate(['../students/add-student'], { state: data }); + } + } + + isLoading(status) { + this.fetchingData = status + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/students/stats/${data.grouping}` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + +} diff --git a/src/app/school/school-attendance/school-attendance.component.html b/src/app/school/school-attendance/school-attendance.component.html new file mode 100755 index 0000000..4c5234b --- /dev/null +++ b/src/app/school/school-attendance/school-attendance.component.html @@ -0,0 +1,92 @@ + + + + + + + + +
+ + + + + + + + + + + + + +
No.School nameEmis Code
{{ i+1 }}. + {{school.name}} + {{ school.emis_code }}
+
+
+ +
+

School Name : {{ school_name }}

+
+
+
+
+ + + {{ 'DAILY_ATTENDANCE' | translate }} + + + + {{ 'ATTENDANCE_DESC' | translate }} + + + + +

{{'No daily attendance found for last 7 days' | translate}}

+
+
+
+
+ + + {{ 'MONTHLY_ATTENDANCE' | translate }} + + + + + + {{ 'ATTENDANCE_DESC' | translate }} + + + + +

{{'No monthly attendance found for last 4 months' | translate}}

+
+
+
+
+ + + {{ 'ANNUAL_ATTENDANCE' | translate }} + + + + {{ 'ATTENDANCE_DESC' | translate }} + + + + +

{{'No yearly attendance found for this year' | translate}}

+
+
+
+
\ No newline at end of file diff --git a/src/app/school/school-attendance/school-attendance.component.scss b/src/app/school/school-attendance/school-attendance.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/school-attendance/school-attendance.component.spec.ts b/src/app/school/school-attendance/school-attendance.component.spec.ts new file mode 100755 index 0000000..fe0bdb5 --- /dev/null +++ b/src/app/school/school-attendance/school-attendance.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { SchoolAttendanceComponent } from './school-attendance.component'; + +describe('SchoolAttendanceComponent', () => { + let component: SchoolAttendanceComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [SchoolAttendanceComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(SchoolAttendanceComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/school-attendance/school-attendance.component.ts b/src/app/school/school-attendance/school-attendance.component.ts new file mode 100755 index 0000000..01fed9c --- /dev/null +++ b/src/app/school/school-attendance/school-attendance.component.ts @@ -0,0 +1,248 @@ +import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute } from '@angular/router'; +import { DashboardService } from 'src/app/dashboard/dashboard.service'; +import moment from 'moment'; +import { Observable } from 'rxjs'; +import { debounceTime, distinctUntilChanged } from 'rxjs/operators'; +import { SchoolService } from '../school.service'; +@Component({ + selector: 'app-school-attendance', + templateUrl: './school-attendance.component.html', + styleUrls: ['./school-attendance.component.scss'] +}) +export class SchoolAttendanceComponent implements OnInit { + att_distribution: any; + att_resolver: boolean; + att_m_distribution: any; + att_m_resolver: boolean; + att_d_distribution: any; + att_d_resolver: boolean; + no_m_attendance: boolean; + no_d_attendance: boolean; + no_y_attendance: boolean; + public bar = 'bar'; + public doughnut = 'doughnut'; + barConfig: any; + doughnutConfig: any; + schoolId: any; + school_name = null; + searchChangeObserver: any; + search_name = ''; + schools: any; + searching_school = false; + pastYears: any = []; + selectedYear: any; + monthStartDate: any; + selectedDate: any; + dailyEndDate: any; + monthlyEndDate: any; + selectedMonth: any; + + constructor(public activatedRoute: ActivatedRoute, public dashboardService: DashboardService, + public schoolService: SchoolService) { + + const currentYear = new Date().getFullYear(); + for (let start = 2019; start <= currentYear; start++) { this.pastYears.push(start); } + } + + ngOnInit() { + + this.selectedYear = new Date().getFullYear(); + this.monthStartDate = moment(moment().subtract(4, 'months')).startOf('month').format('YYYY-MM-DD'); + this.monthlyEndDate = moment().endOf('month').format('YYYY-MM-DD'); + this.selectedMonth = moment().format('YYYY-MM-DD'); + this.selectedDate = moment().subtract(7, 'days').format('YYYY-MM-DD'); + this.dailyEndDate = moment().format('YYYY-MM-DD'); + this.activatedRoute.queryParams + .subscribe(params => { + if (Object.entries(params).length > 1) { + this.schoolId = params.school; + this.school_name = params.school_name; + this.getDailyAttendance(); + this.getMonthlyAttendance(); + this.getYearlyAttendance(); + } else { + this.barConfig = true; + this.doughnutConfig = true; + this.schoolId = true; + // console.log('seeeen') + } + }); + this.chartConfigs(); + } + + selectedYearChange(value) { + this.selectedYear = value; + this.getYearlyAttendance(); + this.getMonthlyAttendance(); + } + + selectedmonthChange(value) { + this.monthStartDate = moment(moment(value).subtract(4, 'months')).startOf('month').format('YYYY-MM-DD'); + this.monthlyEndDate = moment(value).endOf('month').format('YYYY-MM-DD'); + this.selectedMonth = moment(value).format('YYYY-MM-DD'); + this.getMonthlyAttendance(); + } + + selectedDateChange(value) { + this.dailyEndDate = moment(value).format('YYYY-MM-DD'); + this.selectedDate = moment(value).subtract(7, 'days').format('YYYY-MM-DD'); + this.getDailyAttendance(); + } + + getYearlyAttendance() { + const query = `yearly?year=${this.selectedYear}&school=${this.schoolId}`; + + this.dashboardService.getAttendance(query).subscribe(res => { + if (res.results.length < 1) { this.att_resolver = true; return this.no_y_attendance = true; } + const { present_males, absent_males, present_females, absent_females } = res.results[0]; + this.no_y_attendance = false; + this.att_resolver = true; + this.att_distribution = { + data: Array(present_males, absent_males, present_females, absent_females), + labels: ['Boys present', 'Boys Absent', 'Girls present', 'Girls absent'] + }; + }); + } + + getMonthlyAttendance() { + this.no_m_attendance = true; + const query = `monthly?start_date=${this.monthStartDate}&end_date=${this.monthlyEndDate}&school=${this.schoolId}`; + this.dashboardService.getAttendance(query).subscribe(res => { + if (res.results.length < 1) { return this.att_m_resolver = false; } + const labels = []; + const presents = []; + const absents = []; + res.results.map(result => { + labels.push(moment(result.value).format('MMM')); + presents.push(result.present); + absents.push(result.absent); + }); + this.no_m_attendance = false; + this.att_m_distribution = this.distribution(presents, absents, labels, true); + this.att_m_resolver = true; + }); + + } + + getDailyAttendance() { + this.no_d_attendance = true; + const labels = []; + const presents = []; + const absents = []; + const query = `daily?start_date=${this.selectedDate}&end_date=${this.dailyEndDate}&school=${this.schoolId}`; + + this.dashboardService.getAttendance(query).subscribe(res => { + if (res.results.length < 1) { return this.att_d_resolver = true; } + res.results.map(result => { + labels.push(moment(result.value).format('DD-MM-YY')); + presents.push(result.present_males + result.present_females); + absents.push(result.absent_males + result.absent_females); + }); + this.att_d_distribution = this.distribution(presents, absents, labels, false); + this.no_d_attendance = false; + this.att_d_resolver = true; + }); + + } + + distribution(presents, absents, labels, percentage) { + let label_a = ''; let label_b = ''; + if (percentage) { + label_a = '% Present students'; + label_b = '% Absent students'; + } else { + label_a = 'Present students'; + label_b = 'Absent students'; + } + return { + series: { + series_a: presents, + series_b: absents, + labels: { + label_a, + label_b + } + }, + labels + }; + } + chartConfigs() { + // doughnut chart config + this.doughnutConfig = { + colors: ['#2096f3', '#929292', '#F5D908', '#e91d63'] + }; + + // bar chart config + this.barConfig = { + colors: { + colors: [ + { + backgroundColor: 'rgb(32,150,243, 0.7)', + borderColor: 'rgb(32,150,243, 0.7)', + pointBackgroundColor: 'rgb(32,150,243, 0.7)', + pointBorderColor: '#fff', + pointHoverBackgroundColor: '#fff', + pointHoverBorderColor: 'rgb(32,150,243, 0.7)' + }, + { + + backgroundColor: 'rgb(146,146,146,0.6)', + borderColor: 'rgb(146,146,146,0.6)', + pointBackgroundColor: 'rgba(225,10,24,0.2)', + pointBorderColor: '#fff', + pointHoverBackgroundColor: '#fff', + pointHoverBorderColor: 'rgba(225,10,24,0.2)' + } + ], + xColor: 'rgba(0,0,0,0.02)', + xZeroLineColor: 'rgba(0,0,0,0.02)', + yColor: 'rgba(0,0,0,0.02)', + yZeroLineColor: 'rgba(0,0,0,0.02)', + } + }; + } + + search(name) { + if (!name.trim()) { return; } + this.searching_school = true; + this.apiSearchSchool(); + } + + total: number = 0; + pageNumber: number = 1; + + apiSearchSchool() { + this.schoolService.getSchools(this.pageNumber).subscribe(res => { + this.searching_school = false; + res.results.map(school => { + if (school.village === '' || school.village === null) { + school.village = 'None'; + } + return school; + }); + this.schools = res.results.splice(0, 4); + console.log(this.schools); + }); + } + + // updateFilter(event) { + // console.log(event) + // } + + // onSearchChange(searchValue: string) { + // if (!this.searchChangeObserver) { + // Observable.create(observer => { + // this.searchChangeObserver = observer; + // }).pipe(debounceTime(500)) // wait 300ms after the last event before emitting last event + // .pipe(distinctUntilChanged()) // only emit if value is different from previous value + // .subscribe(data => { + // console.log(data); + // }); + // } + // setTimeout(() => { + // this.searchChangeObserver.next(searchValue); + // }, 500); + // } + +} diff --git a/src/app/school/school.module.spec.ts b/src/app/school/school.module.spec.ts new file mode 100755 index 0000000..3dfab4a --- /dev/null +++ b/src/app/school/school.module.spec.ts @@ -0,0 +1,13 @@ +import { SchoolModule } from './school.module'; + +describe('SchoolModule', () => { + let schoolModule: SchoolModule; + + beforeEach(() => { + schoolModule = new SchoolModule(); + }); + + it('should create an instance', () => { + expect(schoolModule).toBeTruthy(); + }); +}); diff --git a/src/app/school/school.module.ts b/src/app/school/school.module.ts new file mode 100755 index 0000000..743bb51 --- /dev/null +++ b/src/app/school/school.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; +import { AddSchoolComponent } from './add-school/add-school.component'; +import { SchoolRoutes } from './school.routing'; +import { SharedModule } from '../shared/shared.module'; +import { ViewSchoolsComponent } from './view-schools/view-schools.component'; +import { SchoolAttendanceComponent } from './school-attendance/school-attendance.component'; +import { AddSchoolMyformComponent } from './add-school-myform/add-school-myform.component'; +import { FileUploadModule } from 'ng2-file-upload'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(SchoolRoutes), + FileUploadModule, + SharedModule, + // MatCardModule, + // MatDatepickerModule, + // MatNativeDateModule + ], + declarations: [ + AddSchoolComponent, ViewSchoolsComponent, SchoolAttendanceComponent, AddSchoolMyformComponent, + ] +}) +export class SchoolModule { } diff --git a/src/app/school/school.routing.ts b/src/app/school/school.routing.ts new file mode 100755 index 0000000..c1362ad --- /dev/null +++ b/src/app/school/school.routing.ts @@ -0,0 +1,29 @@ +import { Routes } from '@angular/router'; +import { ViewSchoolsComponent } from './view-schools/view-schools.component'; +import { SchoolAttendanceComponent } from './school-attendance/school-attendance.component'; +import { AddSchoolMyformComponent } from './add-school-myform/add-school-myform.component'; +// import { SystemUsersComponent } from '../system-users/system-users.component'; + +export const SchoolRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'add-school', + component: AddSchoolMyformComponent + }, + { + path: 'view-schools', + component: ViewSchoolsComponent + }, + { + path: 'schools-attendance', + component: SchoolAttendanceComponent + }, + // { + // path: 'system-users', + // component: SystemUsersComponent + // } + ] + }, +]; diff --git a/src/app/school/school.service.spec.ts b/src/app/school/school.service.spec.ts new file mode 100755 index 0000000..a66c222 --- /dev/null +++ b/src/app/school/school.service.spec.ts @@ -0,0 +1,18 @@ +import { TestBed } from '@angular/core/testing' +import { SchoolService } from './school.service' +import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing' + +describe('SchoolService', () => { + + beforeEach(() => TestBed.configureTestingModule({ + imports: [HttpClientTestingModule], + providers: [SchoolService], + teardown: { destroyAfterEach: false } +})) + + it('should be created', () => { + const service: SchoolService = TestBed.get(SchoolService) + expect(service).toBeTruthy() + }) + +}) diff --git a/src/app/school/school.service.ts b/src/app/school/school.service.ts new file mode 100755 index 0000000..c045e5e --- /dev/null +++ b/src/app/school/school.service.ts @@ -0,0 +1,140 @@ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { environment } from 'src/environments/environment'; +import { Observable } from 'rxjs'; + +const endpoint = environment.APIv1Endpoint; + +@Injectable({ + providedIn: 'root' +}) +export class SchoolService { + + constructor(private http: HttpClient) { } + + getUser() { + // to be removed when @micha implements user check based on token + return JSON.parse(localStorage.getItem('user_profile')); + } + + getSchools(page): Observable { + return this.http.get(endpoint + 'schools/?page_size=100&page=' + page); + } + + getSearchedSchool(page, name) { + return this.http.get(endpoint + 'schools/?page_size=100&page=' + page + '&name=' + name); + } + + getTeachers(page): Observable { + const user = this.getUser(); + const school = user.role === 'A' ? '' : '&school=' + user.school; + return this.http.get(endpoint + 'teachers?page_size=100&page=' + page + school + '&paginator=standard'); + } + + getSearchedTeacher(page, name) { + const user = this.getUser(); + const school = user.role === 'A' ? '' : '&school=' + user.school; + return this.http.get(endpoint + 'teachers/?page_size=100&page=' + page + '&name=' + name + school); + } + + addSchools(data): Observable { + return this.http.post(endpoint + 'schools/', data); + } + + addClass(data): Observable { + return this.http.post(endpoint + 'streams/', data); + } + + addStudent(data): Observable { + return this.http.post(endpoint + 'students/', data); + } + + addTeacher(data): Observable { + return this.http.post(endpoint + 'teachers/', data); + } + + promoteSchool(data, url): Observable { + return this.http.post(endpoint + url + '/', data); + } + + getStudents(page, gender) { + const user = this.getUser(); + const school = user.role === 'A' ? '' : '&school=' + user.school; + if (gender === 'none') { + return this.http.get(`${endpoint}students/?page_size=100&page=${page}&active=true${school}`); + } else if (gender === 'boys') { + return this.http.get(`${endpoint}students/?page_size=100&page=${page}&active=true&gender=M${school}`); + } else if (gender === 'girls') { + return this.http.get(`${endpoint}students/?page_size=100&page=${page}&active=true&gender=F${school}`); + } + } + getSearchedStudent(page, name) { + const user = this.getUser(); + const school = user.role === 'A' ? '' : '&school=' + user.school; + return this.http.get(endpoint + 'students/?page_size=100&page=' + page + '&name=' + name + school); + } + + getDropoutStudents(page) { + return this.http.get(endpoint + 'students/dropouts/?page_size=100&page=' + page); + } + + resetTeacherPassword(data): Observable { + return this.http.put(endpoint + 'users/admin-reset-password/', data); + } + + getClasses(page): Observable { + const user = this.getUser(); + const school = user.role === 'A' ? '' : '&school=' + user.school; + return this.http.get(endpoint + 'streams/?page_size=100&page=' + page + school); + } + + getSearchedClass(page, name): Observable { + const user = this.getUser(); + const school = user.role === 'A' ? '' : '&school=' + user.school; + return this.http.get(endpoint + 'streams/?page_size=100&page=' + page + school + '&name=' + name); + } + + updateStudent(data, id): Observable { + return this.http.put(endpoint + 'students/' + id + '/', data); + } + + moveStudents(data): Observable { + return this.http.put(endpoint + 'students/bulk' + '/', data); + } + + updateTeacher(data, id): Observable { + return this.http.put(endpoint + 'teachers/' + id + '/', data); + } + + updateClass(data, id): Observable { + return this.http.put(endpoint + 'streams/' + id + '/', data); + } + + updateSchool(data, id): Observable { + return this.http.put(endpoint + 'schools/' + id + '/', data); + } + + getSingleItem(name, id) { + return this.http.get(`${endpoint + name}/${id}/`); + } + + getStudentDeleteReasons() { + return this.http.get(`${endpoint}students-delete-reasons/`); + } + + fetchChildAttendance(id, month: any = '') { + return this.http.get(endpoint + 'attendances/yearly/?student=' + id + '&month=' + month); + } + + fetchWeeklyAttendance(id) { + return this.http.get(endpoint + 'attendances/weekly/?student=' + id); + } + + filter(url) { + return this.http.get(`${endpoint + url}`); + } + + delete(url) { + return this.http.delete(`${endpoint + url}`); + } +} diff --git a/src/app/school/students/add-student/add-student.component.html b/src/app/school/students/add-student/add-student.component.html new file mode 100755 index 0000000..da52874 --- /dev/null +++ b/src/app/school/students/add-student/add-student.component.html @@ -0,0 +1,156 @@ +
+ + Add Learner + {{'All fields marked * are required' | translate}} + + +
+ + {{ error }} + +
+
+ +
+
+ + + + {{'First name is required' | translate}} + +
+
+ + + +
+
+
+ +
+
+ + + + {{'Last name is required' | translate}} + +
+
+ + + + {{'Admission number is required' | translate}} + +
+
+
+ + + + +
+
+ + + {{ g.gender | translate }} + + + {{'Gender is required + ' | translate}} +
+
+ + + + + +
+
+
+ + + +
+
+ + + {{ class.base_class | translate + }}{{ class.name | translate }} + + + {{'Class is required + ' | translate}} +
+
+ + + {{ status.name | + translate }} + + +
+
+
+ + +
+
+ + + {{ need.name | translate + }} + + + {{'Special Needs are required + ' | translate}} +
+
+
+ + +
+
+ + + {{ status.name | + translate }} + + +
+
+ + + +
+
+ + +
+ + + + +
+
+ + + + + + \ No newline at end of file diff --git a/src/app/school/students/add-student/add-student.component.scss b/src/app/school/students/add-student/add-student.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/students/add-student/add-student.component.spec.ts b/src/app/school/students/add-student/add-student.component.spec.ts new file mode 100755 index 0000000..52df58c --- /dev/null +++ b/src/app/school/students/add-student/add-student.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddStudentComponent } from './add-student.component'; + +describe('AddStudentComponent', () => { + let component: AddStudentComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddStudentComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddStudentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/students/add-student/add-student.component.ts b/src/app/school/students/add-student/add-student.component.ts new file mode 100755 index 0000000..296d027 --- /dev/null +++ b/src/app/school/students/add-student/add-student.component.ts @@ -0,0 +1,149 @@ +import { Component, OnInit } from '@angular/core'; +import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms'; +import { SchoolService } from '../../school.service'; +import { ConstantsService } from 'src/app/common/services/constants.service'; +import { Router, ActivatedRoute } from '@angular/router'; +import moment from 'moment'; +import { NotificationsService } from 'src/app/shared/notifications/notifications.service'; + +@Component({ + selector: 'app-add-student', + templateUrl: './add-student.component.html', + styleUrls: ['./add-student.component.scss'] +}) +export class AddStudentComponent implements OnInit { + addStudentForm: FormGroup; + classes: any; + loader = false; + sex: any; + specialNeeds: any; + studentStatus: any; + guardianStatus: any; + update = false; + student: any; + error: any = '' + + constructor(private fb: FormBuilder, private schoolService: SchoolService, public router: Router, + public activatedRoute: ActivatedRoute, public notifyService: NotificationsService) { + + this.sex = [{ gender: 'Male', value: 'M' }, { gender: 'Female', value: 'F' }]; + + this.specialNeeds = [{ value: 'N', name: 'None' }, { value: 'V', name: 'Visual Impairements' }, + { value: 'H', name: 'Hearing Impairements' }, { value: 'P', name: 'Physical Disabilities' }, + { value: 'L', name: 'Learning Difficulties' } + ]; + + this.studentStatus = [{ value: 'N', name: 'None' }, { value: 'R', name: 'Refugee' }, + { value: 'A', name: 'Asylum Seekers' }, { value: 'I', name: 'IDPs' }, + ]; + + this.guardianStatus = [{ value: 'N', name: 'None' }, { value: 'S', name: 'Single Parent' }, { value: 'B', name: 'Both Parents' }]; + + this.addStudentForm = this.fb.group({ + first_name: new FormControl('', Validators.required), + middle_name: new FormControl(''), + last_name: new FormControl('', Validators.required), + gender: new FormControl('', Validators.required), + date_of_birth: new FormControl(''), + stream: new FormControl('', Validators.required), + status: new FormControl(''), + guardian_status: new FormControl(''), + special_needs: new FormControl('', Validators.required), + admission_no: new FormControl('', Validators.required), + guardian_phone: new FormControl(''), + }); + } + + ngOnInit() { + this.activatedRoute.queryParams + .subscribe(params => { + if (Object.entries(params).length > 1) { + this.update = true; + this.getStudent(params.student); + } else { + this.update = false; + this.addStudentForm.reset(); + } + }); + this.getClasses(); + } + + onSubmit() { + this.loader = true; + this.addStudentForm.value.date_of_birth = moment(this.addStudentForm.value.date_of_birth).format('YYYY-MM-DD'); + if (!this.update) { + this.addStudentForm.value.date_enrolled = moment().format('YYYY-MM-DD'); + this.createStudent(); + } else { + this.addStudentForm.value.date_enrolled = moment(this.student.date_enrolled).format('YYYY-MM-DD'); + this.updateStudent(); + } + } + + createStudent() { + this.loader = true + this.schoolService.addStudent(this.addStudentForm.value).subscribe(res => { + this.loader = false; + this.student = res; + this.update = true; + this.notifyService.notify('Student has been successfully Created', 'success'); + }, + error => { + this.loader = false; + this.error = error + this.notifyService.notify('An error occured please try again later!', 'error'); + }); + } + + updateStudent() { + this.loader = true + this.schoolService.updateStudent(this.addStudentForm.value, this.student.id).subscribe( + res => { + this.loader = false; + this.student = res; + this.notifyService.notify('Student has been successfully updated', 'success'); + }, + error => { + this.loader = false; + this.error = error + this.notifyService.notify('An error occured please try again later!', 'error'); + }); + } + + addNewStudent() { + this.addStudentForm.reset(); + this.update = false; + } + + getClasses() { + this.schoolService.getClasses(1).subscribe(res => { + if (res.results.length < 1) { + return; + } + this.classes = res.results; + }); + } + + getStudent(id) { + this.schoolService.getSingleItem('students', id).subscribe(res => { + this.student = res; + this.updateForm(res); + }); + } + + updateForm(data) { + this.addStudentForm.setValue({ + first_name: data.first_name, + middle_name: data.middle_name, + last_name: data.last_name, + gender: data.gender, + date_of_birth: data.date_of_birth, + stream: data.stream, + status: data.status, + guardian_status: data.guardian_status, + special_needs: data.special_needs, + admission_no: data.admission_no, + guardian_phone: data.guardian_phone, + }); + } +} diff --git a/src/app/school/students/dropouts/dropouts.component.html b/src/app/school/students/dropouts/dropouts.component.html new file mode 100755 index 0000000..360f9fa --- /dev/null +++ b/src/app/school/students/dropouts/dropouts.component.html @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/src/app/school/students/dropouts/dropouts.component.scss b/src/app/school/students/dropouts/dropouts.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/students/dropouts/dropouts.component.spec.ts b/src/app/school/students/dropouts/dropouts.component.spec.ts new file mode 100755 index 0000000..ca33b35 --- /dev/null +++ b/src/app/school/students/dropouts/dropouts.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { DropoutsComponent } from './dropouts.component'; + +describe('DropoutsComponent', () => { + let component: DropoutsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [DropoutsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(DropoutsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/students/dropouts/dropouts.component.ts b/src/app/school/students/dropouts/dropouts.component.ts new file mode 100755 index 0000000..3f55ec0 --- /dev/null +++ b/src/app/school/students/dropouts/dropouts.component.ts @@ -0,0 +1,81 @@ +import { Component, OnInit } from '@angular/core'; +import { SchoolService } from '../../school.service'; +import { SharedService } from 'src/app/shared/shared.service'; +import * as moment from 'moment' +import { Router } from '@angular/router'; + +@Component({ + selector: 'app-dropouts', + templateUrl: './dropouts.component.html', + styleUrls: ['./dropouts.component.scss'] +}) +export class DropoutsComponent implements OnInit { + currentPage = 'deactivated'; + students: any = []; + temp_students: any; + rows: any; + temp: any; + columns: any; + total = 0; + pageNumber = 0; + pageNumberClicked: any; + loader: boolean = false; + fetchingData = false; + stats_count = 0; + + constructor(private schoolService: SchoolService, private sharedService: SharedService, private route: Router) { } + + ngOnInit() { + // this.getStudents(1); + } + + headers = [ + 'first_name', + 'last_name', + 'admission_no', + 'base_class', + 'school_name', + 'reason_description', + 'description' + ] + + onLengthLoaded(res) { + this.stats_count = res + } + + getStudents(page) { + this.loader = true; + this.schoolService.getDropoutStudents(page).subscribe(res => { + this.rows = res.results.map((student, index) => { + (page > 1) ? student.num = (page * 100) + (index + 1) : student.num = index + 1; + student.full_names = `${student.first_name} ${student.middle_name} ${student.last_name}`; + student.stream_name = `${student.base_class}${student.stream_name}`; + if (!student.gender) { student.gender = '_'; } + return student; + }); + + this.total = res.count; + this.columns = [ + { prop: 'num', name: '#' }, + { prop: 'full_names', name: 'NAME' }, + { prop: 'admission_no', name: 'ADMISSION NUMBER' }, + { prop: 'created', name: 'DEACTIVATION DATE' }, + { prop: 'dropout_reason', name: 'DEACTIVATION REASON' } + ]; + + this.loader = false; + }); + } + + exportTriggerd(event) { + this.route.navigate(['/reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + +} + + + diff --git a/src/app/school/students/dropouts/options.ts b/src/app/school/students/dropouts/options.ts new file mode 100644 index 0000000..b3bfc0f --- /dev/null +++ b/src/app/school/students/dropouts/options.ts @@ -0,0 +1,37 @@ + +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Sub county", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + } + + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/school/students/individual/individual.component.html b/src/app/school/students/individual/individual.component.html new file mode 100755 index 0000000..268b031 --- /dev/null +++ b/src/app/school/students/individual/individual.component.html @@ -0,0 +1,186 @@ +
+
+ + + + + + + + +
+

+ {{student.school_name}}: {{student.admission_no}} - {{student.first_name}} {{student.middle_name}} {{student.last_name}} +

+
+
+
+
+
+
+
+ + +
+
+

{{studentDetails.full_names}}

+

{{ 'INDIVIDUAL.DATE_ENROLLED' | translate }}  {{studentDetails.date_enrolled}}

+
+
+
+
+

{{ percentAttendance }} %

+
{{ 'INDIVIDUAL.ATTENDANCE_RECORD' | translate }}
+
+
+ +
+
+
+
+
+
+

{{ dropoutProbability }} %

+
{{ 'INDIVIDUAL.DROPOUT_PROB_RATE' | translate }}
+
+
+ +
+
+
+
+ +
+
+
+
{{ 'INDIVIDUAL.STATUS' | translate }}   {{ 'INDIVIDUAL.OVERALL_PERCENT_ATTENDANCE' | translate }} +
+ {{presentDays}} {{ 'INDIVIDUAL.PRESENT_DAYS' | translate }} / {{totalDays}} {{ 'INDIVIDUAL.TOTAL_ATTENDANCE_DAYS_TAKEN' | translate }}
{{ 'INDIVIDUAL.PRESENT_ATTENDANCE' | translate + }} +
+
+
+
+
+ +
+
+ {{ 'INDIVIDUAL.SCHOOL' | translate }} +

{{studentDetails.school_name}}

+
+
+ {{ 'INDIVIDUAL.ADMISSION_NO' | translate }} +

{{studentDetails.admission_no}}

+
+
+ {{ 'INDIVIDUAL.CLASS' | translate }} +

{{studentDetails.stream_name}}

+
+
+
+
+ +

{{ 'INDIVIDUAL.META_DATA' | translate }}

+
+
+ + + + {{ 'INDIVIDUAL.META_DATA_INFO.BIO' | translate }} + +
{{ 'INDIVIDUAL.META_DATA_INFO.INFO' | translate }}
+
+
+
+ {{ 'INDIVIDUAL.META_DATA_INFO.DOB' | translate }} + {{studentDetails.date_of_birth}} +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.GENDER' | translate }} + {{ 'INDIVIDUAL.META_DATA_INFO.MALE' | translate }} + {{ 'INDIVIDUAL.META_DATA_INFO.FEMALE' | translate }} +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.TIME_TO_SCHOOL' | translate }} + {{ studentDetails.time_to_school}} +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.MODE_OF_TRANSPORT' | translate }} + {{ studentDetails.mode_of_transport }} +
+
+
+
+ {{ 'INDIVIDUAL.META_DATA_INFO.STAY_WITH' | translate }} + {{ studentDetails.guardian_status}} +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.HOUSEHOLD_NUMBER' | translate }} + {{ studentDetails.household}} +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.MEALS_PER_DAY' | translate }} + {{ studentDetails.meals_per_day}} +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.SPECIAL_NEEDS' | translate }} + {{ studentDetails.special_needs[0]}} + + {{special_needs}} + + +
+
+
+
+
+
+ + {{ 'INDIVIDUAL.META_DATA_INFO.GUARDIAN_INFO' | translate }} + +
{{ 'INDIVIDUAL.META_DATA_INFO.GUARDIAN_CONTACT_DETAILS' | translate }}
+
+
+
+ {{ 'INDIVIDUAL.META_DATA_INFO.GUARDIAN_NAME' | translate }} + {{ studentDetails.guardian_name}} + NS +
+
+ {{ 'INDIVIDUAL.META_DATA_INFO.GUARDIAN_PHONE' | translate }} + {{studentDetails.guardian_phone}} +
+
+
+
+
+ + {{ 'INDIVIDUAL.META_DATA_INFO.ATTENDANCE' | translate }} + +
+ + {{ 'INDIVIDUAL.META_DATA_INFO.NO_RECORD' | translate }} + {{ 'INDIVIDUAL.META_DATA_INFO.ATTENDANCE_RECORD' | translate }} + + + {{ 'INDIVIDUAL.META_DATA_INFO.ATTENDANCE_RECORD' | translate }} + + + + +
+
+
+
+
+
+
\ No newline at end of file diff --git a/src/app/school/students/individual/individual.component.scss b/src/app/school/students/individual/individual.component.scss new file mode 100755 index 0000000..ecabcc3 --- /dev/null +++ b/src/app/school/students/individual/individual.component.scss @@ -0,0 +1,20 @@ +.no-attendance-card { + //large devices + @media only screen and (min-width: 992px) { + margin-left: 160px; + } + @media only screen and (min-width: 1200px) { + margin-left: 160px; + } + + //small devices + @media only screen and (max-width: 600px) { + margin-left: 50px; + margin-top: 40px; + } + //tablets + @media only screen and (min-width: 768px) { + margin-left: 110px; + margin-top: 50px; + } +} \ No newline at end of file diff --git a/src/app/school/students/individual/individual.component.spec.ts b/src/app/school/students/individual/individual.component.spec.ts new file mode 100755 index 0000000..1f94353 --- /dev/null +++ b/src/app/school/students/individual/individual.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { IndividualComponent } from './individual.component'; + +describe('IndividualComponent', () => { + let component: IndividualComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [IndividualComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(IndividualComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/students/individual/individual.component.ts b/src/app/school/students/individual/individual.component.ts new file mode 100755 index 0000000..1b2b84c --- /dev/null +++ b/src/app/school/students/individual/individual.component.ts @@ -0,0 +1,173 @@ +import { Component, OnInit } from '@angular/core'; +import {Router, ActivatedRoute, Params} from '@angular/router'; +import { SchoolService } from '../../school.service'; +import * as moment from 'moment' + +@Component({ + selector: 'app-individual', + templateUrl: './individual.component.html', + styleUrls: ['./individual.component.scss'] +}) +export class IndividualComponent implements OnInit { + + bar: string = 'bar' + studentDetails: any; + percentAttendance: any = 0; + presentDays: any = 0; + totalDays: any = 0; + dropoutProbability: any = 100; + search_name: any + searching_name: any + students: any + searching_student: any + noAttendanceTaken: boolean = false; + searching_school: any + daily_chart: boolean = false; + att_d_resolver: boolean; + att_d_distribution: { series: { series_a: any[]; series_b: any[]; labels: { label_a: string; label_b: string; }; }; labels: any[]; }; + + constructor(private activatedRoute:ActivatedRoute, private router:Router, private schoolService: SchoolService) { } + + ngOnInit() { + this.activatedRoute.queryParams.subscribe(params => { + const studentId = params['student']; + this.studentDetails = JSON.parse(sessionStorage.getItem('studentDetails')); + + this.childAttendance(studentId); + this.dailyChildAttendance(studentId); + + }); + } + + + childAttendance(id){ + this.schoolService.fetchChildAttendance(id).subscribe( + (data) => + { + if ( data.results.length > 0 ) { + this.presentDays=data.results[0]["present"] + this.totalDays=data.results[0]["total"] + if(this.presentDays !=0 && this.totalDays !=0){ + let per=Math.round(this.presentDays/this.totalDays*100) + this.percentAttendance=per + this.dropoutProbability = 100-per + + } + } else { + this.noAttendanceTaken = true; + this.presentDays=0; + this.totalDays=0; + } + + }); + } + + search(name) { + if (!name.trim()) { return; } + this.searching_student = true; + this.apiSearchStudent(1, name); + } + + apiSearchStudent(pageNumber, name) { + this.schoolService.getSearchedStudent(pageNumber, name).subscribe(res => { + this.searching_student = false; + res.results.map((student)=> { + if (student.middle_name === null) { + student.full_names = `${student.first_name} ${student.last_name}`; + } else { + student.full_names = `${student.first_name} ${student.middle_name} ${student.last_name}`; + } + + }) + this.students = res.results.splice(0, 4); + }); + } + + + changeStudentDetails(data) { + sessionStorage.setItem('studentDetails', JSON.stringify(data)); + this.router.navigate(['students/details'], { + queryParams: { + student: data.id + } + }); + this.students = []; + this.search_name = ''; + } + + dailyChildAttendance(id){ + + let month = moment().month() + + this.schoolService.fetchChildAttendance(id, month).subscribe( + res => { + + let labels = [] + let presents = [] + let absents = [] + + if(res.results.length){ + this.daily_chart = true + } else { + this.daily_chart = false + } + + for (let i in res.results) { + labels.push(moment(res.results[i].value).format('DD-MM-YY')) + presents.push(res.results[i].present_males + res.results[i].present_females) + absents.push(res.results[i].absent_males + res.results[i].absent_females) + } + + this.att_d_distribution = { + series: { + series_a: presents, + series_b: absents, + labels: { + label_a: 'Presents', + label_b: 'Absents' + } + }, + labels: labels + } + + this.att_d_resolver = true + + }, error => { + + }) + + } + + ngOnDestroy() { + sessionStorage.removeItem('studentDetails'); + } + + bar_configs = { + colors: { + colors: [ + { + backgroundColor: 'rgb(32,150,243, 0.7)', + borderColor: 'rgb(32,150,243, 0.7)', + pointBackgroundColor: 'rgb(32,150,243, 0.7)', + pointBorderColor: '#fff', + pointHoverBackgroundColor: '#fff', + pointHoverBorderColor: 'rgb(32,150,243, 0.7)' + }, + { + + backgroundColor: 'rgb(146,146,146,0.6)', + borderColor: 'rgb(146,146,146,0.6)', + pointBackgroundColor: 'rgba(225,10,24,0.2)', + pointBorderColor: '#fff', + pointHoverBackgroundColor: '#fff', + pointHoverBorderColor: 'rgba(225,10,24,0.2)' + } + ], + xColor: 'rgba(0,0,0,0.02)', + xZeroLineColor: 'rgba(0,0,0,0.02)', + yColor: 'rgba(0,0,0,0.02)', + yZeroLineColor: 'rgba(0,0,0,0.02)', + } + } + +} \ No newline at end of file diff --git a/src/app/school/students/move-students/move-students.component.html b/src/app/school/students/move-students/move-students.component.html new file mode 100755 index 0000000..bf513c0 --- /dev/null +++ b/src/app/school/students/move-students/move-students.component.html @@ -0,0 +1,57 @@ +
+ + Move Students + +
+ + {{ error }} + +
+
+ Select class to move children from + +
+
+ + + {{class.base_class }}{{ class.name }} + + + From Class + is required + +
+
+ + + {{class.base_class}} {{ class.name }} + + + + To class + is required + +
+
+
+
+ +
+ + Select All + +
+ + + {{ i+1 }}. {{ student.first_name | titlecase }} {{ student.first_name | titlecase }} {{ student.first_name | titlecase }} + + +
+ + + + + +
\ No newline at end of file diff --git a/src/app/school/students/move-students/move-students.component.scss b/src/app/school/students/move-students/move-students.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/students/move-students/move-students.component.spec.ts b/src/app/school/students/move-students/move-students.component.spec.ts new file mode 100755 index 0000000..d4954f9 --- /dev/null +++ b/src/app/school/students/move-students/move-students.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { MoveStudentsComponent } from './move-students.component'; + +describe('MoveStudentsComponent', () => { + let component: MoveStudentsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [MoveStudentsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(MoveStudentsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/students/move-students/move-students.component.ts b/src/app/school/students/move-students/move-students.component.ts new file mode 100755 index 0000000..3325ff9 --- /dev/null +++ b/src/app/school/students/move-students/move-students.component.ts @@ -0,0 +1,104 @@ +import { Component, OnInit } from '@angular/core'; +import { SchoolService } from '../../school.service'; +import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms'; +import { NotificationsService } from 'src/app/shared/notifications/notifications.service'; + +@Component({ + selector: 'app-move-students', + templateUrl: './move-students.component.html', + styleUrls: ['./move-students.component.scss'] +}) +export class MoveStudentsComponent implements OnInit { + public MoveStudentsform: FormGroup; + classes: any; + to: any; + from: any; + currentFromClass: any; + hideTo = true; + allStudents: any; + markAll = false; + error: any = '' + + constructor(private fb: FormBuilder, public schoolService: SchoolService, public notifyService: NotificationsService) { + this.MoveStudentsform = this.fb.group({ + to: new FormControl('', Validators.required), + from: new FormControl('', Validators.required), + students: new FormControl('', Validators.required), + }); + + this.MoveStudentsform.get('from').valueChanges.subscribe(currentClass => { + if (currentClass !== this.currentFromClass) { + this.allStudents = []; + this.currentFromClass = currentClass; + this.getClassStudents(currentClass); + this.MoveStudentsform.get('to').setValue(''); + this.hideTo = true; + } + }); + } + + ngOnInit() { + this.getClasses(); + } + + onSubmit() { + if (this.MoveStudentsform.value.to === this.MoveStudentsform.value.from) { + this.MoveStudentsform.get('to').setValue(''); + return this.notifyService.notify('Can not move students to the same class', 'error'); + } + const data = this.MoveStudentsform.value.students.map(student => { + student.stream = this.MoveStudentsform.value.to; + return student; + }); + this.schoolService.moveStudents(data).subscribe(res => { + this.allStudents = this.allStudents.filter(student => !this.MoveStudentsform.value.students.includes(student)); + if (this.markAll) { this.markAll = false; } + this.notifyService.notify('Students successfully moved', 'success'); + }, + error => { + this.error = error + this.notifyService.notify('An error occure please try again later!', 'error'); + }); + } + + selectAll() { + if (this.markAll) { + this.markAll = false; + this.MoveStudentsform.get('students').setValue(''); + } else { + this.markAll = true; + this.MoveStudentsform.get('students').setValue([...this.allStudents]); + } + } + + singleStudent() { + if (this.allStudents.length === this.MoveStudentsform.value.students.length) { + this.markAll = true; + } else { + this.markAll = false; + } + } + + getClasses() { + this.schoolService.getClasses(1).subscribe(res => { + if (res.results.length < 1) { console.log('no classes'); return; } + this.classes = res.results.sort((a, b) => (a.base_class > b.base_class) ? 1 : -1);; + }); + } + + getClassStudents(id) { + const url = `students?stream=${id}&active=true`; + this.schoolService.filter(url).subscribe(res => { + if (res.results.length < 1) { + return this.notifyService.notify('This class has no students', 'info'); + } + this.hideTo = false; + this.allStudents = res.results; + this.markAll = false; + }, + error => { + console.log(error); + }); + } + +} diff --git a/src/app/school/students/promote-students/promote-students.component.html b/src/app/school/students/promote-students/promote-students.component.html new file mode 100755 index 0000000..35cf786 --- /dev/null +++ b/src/app/school/students/promote-students/promote-students.component.html @@ -0,0 +1,36 @@ + + Promote Students + Select classes to promote + +
+ + {{ error }} + +
+
+ + + {{stream.base_class}} {{stream.name}} + + + + +
+ + + + + + + + + \ No newline at end of file diff --git a/src/app/school/students/promote-students/promote-students.component.scss b/src/app/school/students/promote-students/promote-students.component.scss new file mode 100755 index 0000000..04603c1 --- /dev/null +++ b/src/app/school/students/promote-students/promote-students.component.scss @@ -0,0 +1,9 @@ +.radio-group { + display: flex; + flex-direction: column; + margin: 15px 0; +} + +.radio-button { + margin: 5px; +} \ No newline at end of file diff --git a/src/app/school/students/promote-students/promote-students.component.spec.ts b/src/app/school/students/promote-students/promote-students.component.spec.ts new file mode 100755 index 0000000..bcc0315 --- /dev/null +++ b/src/app/school/students/promote-students/promote-students.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { PromoteStudentsComponent } from './promote-students.component'; + +describe('PromoteStudentsComponent', () => { + let component: PromoteStudentsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [PromoteStudentsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(PromoteStudentsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/students/promote-students/promote-students.component.ts b/src/app/school/students/promote-students/promote-students.component.ts new file mode 100755 index 0000000..72258b7 --- /dev/null +++ b/src/app/school/students/promote-students/promote-students.component.ts @@ -0,0 +1,164 @@ +import { Component, OnInit, Inject } from '@angular/core' +import { SchoolService } from '../../school.service' +import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog' +import { NotificationsService } from 'src/app/shared/notifications/notifications.service' + +export interface DialogData { + classes: any + selected_id: any + streams: any + from_class: any; +} + +@Component({ + selector: 'app-promote-students', + templateUrl: './promote-students.component.html', + styleUrls: ['./promote-students.component.scss'] +}) +export class PromoteStudentsComponent implements OnInit { + streams: any + promotionData = [] + streamsToPromote: any + showPromotionBtn = true + promotionId: any + completePromotion = false + unDoPromotion = false + school: any + user: any; + error: any = '' + + constructor(public schoolService: SchoolService, public dialog: MatDialog, public notifyService: NotificationsService, ) { } + + ngOnInit() { + this.user = JSON.parse(localStorage.getItem('user_profile')); + this.getStreams(); + this.apiCheckPromotionStatus(); + } + + getStreams() { + this.schoolService.getClasses(1).subscribe(res => { + this.streams = res.results.sort((a, b) => (a.base_class > b.base_class) ? 1 : -1); + this.streamsToPromote = this.streams.filter(stream => Number(stream.base_class) < 8); + }, + error => { + // console.log(error); + }); + } + + promoteDialog(stream, i): void { + const from = `${stream.base_class}${stream.name}`; + const nextStream = this.streams.filter(dt => Number(dt.base_class) === Number(stream.base_class) + 1); + if (nextStream.length < 1) { return this.notifyService.notify(`Please create class ${Number(stream.base_class) + 1} first`, 'error'); } + const dialogRef = this.dialog.open(PromoteToDialogComponent, { + width: '250px', + data: { streams: nextStream, selected_id: stream.promote_to_id, from_class: from } + }); + + dialogRef.afterClosed().subscribe(res => { + if (res) { + const promoteTo = this.streams.filter(str => str.id == res)[0] + this.streamsToPromote[i].promote_to = `${promoteTo.base_class}${promoteTo.name}` + this.streamsToPromote[i].promote_to_id = res + let streamPromoted = false + this.promotionData.map(data => { + if (data.prev_class == stream.id) { + streamPromoted = true + data.next_class = res + } + return data + }) + if (!streamPromoted) { this.promotionData.push({ prev_class: stream.id, next_class: res }) } + this.showPromotionBtn = !(this.promotionData.length === this.streamsToPromote.length) + } + }) + } + + promoteSchoool() { + if (this.completePromotion) { return this.apiCompletePromotion() } + const dataToSend = { + stream_promotions: this.promotionData, + school: this.user.school, + year: new Date().getFullYear() + 1 + } + this.schoolService.promoteSchool(dataToSend, 'promotions').subscribe(res => { + this.promotionId = res.id + this.completePromotion = true + this.apiCompletePromotion() + }, + error => { + this.error = error + + if (error === 'Promotions already done for this school.') { + return this.notifyService.notify('A class can only be promoted once a year', 'error'); + + } else { + this.notifyService.notify('An error occured please try again later!', 'error'); + + } + }); + } + + apiCompletePromotion() { + const data = { action: 'complete' } + const url = `promotions/${this.promotionId}/complete` + this.schoolService.promoteSchool(data, url).subscribe(res => { + this.completePromotion = false + this.unDoPromotion = true + this.notifyService.notify('Promotion completed successfully!', 'success') + }, + error => { + this.completePromotion = true + this.notifyService.notify('An error occured please try again later!', 'error') + }) + } + + reversePromotion() { + const data = { action: 'undo' } + const url = `promotions/${this.promotionId}/complete` + this.schoolService.promoteSchool(data, url).subscribe(res => { + this.unDoPromotion = false + this.completePromotion = false + this.notifyService.notify('Promotion reversed successfully!', 'success') + }, + error => { + this.notifyService.notify('An error occured please try again later!', 'error'); + }); + } + + apiCheckPromotionStatus() { + const year = new Date().getFullYear() + 1; + const url = `promotions/?school=${this.user.school}&year=${year}`; + this.schoolService.filter(url).subscribe(res => { + if (res.results[0] === undefined) { return; } + if (res.results[0].stream_promotions) { + res.results[0].stream_promotions[0].completed ? this.unDoPromotion = true : this.completePromotion = true; + this.showPromotionBtn = !this.completePromotion; + this.promotionId = res.results[0].id; + } + }, + error => { + console.log(error) + }) + } + +} + +// promote to popup +@Component({ + selector: 'app-promote-to', + templateUrl: './promote-to-dialog.component.html', + styleUrls: ['./promote-students.component.scss'] +}) +export class PromoteToDialogComponent { + selectedId: any + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: DialogData) { + this.selectedId = data.selected_id + } + + onNoClick(): void { + this.dialogRef.close() + } + +} diff --git a/src/app/school/students/promote-students/promote-to-dialog.component.html b/src/app/school/students/promote-students/promote-to-dialog.component.html new file mode 100755 index 0000000..892701c --- /dev/null +++ b/src/app/school/students/promote-students/promote-to-dialog.component.html @@ -0,0 +1,14 @@ +
+

Promote Class {{ data.from_class }} to:

+
+
+ + + {{stream.base_class}} {{stream.name}} + + +
+
+ + +
\ No newline at end of file diff --git a/src/app/school/students/students.component.html b/src/app/school/students/students.component.html new file mode 100755 index 0000000..c940663 --- /dev/null +++ b/src/app/school/students/students.component.html @@ -0,0 +1,7 @@ + + {{ searching ? 'Searching...' : 'Search' }} + +
+ +
\ No newline at end of file diff --git a/src/app/school/students/students.component.scss b/src/app/school/students/students.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/school/students/students.component.spec.ts b/src/app/school/students/students.component.spec.ts new file mode 100755 index 0000000..2fefa4c --- /dev/null +++ b/src/app/school/students/students.component.spec.ts @@ -0,0 +1,31 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { StudentsComponent } from './students.component'; + +describe('StudentsComponent', () => { + let component: StudentsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [StudentsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents() + .then(() => { + fixture = TestBed.createComponent(StudentsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + })); + + // beforeEach(() => { + // fixture = TestBed.createComponent(StudentsComponent); + // component = fixture.componentInstance; + // fixture.detectChanges(); + // }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/students/students.component.ts b/src/app/school/students/students.component.ts new file mode 100755 index 0000000..979e5af --- /dev/null +++ b/src/app/school/students/students.component.ts @@ -0,0 +1,120 @@ +import { Component, OnInit } from '@angular/core'; +import { SchoolService } from '../school.service'; +import { SharedService } from 'src/app/shared/shared.service'; +import { ActivatedRoute } from '@angular/router'; + +@Component({ + selector: 'app-students', + templateUrl: './students.component.html', + styleUrls: ['./students.component.scss'] +}) +export class StudentsComponent implements OnInit { + currentPage = 'student'; + students: any = []; + temp_students: any; + rows: any; + temp: any; + columns: any; + total = 0; + pageNumber = 0; + params: any; + searching: any; + loader: any = false; + + constructor(private schoolService: SchoolService, + private sharedService: SharedService, + public activatedRoute: ActivatedRoute) { } + + ngOnInit() { + + this.activatedRoute.queryParams + .subscribe(params => { + // console.log( params['type'], 'here in student component') + this.params = params['type']; + if (params['type'] !== undefined) { + this.getStudents(1, params['type']); + } else { + this.getStudents(1, 'none'); + } + }); + } + + getStudents(page, gender) { + // this.loader = true; + this.schoolService.getStudents(page, gender).subscribe( res => { + this.rows = res.results.map((student, index) => { + this.loader = true; + (page > 1) ? student.num = (page * 100) + (index + 1) : student.num = index + 1; + student.full_names = `${student.first_name} ${student.middle_name} ${student.last_name}`; + student.stream_name = `${student.base_class}${student.stream_name}`; + if (!student.gender) { student.gender = '_'; } + + this.loader = false; + return student; + }); + + this.columns = [ + { name: '#' , prop: 'num' }, + { name: 'NAME', prop: 'full_names' }, + { name: 'ADMISSION NUMBER' , prop: 'student_id' }, + { name: 'GENDER', prop: 'gender' }, + { name: 'SCHOOL', prop: 'school_name' }, + { name: 'CLASS', prop: 'stream_name' }, + { name: 'DATE ENROLLED' , prop: 'date_enrolled' } + ]; + + this.total = res.count; + }); + } + + pageNumberClicked(page) { + if (this.params !== undefined) { + this.getStudents(page.offset + 1, this.params); + } else { + this.getStudents(page.offset + 1, 'none'); + } + + } + + searchStudent(name) { + this.searching = true; + this.loader = true; + + this.schoolService.getSearchedStudent(1, name).subscribe(res => { + this.rows = res.results.map((student, index) => { + (1 > 1) ? student.num = (1 * 100) + (index + 1) : student.num = index + 1; + student.full_names = `${student.first_name} ${student.middle_name} ${student.last_name}`; + student.stream_name = `${student.base_class}${student.stream_name}`; + if (!student.gender) { student.gender = '_'; } + return student; + }); + this.columns = [ + { prop: 'num', name: '#' }, + { prop: 'full_names', name: 'NAME' }, + { prop: 'admission_no', name: 'ADMISSION NUMBER' }, + { name: 'GENDER', prop: 'gender' }, + { name: 'SCHOOL', prop: 'school_name' }, + { name: 'STREAM', prop: 'stream_name' }, + { prop: 'date_enrolled', name: 'DATE ENROLLED' } + ]; + + this.total = res.count; + this.loader = false; + + }); + this.searching = false; + + + } + + defaultValues(name) { + if ( name ) { + if (this.params !== undefined) { + this.getStudents(1, this.params); + } else { + this.getStudents(1, 'none'); + } + } + } +} + diff --git a/src/app/school/students/students.module.ts b/src/app/school/students/students.module.ts new file mode 100755 index 0000000..1f6860a --- /dev/null +++ b/src/app/school/students/students.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; +import { StudentsComponent } from './students.component'; +import { SharedModule } from '../../shared/shared.module'; +import { StudentsRoutes } from './students.routing'; +import { DropoutsComponent } from './dropouts/dropouts.component'; +import { AddStudentComponent } from './add-student/add-student.component'; +import { IndividualComponent } from './individual/individual.component'; +import { MoveStudentsComponent } from './move-students/move-students.component'; +import { PromoteStudentsComponent, PromoteToDialogComponent } from './promote-students/promote-students.component'; +import { FileUploadModule } from 'ng2-file-upload'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(StudentsRoutes), + FileUploadModule, + SharedModule, + // MatDatepickerModule, + // MatNativeDateModule, + // MatListModule, + // MatDialogModule, + ], + declarations: [ + ], + entryComponents: [PromoteToDialogComponent], +}) +export class StudentsModule { } diff --git a/src/app/school/students/students.routing.ts b/src/app/school/students/students.routing.ts new file mode 100755 index 0000000..eda7930 --- /dev/null +++ b/src/app/school/students/students.routing.ts @@ -0,0 +1,43 @@ +import { Routes } from '@angular/router'; +import { StudentsComponent } from './students.component'; +import { DropoutsComponent } from './dropouts/dropouts.component'; +import { AddStudentComponent } from './add-student/add-student.component'; +import { IndividualComponent } from './individual/individual.component'; +import { MoveStudentsComponent } from './move-students/move-students.component'; +import { PromoteStudentsComponent } from './promote-students/promote-students.component'; +import { NotAdminGuard } from 'src/app/core/guards/auth.guard'; + +export const StudentsRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'view-students', + component: StudentsComponent + }, + { + path: 'view-students/deactivated', + component: DropoutsComponent + }, + { + path: 'add-student', + component: AddStudentComponent, + canActivate: [NotAdminGuard] + }, + { + path: 'details', + component: IndividualComponent + }, + { + path: 'move-students', + component: MoveStudentsComponent, + canActivate: [NotAdminGuard] + }, + { + path: 'promote-students', + component: PromoteStudentsComponent, + canActivate: [NotAdminGuard] + } + ] + } +]; diff --git a/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.html b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.html new file mode 100644 index 0000000..d8b9457 --- /dev/null +++ b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.html @@ -0,0 +1,10 @@ +
+ +

Add Teacher

+ + + + +
\ No newline at end of file diff --git a/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.scss b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.scss new file mode 100644 index 0000000..a6d5a20 --- /dev/null +++ b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.scss @@ -0,0 +1,11 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} diff --git a/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.spec.ts b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.spec.ts new file mode 100644 index 0000000..e9e702d --- /dev/null +++ b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddTeacherMyformComponent } from './add-teacher-myform.component'; + +describe('AddTeacherMyformComponent', () => { + let component: AddTeacherMyformComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddTeacherMyformComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddTeacherMyformComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.ts b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.ts new file mode 100644 index 0000000..86945d1 --- /dev/null +++ b/src/app/school/teachers/add-teacher-myform/add-teacher-myform.component.ts @@ -0,0 +1,54 @@ +import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute, Router } from '@angular/router'; +import { ConstantsService } from 'src/app/common/services/constants.service'; +import { options } from './option'; + +@Component({ + selector: 'app-add-teacher-myform', + templateUrl: './add-teacher-myform.component.html', + styleUrls: ['./add-teacher-myform.component.scss'] +}) +export class AddTeacherMyformComponent implements OnInit { + formItems: any = options; + url: string = "api/v1/teachers/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ['school'], + ['first_name', 'middle_name', 'last_name'], + ['phone', 'email'], + ['type', 'tsc_no',], + ['streams', 'is_school_admin'] + ] + instance: any; + + constructor(private route: ActivatedRoute, private router: Router, public commonService: ConstantsService) { + this.route.queryParams.subscribe(params => { + if (this.router.getCurrentNavigation().extras.state) { + const instance = this.router.getCurrentNavigation().extras.state; + if (instance.hasOwnProperty("id")) { + this.instance = instance + } + } + }) + } + + ngOnInit() { + } + + + + preSendData(data) { + data["HsPresave"] = true + return data + } + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(data) { + // Do something + } + +} diff --git a/src/app/school/teachers/add-teacher-myform/option.ts b/src/app/school/teachers/add-teacher-myform/option.ts new file mode 100644 index 0000000..3ce9047 --- /dev/null +++ b/src/app/school/teachers/add-teacher-myform/option.ts @@ -0,0 +1,246 @@ +const options = { + "name": "List Create Teachers Dynamics Api", + "description": "Group statistics by:\n`type` = id, sub-county, county", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "school_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "School name" + }, + "username": { + "type": "string", + "required": false, + "read_only": true, + "label": "Username" + }, + "gender_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "Gender name" + }, + "gender": { + "type": "string", + "required": false, + "read_only": true, + "label": "Gender" + }, + "role": { + "type": "string", + "required": false, + "read_only": true, + "label": "Role" + }, + "role_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "Role name" + }, + "created": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Created" + }, + "modified": { + "type": "datetime", + "required": false, + "read_only": true, + "label": "Modified" + }, + "first_name": { + "type": "string", + "required": true, + "read_only": false, + "label": "First name", + "max_length": 45 + }, + "middle_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Middle name", + "max_length": 45 + }, + "last_name": { + "type": "string", + "required": true, + "read_only": false, + "label": "Last name", + "max_length": 45 + }, + "date_started_teaching": { + "type": "date", + "required": false, + "read_only": false, + "label": "Date started teaching" + }, + "joined_current_school": { + "type": "date", + "required": false, + "read_only": false, + "label": "Joined current school" + }, + "is_non_delete": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Is non delete" + }, + "active": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Active" + }, + "type": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Teacher Type", + "choices": [ + { + "value": "TSC", + "display_name": "TSC" + }, + { + "value": "BRD", + "display_name": "BOM" + } + ] + }, + "tsc_no": { + "type": "string", + "required": false, + "read_only": false, + "label": "Tsc no", + "max_length": 45 + }, + "phone": { + "type": "string", + "required": true, + "read_only": false, + "label": "Phone Number", + "max_length": 20 + }, + "qualifications": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Qualifications", + "choices": [ + { + "value": "NS", + "display_name": "Not Set" + }, + { + "value": "UNI", + "display_name": "UNIVERSITY" + }, + { + "value": "COL", + "display_name": "COLLEGE" + } + ] + }, + "is_school_admin": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Is school admin" + }, + "email": { + "type": "email", + "required": true, + "read_only": false, + "label": "Email Address ( Used to receive account password )", + "max_length": 100 + }, + "marital_status": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Marital status", + "choices": [ + { + "value": "NS", + "display_name": "Not Set" + }, + { + "value": "S", + "display_name": "Single" + }, + { + "value": "M", + "display_name": "Married" + }, + { + "value": "D", + "display_name": "Divorced" + } + ] + }, + "dob": { + "type": "date", + "required": false, + "read_only": false, + "label": "Date of Birth" + }, + "moe_id": { + "type": "string", + "required": false, + "read_only": false, + "label": "Moe id", + "max_length": 50 + }, + "user": { + "type": "field", + "required": false, + "read_only": false, + "label": "User" + }, + "school": { + "type": "multifield", + "required": true, + "read_only": false, + "label": "Assign School", + "display_name": "name", + "placeholder": "Search school name..", + "value_field": "id", + "edit_source_field": "items_details", + "url": `api/v1/schools/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "item_config" + }, + "streams": { + "type": "field", + "required": false, + "read_only": false, + "label": "Streams" + } + } + } +} + +export { + options +} \ No newline at end of file diff --git a/src/app/school/teachers/options.ts b/src/app/school/teachers/options.ts new file mode 100644 index 0000000..3b9c162 --- /dev/null +++ b/src/app/school/teachers/options.ts @@ -0,0 +1,37 @@ + +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Sub county", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + } + + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/school/teachers/reset-password/reset-options.ts b/src/app/school/teachers/reset-password/reset-options.ts new file mode 100644 index 0000000..4ef3bf4 --- /dev/null +++ b/src/app/school/teachers/reset-password/reset-options.ts @@ -0,0 +1,42 @@ +const options = { + "name": "Reset Teacher Password", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "username": { + "type": "string", + "required": false, + "read_only": false, + "label": "School Nemis Code / Teacher's Phone Number", + "max_length": 150 + }, + "new_password": { + "type": "string", + "required": false, + "obscure": true, + "read_only": false, + "label": "New Password", + "max_length": 150 + }, + } + } +} + +export { + options +} \ No newline at end of file diff --git a/src/app/school/teachers/reset-password/reset-password.component.html b/src/app/school/teachers/reset-password/reset-password.component.html new file mode 100755 index 0000000..cf12607 --- /dev/null +++ b/src/app/school/teachers/reset-password/reset-password.component.html @@ -0,0 +1,11 @@ +
+ +

Reset Teacher Password

+ + + + +
\ No newline at end of file diff --git a/src/app/school/teachers/reset-password/reset-password.component.scss b/src/app/school/teachers/reset-password/reset-password.component.scss new file mode 100755 index 0000000..a6d5a20 --- /dev/null +++ b/src/app/school/teachers/reset-password/reset-password.component.scss @@ -0,0 +1,11 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} diff --git a/src/app/school/teachers/reset-password/reset-password.component.spec.ts b/src/app/school/teachers/reset-password/reset-password.component.spec.ts new file mode 100755 index 0000000..1d2fd47 --- /dev/null +++ b/src/app/school/teachers/reset-password/reset-password.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ResetPasswordComponent } from './reset-password.component'; + +describe('ResetPasswordComponent', () => { + let component: ResetPasswordComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ResetPasswordComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ResetPasswordComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/teachers/reset-password/reset-password.component.ts b/src/app/school/teachers/reset-password/reset-password.component.ts new file mode 100755 index 0000000..7577e6d --- /dev/null +++ b/src/app/school/teachers/reset-password/reset-password.component.ts @@ -0,0 +1,33 @@ +import { Component, OnInit } from '@angular/core' +import { options } from './reset-options' +@Component({ + selector: 'app-reset-password', + templateUrl: './reset-password.component.html', + styleUrls: ['./reset-password.component.scss'] +}) +export class ResetPasswordComponent implements OnInit { + + formItems: any = options; + url: string = "api/v1/users/admin-reset-password/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ["username"], + ["new_password"], + ] + + + ngOnInit() { + } + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(data) { + // TODO + console.log(data) + } + + +} diff --git a/src/app/school/teachers/teachers.component.html b/src/app/school/teachers/teachers.component.html new file mode 100755 index 0000000..bb037ee --- /dev/null +++ b/src/app/school/teachers/teachers.component.html @@ -0,0 +1,18 @@ +
+
+
+

View Teachers

+ + +
+
+
+ + + +
\ No newline at end of file diff --git a/src/app/school/teachers/teachers.component.scss b/src/app/school/teachers/teachers.component.scss new file mode 100755 index 0000000..94ffc38 --- /dev/null +++ b/src/app/school/teachers/teachers.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/school/teachers/teachers.component.spec.ts b/src/app/school/teachers/teachers.component.spec.ts new file mode 100755 index 0000000..456bd7c --- /dev/null +++ b/src/app/school/teachers/teachers.component.spec.ts @@ -0,0 +1,31 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { TeachersComponent } from './teachers.component'; + +describe('TeachersComponent', () => { + let component: TeachersComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [TeachersComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents() + .then(() => { + fixture = TestBed.createComponent(TeachersComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + })); + + // beforeEach(() => { + // fixture = TestBed.createComponent(TeachersComponent); + // component = fixture.componentInstance; + // fixture.detectChanges(); + // }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/teachers/teachers.component.ts b/src/app/school/teachers/teachers.component.ts new file mode 100755 index 0000000..99bf154 --- /dev/null +++ b/src/app/school/teachers/teachers.component.ts @@ -0,0 +1,164 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { SchoolService } from '../school.service'; +import { filterOptions } from './options'; + +@Component({ + selector: 'app-teachers', + templateUrl: './teachers.component.html', + styleUrls: ['./teachers.component.scss'] +}) +export class TeachersComponent implements OnInit { + + /// MyTable + url = 'api/v1/teachers' + + headers = [ + 'full_name', + 'username', + 'school_name', + 'tsc_number' + ] + + // Myform + formItems: any = filterOptions + extra_fields: any + stats_count = 0 + args = {} + enableOrderBy = true + formGroupOrder = [ + ['sub_county'], + ] + fetchingData = false + + constructor(private schoolService: SchoolService, private route: Router) { } + currentPage = 'Teacher'; + schools: any; + rows = []; + temp = []; + total = 0; + pageNumber = 0; + searching: any; + loader: any = false; + + ngOnInit() { + this.getTeachers(1); + } + + getTeachers(page) { + this.loader = true; + this.schoolService.getTeachers(page).subscribe(res => { + res.results.map((teacher, index) => { + + (page > 1) ? teacher.num = (page * 100) + (index + 1) : teacher.num = index + 1; + + if (teacher.middle_name === null) { + teacher.name = teacher.full_name //`${teacher.first_name[0].toUpperCase() + teacher.first_name.slice(1)} ${teacher.last_name[0].toUpperCase() + teacher.last_name.slice(1)}`; + } else { + teacher.name = teacher.full_name //`${teacher.first_name[0].toUpperCase() + teacher.first_name.slice(1)} ${teacher.middle_name[0].toUpperCase() + teacher.middle_name.slice(1)} ${teacher.last_name[0].toUpperCase() + teacher.last_name.slice(1)}`; + } + return teacher; + }); + this.temp = [...res['results']]; + this.rows = res['results']; + this.total = res.count; + this.loader = false; + }); + + } + + pageNumberClicked(page) { + this.getTeachers(page.offset + 1); + } + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['../reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + async handleActions(action) { + if (action.name == "Edit") { + const data = action.data; + data.school = { id: data.school, name: data.school_name } + await this.route.navigate(['../teachers/add-teachers'], { state: data }); + } + } + + isLoading(status) { + this.fetchingData = status + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/teachers` + parsedFilters['paginator'] = 'cursor' + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + + searchTeacher(name) { + this.searching = true; + this.loader = true; + let page = 1; + + this.schoolService.getSearchedTeacher(page, name).subscribe(res => { + res.results.map((teacher, index) => { + (page > 1) ? teacher.num = (page * 100) + (index + 1) : teacher.num = index + 1; + if (teacher.middle_name === null) { + teacher.name = `${teacher.first_name[0].toUpperCase() + teacher.first_name.slice(1)} ${teacher.last_name[0].toUpperCase() + teacher.last_name.slice(1)}`; + } else { + teacher.name = `${teacher.first_name[0].toUpperCase() + teacher.first_name.slice(1)} ${teacher.middle_name[0].toUpperCase() + teacher.middle_name.slice(1)} ${teacher.last_name[0].toUpperCase() + teacher.last_name.slice(1)}`; + } + return teacher; + }); + this.temp = [...res['results']]; + this.rows = res['results']; + this.total = res.count; + }); + this.searching = false; + this.loader = false; + + } + + defaultValues(name) { + if (name) { + this.getTeachers(1); + } + } + +} + diff --git a/src/app/school/teachers/teachers.module.spec.ts b/src/app/school/teachers/teachers.module.spec.ts new file mode 100755 index 0000000..9a74c1f --- /dev/null +++ b/src/app/school/teachers/teachers.module.spec.ts @@ -0,0 +1,13 @@ +import { TeachersModule } from './teachers.module'; + +describe('TeachersModule', () => { + let teachersModule: TeachersModule; + + beforeEach(() => { + teachersModule = new TeachersModule(); + }); + + it('should create an instance', () => { + expect(teachersModule).toBeTruthy(); + }); +}); diff --git a/src/app/school/teachers/teachers.module.ts b/src/app/school/teachers/teachers.module.ts new file mode 100755 index 0000000..ffe3376 --- /dev/null +++ b/src/app/school/teachers/teachers.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { RouterModule } from '@angular/router'; +import { TeachersComponent } from './teachers.component'; +import { SharedModule } from '../../shared/shared.module'; +import { TeachersRoutes } from './teachers.routing'; +import { ResetPasswordComponent } from './reset-password/reset-password.component'; +import { AddTeacherComponent } from '../add-teacher/add-teacher.component'; +import { AddTeacherMyformComponent } from './add-teacher-myform/add-teacher-myform.component'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(TeachersRoutes), + SharedModule, + // MatDatepickerModule, + // MatNativeDateModule, + // MyformModule, + // TablesModule + ], + declarations: [ + TeachersComponent, + ResetPasswordComponent, + AddTeacherComponent, + AddTeacherMyformComponent + ] +}) +export class TeachersModule { } diff --git a/src/app/school/teachers/teachers.routing.ts b/src/app/school/teachers/teachers.routing.ts new file mode 100755 index 0000000..d5f73d3 --- /dev/null +++ b/src/app/school/teachers/teachers.routing.ts @@ -0,0 +1,27 @@ +import { Routes } from '@angular/router'; +import { TeachersComponent } from './teachers.component'; +import { ResetPasswordComponent } from './reset-password/reset-password.component'; +import { AddTeacherComponent } from '../add-teacher/add-teacher.component'; +import { NotAdminGuard } from 'src/app/core/guards/auth.guard'; +import { AddTeacherMyformComponent } from './add-teacher-myform/add-teacher-myform.component'; + +export const TeachersRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'view-teachers', + component: TeachersComponent + }, + { + path: 'reset-password', + component: ResetPasswordComponent + }, + { + path: 'add-teachers', + component: AddTeacherMyformComponent, + // canActivate: [NotAdminGuard] // to be removed on face 3 + } + ] + } +]; diff --git a/src/app/school/view-classes/view-classes.component.html b/src/app/school/view-classes/view-classes.component.html new file mode 100755 index 0000000..6e8fcf8 --- /dev/null +++ b/src/app/school/view-classes/view-classes.component.html @@ -0,0 +1,9 @@ +
+ +

View Classes

+ + + +
\ No newline at end of file diff --git a/src/app/school/view-classes/view-classes.component.scss b/src/app/school/view-classes/view-classes.component.scss new file mode 100755 index 0000000..94ffc38 --- /dev/null +++ b/src/app/school/view-classes/view-classes.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/school/view-classes/view-classes.component.spec.ts b/src/app/school/view-classes/view-classes.component.spec.ts new file mode 100755 index 0000000..544f3fd --- /dev/null +++ b/src/app/school/view-classes/view-classes.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ViewClassesComponent } from './view-classes.component'; + +describe('ViewClassesComponent', () => { + let component: ViewClassesComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ViewClassesComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ViewClassesComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/view-classes/view-classes.component.ts b/src/app/school/view-classes/view-classes.component.ts new file mode 100755 index 0000000..2cdd996 --- /dev/null +++ b/src/app/school/view-classes/view-classes.component.ts @@ -0,0 +1,96 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { SchoolService } from '../school.service'; + +@Component({ + selector: 'app-view-classes', + templateUrl: './view-classes.component.html', + styleUrls: ['./view-classes.component.scss'] +}) +export class ViewClassesComponent implements OnInit { + currentPage = 'class'; + rows = []; + temp = []; + total = 0; + pageNumber = 0; + searching: any; + loader: any = false; + + headers = [ + 'full_class_name' + ] + + columns = [ + { name: '#', prop: 'num' }, + { name: 'Class', prop: 'base_class' }, + { name: 'Stream', prop: 'name' }, + { name: 'Last Attentance', prop: 'last_attendance' }, + ]; + constructor(public schoolService: SchoolService, private route: Router) { } + + ngOnInit() { + this.getClasses(1); + } + + getClasses(page) { + this.loader = true; + this.schoolService.getClasses(page).subscribe(res => { + res.results = res.results.map((data, index) => { + if (!data.name) { data.name = '_'; } + if (!data.last_attendance) { data.last_attendance = '_'; } + (page > 1) ? data.num = (page * 100) + (index + 1) : data.num = index + 1; + return data; + }); + this.rows = res.results; + this.total = res.count; + this.loader = false; + }); + } + + pageNumberClicked(page) { + this.getClasses(page.offset + 1); + } + + searchClass(name) { + this.searching = true; + this.loader = true; + let page = 1; + + this.schoolService.getSearchedClass(page, name).subscribe(res => { + res.results = res.results.map((data, index) => { + if (!data.name) { data.name = '_'; } + if (!data.last_attendance) { data.last_attendance = '_'; } + (page > 1) ? data.num = (page * 100) + (index + 1) : data.num = index + 1; + return data; + }); + this.rows = res.results; + this.total = res.count; + this.loader = false; + }); + + this.searching = false; + + + } + + async handleActions(action) { + if (action.name == "Edit") { + const data = action.data; + console.log(data, 'classes') + // id and name are what the multiselect expects for update + data.school = { id: data.school, name: data.school_name } + await this.route.navigate(['../classes/add-class'], { state: data }); + } + } + + exportTriggerd(event) { + this.route.navigate(['../reports/downloads']); + } + + + defaultValues(name) { + if (name) { + this.getClasses(1); + } + } +} diff --git a/src/app/school/view-schools/options.ts b/src/app/school/view-schools/options.ts new file mode 100644 index 0000000..397841c --- /dev/null +++ b/src/app/school/view-schools/options.ts @@ -0,0 +1,59 @@ + +const filterOptions = { + "name": "MOE Dash Api", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county" + }, + "sub_county": { + "type": "multifield", + "required": false, + "read_only": false, + "label": "Filter by Sub county", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name" + }, + "emis_code": { + "type": "string", + "required": false, + "read_only": false, + "label": "Filter by Emis Code", + "max_length": 45 + }, + + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/school/view-schools/view-schools.component.html b/src/app/school/view-schools/view-schools.component.html new file mode 100755 index 0000000..96fa404 --- /dev/null +++ b/src/app/school/view-schools/view-schools.component.html @@ -0,0 +1,19 @@ +
+
+
+

View Schools

+ + +
+
+
+ + + + +
diff --git a/src/app/school/view-schools/view-schools.component.scss b/src/app/school/view-schools/view-schools.component.scss new file mode 100755 index 0000000..94ffc38 --- /dev/null +++ b/src/app/school/view-schools/view-schools.component.scss @@ -0,0 +1,17 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/school/view-schools/view-schools.component.spec.ts b/src/app/school/view-schools/view-schools.component.spec.ts new file mode 100755 index 0000000..41fdc81 --- /dev/null +++ b/src/app/school/view-schools/view-schools.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ViewSchoolsComponent } from './view-schools.component'; + +describe('ViewSchoolsComponent', () => { + let component: ViewSchoolsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ViewSchoolsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ViewSchoolsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/school/view-schools/view-schools.component.ts b/src/app/school/view-schools/view-schools.component.ts new file mode 100755 index 0000000..a0e730d --- /dev/null +++ b/src/app/school/view-schools/view-schools.component.ts @@ -0,0 +1,165 @@ +import { Component, OnInit, Output, EventEmitter } from '@angular/core'; +import { Router } from '@angular/router'; +import { SchoolService } from '../school.service'; +import { filterOptions } from './options'; + +@Component({ + selector: 'app-view-schools', + templateUrl: './view-schools.component.html', + styleUrls: ['./view-schools.component.scss'] +}) +export class ViewSchoolsComponent implements OnInit { + + /// MyTable + url = 'api/v1/schools/stats/id' + + headers = [ + 'name', + 'county_name', + 'sub_county_name', + 'nemis_code', + 'day_boarding', + 'email' + ] + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + enableOrderBy = true + formGroupOrder = [ + ['county', 'sub_county', 'emis_code'], + ] + fetchingData = false + + constructor(private schoolService: SchoolService, private route: Router) { } + currentPage = 'school'; + schools: any; + rows = []; + temp = []; + total = 0; + pageNumber = 0; + searching: any; + loader: boolean = false; + + ngOnInit() { + this.getSchoolData(this.pageNumber + 1); + console.log(this.formItems, 'form items') + } + + getSchoolData(page) { + this.loader = true + this.schoolService.getSchools(page).subscribe(res => { + res.results.map((school, index) => { + if (page > 1) { + school.num = (page * 100) + (index + 1); + } else { + school.num = index + 1; + } + if (school.village === '' || school.village === null) { + school.village = 'None'; + } + return school; + }); + this.temp = [...res['results']]; + this.rows = res['results']; + this.total = res.count; + this.loader = false; + }); + } + + pageNumberClicked(page) { + this.getSchoolData(page.offset + 1); + } + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['../reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + async handleActions(action) { + if (action.name == "Edit") { + const data = action.data; + console.log(data, 'schools') + // id and name are what the multifield expects for update + data.school = { id: data.school, name: data.school_name, } + await this.route.navigate(['../schools/add-school'], { state: data }); + } + } + + isLoading(status) { + this.fetchingData = status + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/schools/stats/id` + parsedFilters['paginator'] = 'pa' + this.args = parsedFilters + console.log(parsedFilters) + console.log(this.url) + } + + searchSchool(name) { + this.searching = true; + this.loader = true; + let page = 1; + this.schoolService.getSearchedSchool(page, name).subscribe(res => { + res.results.map((school, index) => { + if (page > 1) { + school.num = (page * 100) + (index + 1); + } else { + school.num = index + 1; + } + if (school.village === '' || school.village === null) { + school.village = 'None'; + } + return school; + }); + this.temp = [...res['results']]; + this.rows = res['results']; + this.total = res.count; + }); + this.searching = false; + this.loader = false; + + } + + defaultValues(name) { + if (name) { + this.getSchoolData(this.pageNumber + 1); + } + } +} diff --git a/src/app/session/error/error.component.html b/src/app/session/error/error.component.html new file mode 100755 index 0000000..f558d3f --- /dev/null +++ b/src/app/session/error/error.component.html @@ -0,0 +1,10 @@ +
+
+
+
500
+
We have an internal server error!
+

Sorry, but the page you were trying to view does not exist. Report + this error?

+
+
+
diff --git a/src/app/session/error/error.component.scss b/src/app/session/error/error.component.scss new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/src/app/session/error/error.component.scss @@ -0,0 +1 @@ + diff --git a/src/app/session/error/error.component.ts b/src/app/session/error/error.component.ts new file mode 100755 index 0000000..a13330a --- /dev/null +++ b/src/app/session/error/error.component.ts @@ -0,0 +1,12 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-error', + templateUrl: './error.component.html', + styleUrls: ['./error.component.scss'] +}) +export class ErrorComponent implements OnInit { + constructor() {} + + ngOnInit() {} +} diff --git a/src/app/session/forgot/forgot.component.html b/src/app/session/forgot/forgot.component.html new file mode 100755 index 0000000..cd5e0af --- /dev/null +++ b/src/app/session/forgot/forgot.component.html @@ -0,0 +1,37 @@ +
+
+
+ + +
+
+ +

{{ 'SESSION_.FORGOT_PASS.SUB_TITLE' | translate }}

+
+
+
+ + + + + {{ 'SESSION_.FORGOT_PASS.EMAIL_REQUIRED' | translate }} + {{ 'SESSION_.FORGOT_PASS.EMAIL_VALID' | translate }} +
+ +
+ +
+
+ +
+
+
+
\ No newline at end of file diff --git a/src/app/session/forgot/forgot.component.scss b/src/app/session/forgot/forgot.component.scss new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/src/app/session/forgot/forgot.component.scss @@ -0,0 +1 @@ + diff --git a/src/app/session/forgot/forgot.component.ts b/src/app/session/forgot/forgot.component.ts new file mode 100755 index 0000000..c15c559 --- /dev/null +++ b/src/app/session/forgot/forgot.component.ts @@ -0,0 +1,48 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { + FormBuilder, + FormGroup, + Validators, + FormControl +} from '@angular/forms'; +import { CustomValidators } from 'ng2-validation'; +import { SessionService } from '../session.service'; +import { NotificationsService } from 'src/app/shared/notifications/notifications.service'; + +@Component({ + selector: 'app-forgot', + templateUrl: './forgot.component.html', + styleUrls: ['./forgot.component.scss'] +}) +export class ForgotComponent implements OnInit { + public form: FormGroup; + loader: boolean = false; + constructor(private fb: FormBuilder, private router: Router, private auth: SessionService, public notifyService: NotificationsService) { } + + ngOnInit() { + this.form = this.fb.group({ + email: [null, Validators.compose([Validators.required,])] + }); + } + + onSubmit() { + // this.router.navigate(['/session/reset']); + this.auth.forgotPassword(this.form.value).subscribe(data => { + //console.log(data) + this.loader = false; + // console.log('code resent') + //show the notification popup if successful + this.notifyService.notify('Reset code has been sent to your email.', 'success'); + + if (data) { + this.router.navigate(['/session/reset', { dataPassed: this.form.value.email }], { skipLocationChange: true }) + } + }, error => { + this.loader = false; + //show the api error + //show the notification popup if unsuccessful + this.notifyService.notify('An error occured, please try again later!', 'error'); + }); + } +} diff --git a/src/app/session/lockscreen/lockscreen.component.html b/src/app/session/lockscreen/lockscreen.component.html new file mode 100755 index 0000000..c49c278 --- /dev/null +++ b/src/app/session/lockscreen/lockscreen.component.html @@ -0,0 +1,26 @@ +
+
+
+ + +
+
+ user +
+

David Miller

+
+
+ + + + Username + is required. +
+
+
+
+
+
+
+
+
diff --git a/src/app/session/lockscreen/lockscreen.component.scss b/src/app/session/lockscreen/lockscreen.component.scss new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/src/app/session/lockscreen/lockscreen.component.scss @@ -0,0 +1 @@ + diff --git a/src/app/session/lockscreen/lockscreen.component.ts b/src/app/session/lockscreen/lockscreen.component.ts new file mode 100755 index 0000000..1487e3e --- /dev/null +++ b/src/app/session/lockscreen/lockscreen.component.ts @@ -0,0 +1,28 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { + FormBuilder, + FormGroup, + Validators, + FormControl +} from '@angular/forms'; + +@Component({ + selector: 'app-lockscreen', + templateUrl: './lockscreen.component.html', + styleUrls: ['./lockscreen.component.scss'] +}) +export class LockscreenComponent implements OnInit { + public form: FormGroup; + constructor(private fb: FormBuilder, private router: Router) {} + + ngOnInit() { + this.form = this.fb.group({ + uname: [null, Validators.compose([Validators.required])] + }); + } + + onSubmit() { + this.router.navigate(['/dashboard']); + } +} diff --git a/src/app/session/not-found/not-found.component.html b/src/app/session/not-found/not-found.component.html new file mode 100755 index 0000000..285aa49 --- /dev/null +++ b/src/app/session/not-found/not-found.component.html @@ -0,0 +1,12 @@ +
+
+
+
{{ 'NOTFOUND.404' | translate }}
+
{{ 'NOTFOUND.PAGE_NOT_FOUND' | translate }}
+

{{ 'NOTFOUND.DESC' | translate }}

+

+ +

+
+
+
diff --git a/src/app/session/not-found/not-found.component.scss b/src/app/session/not-found/not-found.component.scss new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/src/app/session/not-found/not-found.component.scss @@ -0,0 +1 @@ + diff --git a/src/app/session/not-found/not-found.component.ts b/src/app/session/not-found/not-found.component.ts new file mode 100755 index 0000000..016c362 --- /dev/null +++ b/src/app/session/not-found/not-found.component.ts @@ -0,0 +1,12 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-not-found', + templateUrl: './not-found.component.html', + styleUrls: ['./not-found.component.scss'] +}) +export class NotFoundComponent implements OnInit { + constructor() {} + + ngOnInit() {} +} diff --git a/src/app/session/reset/reset.component.html b/src/app/session/reset/reset.component.html new file mode 100755 index 0000000..a22c6a7 --- /dev/null +++ b/src/app/session/reset/reset.component.html @@ -0,0 +1,69 @@ +
+
+
+ + +
+
+ +

{{ 'SESSION_.RESET_PASS.SUB_TITLE' | translate }}

+
+
+
+ + + + + {{ 'form_errros.RESET_CODE_REQUIRED' | translate }} +
+
+ + + + + {{ 'form_errros.PASSWORD_REQUIRED' | translate }} +
+
+ + + + {{ 'form_errros.C_PASSWORD_REQUIRED' | translate }} + {{ 'form_errros.PASSWORDS_MISMATCH' | translate }} +
+ +
+ + +

{{ 'SESSION_.OR' | translate }}

+ + + +
+
+ +
+
+
+
\ No newline at end of file diff --git a/src/app/session/reset/reset.component.scss b/src/app/session/reset/reset.component.scss new file mode 100755 index 0000000..645ffdd --- /dev/null +++ b/src/app/session/reset/reset.component.scss @@ -0,0 +1,17 @@ +.or-line { + width: 100%; + line-height: 0.1em; + border-bottom: 1px solid #000; + margin: 30px 0 20px; + text-align: center; +} + +.or-line span { + background: #fff; + padding: 0 10px; +} + +.resend-code { + cursor: pointer; + color: #2096f3; +} \ No newline at end of file diff --git a/src/app/session/reset/reset.component.spec.ts b/src/app/session/reset/reset.component.spec.ts new file mode 100755 index 0000000..c6b2ee1 --- /dev/null +++ b/src/app/session/reset/reset.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ResetComponent } from './reset.component'; + +describe('ResetComponent', () => { + let component: ResetComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ResetComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ResetComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/session/reset/reset.component.ts b/src/app/session/reset/reset.component.ts new file mode 100755 index 0000000..5974ad1 --- /dev/null +++ b/src/app/session/reset/reset.component.ts @@ -0,0 +1,82 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { + FormBuilder, + FormGroup, + Validators, + FormControl +} from '@angular/forms'; +import { SharedService } from 'src/app/shared/shared.service'; +import { SessionService } from '../session.service'; +import { ActivatedRoute } from '@angular/router'; +import { NotificationsService } from 'src/app/shared/notifications/notifications.service'; + +@Component({ + selector: 'app-reset', + templateUrl: './reset.component.html', + styleUrls: ['./reset.component.scss'] +}) +export class ResetComponent implements OnInit { + + public form: FormGroup; + private username: any; + loader: boolean = false; + + constructor(private fb: FormBuilder, + private router: Router, + private sharedService: SharedService, + private auth: SessionService, + private activatedRouter: ActivatedRoute, + public notifyService: NotificationsService) { } + + ngOnInit() { + this.username = this.activatedRouter.snapshot.params['dataPassed']; + + if (this.username === undefined) { + this.router.navigate(['/session/signin']); + } + this.form = this.fb.group({ + reset_code: [null, Validators.compose([Validators.required])], + new_password: [null, Validators.compose([Validators.required])], + c_password: [null, Validators.compose([Validators.required])] + }, { + validator: this.sharedService.confirmPasswordValidator + }); + } + + onSubmit() { + this.loader = true; + + this.auth.resetPassword(this.form.value, this.username).subscribe(data => { + this.loader = false; + //console.log(data) + if (data) { + this.router.navigate(['/session/signin']); + } + }, error => { + console.log(error) + this.loader = false + }); + } + + resendcode() { + // console.log('Resend code') + let body = { + email: this.username, + } + this.auth.forgotPassword(body).subscribe(data => { + this.loader = false; + // console.log('code resent') + //show the notification popup if successful + this.notifyService.notify('Reset code has resent to your email.', 'success'); + }, error => { + this.loader = false; + //show the api error + //show the notification popup if unsuccessful + this.notifyService.notify('An error occured, please try again later!', 'error'); + // console.log(error) + }) + } + +} + diff --git a/src/app/session/session.module.ts b/src/app/session/session.module.ts new file mode 100755 index 0000000..95f2e35 --- /dev/null +++ b/src/app/session/session.module.ts @@ -0,0 +1,56 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; +import { FormsModule, ReactiveFormsModule } from '@angular/forms'; +import { FlexLayoutModule } from '@angular/flex-layout'; + +import { SessionRoutes } from './session.routing'; +import { NotFoundComponent } from './not-found/not-found.component'; +import { ErrorComponent } from './error/error.component'; +import { ForgotComponent } from './forgot/forgot.component'; +import { LockscreenComponent } from './lockscreen/lockscreen.component'; +import { SigninComponent } from './signin/signin.component'; +import { SignupComponent } from './signup/signup.component'; + +import { HTTP_INTERCEPTORS } from '@angular/common/http'; +import { AuthInterceptor } from '../interceptors/auth.interceptor'; +import { SharedModule } from '../shared/shared.module'; +import { ResetComponent } from './reset/reset.component'; +import { MatButtonModule } from '@angular/material/button'; +import { MatCardModule } from '@angular/material/card'; +import { MatCheckboxModule } from '@angular/material/checkbox'; +import { MatIconModule } from '@angular/material/icon'; +import { MatInputModule } from '@angular/material/input'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule.forChild(SessionRoutes), + MatIconModule, + MatCardModule, + MatInputModule, + MatCheckboxModule, + MatButtonModule, + FlexLayoutModule, + FormsModule, + ReactiveFormsModule, + SharedModule + ], + declarations: [ + NotFoundComponent, + ErrorComponent, + ForgotComponent, + LockscreenComponent, + SigninComponent, + SignupComponent, + ResetComponent + ], + providers: [ + { + provide: HTTP_INTERCEPTORS, + useClass: AuthInterceptor, + multi: true + }, + ] +}) +export class SessionModule { } diff --git a/src/app/session/session.routing.ts b/src/app/session/session.routing.ts new file mode 100755 index 0000000..e6a56cd --- /dev/null +++ b/src/app/session/session.routing.ts @@ -0,0 +1,45 @@ +import { Routes } from '@angular/router'; + +import { NotFoundComponent } from './not-found/not-found.component'; +import { ErrorComponent } from './error/error.component'; +import { ForgotComponent } from './forgot/forgot.component'; +import { LockscreenComponent } from './lockscreen/lockscreen.component'; +import { SigninComponent } from './signin/signin.component'; +import { SignupComponent } from './signup/signup.component'; +import { ResetComponent } from './reset/reset.component'; + +export const SessionRoutes: Routes = [ + { + path: '', + children: [ + { + path: '404', + component: NotFoundComponent + }, + { + path: 'error', + component: ErrorComponent + }, + { + path: 'forgot', + component: ForgotComponent + }, + { + path: 'reset', + component: ResetComponent + }, + { + path: 'lockscreen', + component: LockscreenComponent + }, + { + path: 'signin', + component: SigninComponent + }, + { + path: 'signup', + component: SignupComponent + } + ] + } +]; diff --git a/src/app/session/session.service.spec.ts b/src/app/session/session.service.spec.ts new file mode 100755 index 0000000..0d4bd6c --- /dev/null +++ b/src/app/session/session.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { SessionService } from './session.service'; + +describe('SessionService', () => { + beforeEach(() => TestBed.configureTestingModule({ teardown: { destroyAfterEach: false } })); + + it('should be created', () => { + const service: SessionService = TestBed.get(SessionService); + expect(service).toBeTruthy(); + }); +}); diff --git a/src/app/session/session.service.ts b/src/app/session/session.service.ts new file mode 100755 index 0000000..68f3a73 --- /dev/null +++ b/src/app/session/session.service.ts @@ -0,0 +1,175 @@ +import { Injectable } from '@angular/core' +import { environment } from 'src/environments/environment' +import { HttpClient } from '@angular/common/http' +import { tap, map, catchError, mergeMap } from 'rxjs/operators' +import { ConstantsService } from '../common/services/constants.service' +import { Router } from '@angular/router' +import { User } from '../core/models/auth.models' +import { CookieService } from '../core/services/cookie.service' +import * as moment from 'moment' +import { SharedService } from '../shared/shared.service' +// import { ConsoleReporter } from 'jasmine'; + +const client_id = environment.APIClientID +const endpoint = environment.APIEndpoint +const endpointV1 = environment.APIv1Endpoint + + +@Injectable({ + providedIn: 'root' +}) + +// export class User { +// id: number +// changed_password: boolean +// dob: string +// dummy: boolean +// email: string +// first_name: string +// gender: string +// gender_display: string +// image: string +// last_name: string +// phone: string +// profile_image: string +// role: string +// username: string +// } + +export class SessionService { + + constructor(private http: HttpClient, private sharedService: SharedService, private _constant: ConstantsService, + private router: Router, private cookieService: CookieService) { + + } + + login_data: any; + rememberUser: boolean = this._constant.rememberUser + token: any = this._constant.token + headers: any = this._constant.getServiceHeaders() + userPerson: any = this._constant.user + user: User + + login(auth) { + + this.login_data = { + username: auth.username, + password: auth.password, + client_id: client_id, + grant_type: 'password' + } + + const rememberMe = (auth.checked === true); + this._constant.setRememberMe(rememberMe); + + + return this.http.post(endpoint + 'auth/token/', this.login_data).pipe( + mergeMap(res => { + + this._constant.setToken(res['access_token']) + this._constant.setExpiresOn(res['expires_in']) + this._constant.setRefreshToken(res['refresh_token']) + // this._constant.setExpiresOn( res['expires_in'] ) + // this._constant.setExpiresOn( moment().add(60, 's') ) + this._constant.setTimeLoggedIn(moment.now()) + this.cookieService.setCookie('current_user', JSON.stringify(res), 1) + window.sessionStorage.setItem('activeSession', JSON.stringify(true)); + + return this.userProfile() + + }) + ) + + // todo: Set timeout when there's no internet. + + } + + isTokenExpired() { + //get the value of the stored signin time + const expiryTime = this._constant.getExpiresOn() + + //get refresh token + const refreshToken = this._constant.getRefreshToken + + //if the user had chcecked the remember Me + const rememberMe = this._constant.rememberUser + + //get the current time + const now = moment().valueOf() + + // addd expiry time to an additional 50 minutes and transform it into milliseconds + const afternow = moment(expiryTime).add(50, 'm').toDate() + const nowAfter = moment(afternow).valueOf() + + + //if the current time is greater than the stored expiry then refresh the token + if (now > nowAfter && rememberMe) { + + console.log('token expired so its true') + + return this.http.post(endpoint + 'auth/token/', "refresh_token=" + refreshToken + "&grant_type=refresh_token&client_id=" + client_id).pipe( + mergeMap(res => { + + this._constant.setToken(res['access_token']) + this._constant.setExpiresOn(res['expires_in']) + this._constant.setRefreshToken(res['refresh_token']) + + return this.userProfile() + }), + ) + } + //if the current time is less than the expiry time then redirect to dashboard + else if (now < nowAfter && rememberMe) { + // console.log('token expired is not true') + this.router.navigate(['/']) + } + else { + this.logout(); + } + + // todo: Set timeout when there's no internet. + } + + userProfile() { + return this.http.get(endpointV1 + 'users/me/profile/').pipe( + tap(res => { + this._constant.setUserProfile(res); + + // set user tycope + this._constant.setUserRole(res['role']); + + }) + ); + } + + forgotPassword(user: any) { + let body = { + username: user.email, + } + + return this.http.post(endpointV1 + 'users/forgot-password', body) + + } + + resetPassword(user: any, username) { + user.confirm_password = user.c_password + return this.http.post(endpointV1 + 'users/reset-password', user); + + } + + userCheckedRemember() { + if (this.rememberUser) { } + } + + logout() { + this.cookieService.deleteCookie('current_user') + return localStorage.clear() + } + + currentUser(): User { + if (!this.user) { + this.user = JSON.parse(this.cookieService.getCookie('current_user')) + } + return this.user; + } +} diff --git a/src/app/session/signin/signin.component.html b/src/app/session/signin/signin.component.html new file mode 100755 index 0000000..922240b --- /dev/null +++ b/src/app/session/signin/signin.component.html @@ -0,0 +1,64 @@ +
+
+
+ + +
+
+ +

{{ 'SESSION_.SIGN_IN.SUB_TITLE' | translate }}

+
+
+
+ + + + + {{ 'form_errors.USERNAME_REQUIRED' | translate }} +
+
+ + + + {{ 'form_errors.PASSWORD_REQUIRED' | translate }} +
+
+ + + {{ 'SESSION_.SIGN_IN.REMEMBER_ME' | translate }} +
+ +
+
+

{{ loginError }}

+
+ + +
+
+
+ + + + + + +
+ +
+
+
+ + +
\ No newline at end of file diff --git a/src/app/session/signin/signin.component.scss b/src/app/session/signin/signin.component.scss new file mode 100755 index 0000000..bd1ecd1 --- /dev/null +++ b/src/app/session/signin/signin.component.scss @@ -0,0 +1,37 @@ + +.mat-text-muted { + font-size: 18px; + color: black !important; +} + +.unicef-logo { + width: 80%; + margin-top: 40px; + margin-left: 20px; + } + + .nemis-logo { + width: 90%; + margin-top: 40px; + } + + .naconek-logo { + width: 65%; + margin-top: 30px; + margin-left: 35px; + } + + .educate-a-child-logo { + width: 70%; + margin-left: 30px; + margin-top: 25px; + } + + .forgot-password { + text-decoration: underline; + } + + .copyright-text { + text-align: center; + font-size: 12px; + } \ No newline at end of file diff --git a/src/app/session/signin/signin.component.ts b/src/app/session/signin/signin.component.ts new file mode 100755 index 0000000..1ad2078 --- /dev/null +++ b/src/app/session/signin/signin.component.ts @@ -0,0 +1,63 @@ +import { Component, OnInit } from '@angular/core' +import { Router } from '@angular/router' +import mixpanel from 'mixpanel-browser'; + +import { + FormBuilder, + FormGroup, + Validators +} from '@angular/forms' + +import { SessionService } from '../session.service' +import { ConstantsService } from 'src/app/common/services/constants.service' + +@Component({ + selector: 'app-signin', + templateUrl: './signin.component.html', + styleUrls: ['./signin.component.scss'] +}) +export class SigninComponent implements OnInit { + + year: number = new Date().getFullYear(); + + public form: FormGroup + checked: false + loginError: string = '' + loaderStatus: boolean = false + + constructor(private fb: FormBuilder, private router: Router, private auth: SessionService, private constantService: ConstantsService) { + this.form = this.fb.group({ + username: [null, Validators.compose([Validators.required])], + password: [null, Validators.compose([Validators.required])], + checked: [null] + }) + } + + ngOnInit() { + // const rememberMe = this.auth.getRememberMe() + // if ( rememberMe ) { + // } + } + + onSubmit() { + + this.loaderStatus = true + this.loginError = "" + this.auth.login(this.form.value).subscribe(res => { + this.loaderStatus = false + const user = res as any; + mixpanel.identify(user.id); + mixpanel.people.set({ + '$username': user.username, + '$email': user.email, + '$last_login': new Date(), + }) + this.router.navigate(['/']) + + }, err => { + this.loaderStatus = false + this.loginError = err + }) + } + +} diff --git a/src/app/session/signup/signup.component.html b/src/app/session/signup/signup.component.html new file mode 100755 index 0000000..dc58b27 --- /dev/null +++ b/src/app/session/signup/signup.component.html @@ -0,0 +1,62 @@ +
+
+
+ + +
+
+ +

Create an app id to continue.

+
+
+
+ + + + You + must include an email address. + You + must include a valid email address. +
+
+ + + + You must include password. +
+
+ + + + You must include confirm password. + Passwords do not + math. +
+
+ I have read and agree to the terms of service. +
+ +
+ +
+
+
+
+
+
\ No newline at end of file diff --git a/src/app/session/signup/signup.component.scss b/src/app/session/signup/signup.component.scss new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/src/app/session/signup/signup.component.scss @@ -0,0 +1 @@ + diff --git a/src/app/session/signup/signup.component.ts b/src/app/session/signup/signup.component.ts new file mode 100755 index 0000000..94e5107 --- /dev/null +++ b/src/app/session/signup/signup.component.ts @@ -0,0 +1,40 @@ +import { Component, OnInit, Input } from '@angular/core'; +import { Router } from '@angular/router'; +import { + FormBuilder, + FormGroup, + Validators, + FormControl +} from '@angular/forms'; +import { CustomValidators } from 'ng2-validation'; + +const password = new FormControl('', Validators.required); +const confirmPassword = new FormControl('', CustomValidators.equalTo(password)); + +@Component({ + selector: 'app-signup', + templateUrl: './signup.component.html', + styleUrls: ['./signup.component.scss'] +}) +export class SignupComponent implements OnInit { + + @Input() checked: boolean; + + public form: FormGroup; + constructor(private fb: FormBuilder, private router: Router) {} + + ngOnInit() { + this.form = this.fb.group({ + email: [ + null, + Validators.compose([Validators.required, CustomValidators.email]) + ], + password: password, + confirmPassword: confirmPassword + }); + } + + onSubmit() { + this.router.navigate(['/dashboard']); + } +} diff --git a/src/app/settings/change-password/change-password.component.html b/src/app/settings/change-password/change-password.component.html new file mode 100755 index 0000000..9eabab4 --- /dev/null +++ b/src/app/settings/change-password/change-password.component.html @@ -0,0 +1,45 @@ +
+ + {{ 'CHANGE_PASSWORD_TITLE' | translate}} + + + {{ error }} + + + +
+
+ + + +
+
+
+ +
+
+ + + + {{ 'form_errors.PASSWORD_REQUIRED' | translate}} +
+
+ + + + {{ 'form_errors.C_PASSWORD_REQUIRED' | translate}} + {{ 'form_errors.PASSWORDS_MISMATCH' | translate}} +
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/src/app/settings/change-password/change-password.component.scss b/src/app/settings/change-password/change-password.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/settings/change-password/change-password.component.spec.ts b/src/app/settings/change-password/change-password.component.spec.ts new file mode 100755 index 0000000..75e3cfe --- /dev/null +++ b/src/app/settings/change-password/change-password.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ChangePasswordComponent } from './change-password.component'; + +describe('ChangePasswordComponent', () => { + let component: ChangePasswordComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ChangePasswordComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ChangePasswordComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/settings/change-password/change-password.component.ts b/src/app/settings/change-password/change-password.component.ts new file mode 100755 index 0000000..547db0c --- /dev/null +++ b/src/app/settings/change-password/change-password.component.ts @@ -0,0 +1,51 @@ +import { Component, OnInit } from '@angular/core' +import { + FormBuilder, + FormGroup, + Validators +} from '@angular/forms' +import { NotificationsService } from 'src/app/shared/notifications/notifications.service' +import { SharedService } from 'src/app/shared/shared.service' +import { SettingsService } from '../settings.service' + +@Component({ + selector: 'app-change-password', + templateUrl: './change-password.component.html', + styleUrls: ['./change-password.component.scss'] +}) +export class ChangePasswordComponent implements OnInit { + public form: FormGroup + submitted :boolean = false + error: any = '' + + constructor(private fb: FormBuilder, + private notifyService: NotificationsService, private sharedService: SharedService, private settingsService:SettingsService) { + this.form = this.fb.group({ + old_password: [ null, Validators.compose([Validators.required])], + new_password: [ null, Validators.compose([Validators.required])], + c_password: [ null, Validators.compose([Validators.required ])], + }, { + validator: this.sharedService.confirmPasswordValidator + }) + } + + ngOnInit() { + } + + onSubmit(){ + this.submitted = true + + this.settingsService.changePassword(this.form.value).subscribe( res => { + this.submitted = false + this.notifyService.notify('Password has been changed successfully!', 'success') + this.form.reset() + + }, error => { + this.submitted = false + this.notifyService.notify('Error on changing password, kindly try again!', 'error') + this.error = error + + }) + } + +} diff --git a/src/app/settings/profile/edit-profile-dialog.component.html b/src/app/settings/profile/edit-profile-dialog.component.html new file mode 100755 index 0000000..b8f7a29 --- /dev/null +++ b/src/app/settings/profile/edit-profile-dialog.component.html @@ -0,0 +1,93 @@ +

+ Edit Profile +

+
+
+ +
+
+ + + + First name is required +
+
+ +
+
+ + + + Last name is required +
+
+
+
+ + + + Email is required +
+
+
+
+ + + +
+
+
+
+ + + + + {{ g.gender | translate }} + + +
+
+
+
+ + + + + + +
+
+ + +
+
+
+ + +
+
+
+ +
\ No newline at end of file diff --git a/src/app/settings/profile/profile.component.html b/src/app/settings/profile/profile.component.html new file mode 100755 index 0000000..a50f6a8 --- /dev/null +++ b/src/app/settings/profile/profile.component.html @@ -0,0 +1,76 @@ + + +
+
+
+ + +
+
+

{{profile.first_name}} {{profile.last_name}}

+ {{profile.email}} + {{profile.emis_code}} + +
+
+
+
+ + +

{{profile.role_name}}

+
+
+ +
{{profile.username}}
+
+
+
+
+
+ + + + {{ 'INDIVIDUAL.META_DATA_INFO.BIO' | translate }} + +

{{ 'INDIVIDUAL.META_DATA_INFO.INFO' | translate }}

+
+
+
+ {{ 'INDIVIDUAL.META_DATA_INFO.PHONE' | translate }} + {{profile.phone}} + N/A +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.DOB' | translate }} + {{profile.dob}} + N/A +
+ +
+ {{ 'INDIVIDUAL.META_DATA_INFO.GENDER' | translate }} + {{profile.gender_display}} +
+ + + +
+
+
+
+
+
+
+
+
diff --git a/src/app/settings/profile/profile.component.scss b/src/app/settings/profile/profile.component.scss new file mode 100755 index 0000000..8111502 --- /dev/null +++ b/src/app/settings/profile/profile.component.scss @@ -0,0 +1,29 @@ +@import "../../../assets/styles/scss/components/social"; + +:host { + margin-left: -5px; + margin-right: -5px; + margin-top: -5px; + display: block; +} + +.wrapper { + margin: 6px; +} + +.not-link { + cursor: default; +} + +.img { + width: 230px; +} + +.profile_details { + margin-top: 70px; + margin-left: 200px; + + @media screen { + + } +} diff --git a/src/app/settings/profile/profile.component.spec.ts b/src/app/settings/profile/profile.component.spec.ts new file mode 100755 index 0000000..57f4467 --- /dev/null +++ b/src/app/settings/profile/profile.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ProfileComponent } from './profile.component'; + +describe('ProfileComponent', () => { + let component: ProfileComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ProfileComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ProfileComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/settings/profile/profile.component.ts b/src/app/settings/profile/profile.component.ts new file mode 100755 index 0000000..bf6f536 --- /dev/null +++ b/src/app/settings/profile/profile.component.ts @@ -0,0 +1,161 @@ +import { Component, OnInit, Inject, ViewChild } from '@angular/core'; +import { ConstantsService } from '../../common/services/constants.service'; +import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; +import { NotificationsService } from 'src/app/shared/notifications/notifications.service'; +import { CustomValidators } from 'ng2-validation'; +import { + FormBuilder, + FormGroup, + Validators, + FormControl +} from '@angular/forms'; +import moment from 'moment'; +import { SettingsService } from '../settings.service'; + +export interface DialogData { + // classes: any + // selected_id: any + // streams: any + // from_class: any; +} +@Component({ + selector: 'app-profile', + templateUrl: './profile.component.html', + styleUrls: ['./profile.component.scss'] +}) +export class ProfileComponent implements OnInit { + profile: any; + userRole: any; + + constructor(private _constant: ConstantsService, public dialog: MatDialog,) {} + + ngOnInit() { + this.profile = this._constant.getUserProfile(); + this.userRole = this._constant.getUserRole(); + } + + editProfileDialog(): void { + this.dialog.afterAllClosed.subscribe(data=> this.myLoadingFunction() ) + const dialogRef = this.dialog.open(EditProfileDialogComponent, { + width: '250px', + data: {}, + }); + + dialogRef.afterClosed().subscribe(res => { + if (res) { + + } + }) + } + + myLoadingFunction() { + this.profile = this._constant.getUserProfile(); + console.log(this.profile, 'after dialog closed'); + } + +} + +// promote to popup +@Component({ + selector: 'app-edit-profile', + templateUrl: './edit-profile-dialog.component.html', + styleUrls: ['./profile.component.scss'] +}) +export class EditProfileDialogComponent implements OnInit{ + selectedId: any; + profile: any; + userRole: any; + public form: FormGroup; + edit: boolean = false; + sex:any; + selected:any; + @ViewChild('profile_image') profile_image; + + dob = new FormControl(new Date()); + serializedDate = new FormControl((new Date()).toISOString()); + + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: DialogData, private _constant: ConstantsService,private fb: FormBuilder, + private notifyService: NotificationsService, private settingsService:SettingsService) { + // this.selectedId = data.selected_id + this.form = this.fb.group({ + first_name: [null, Validators.compose([Validators.required])], + last_name: [null, Validators.compose([Validators.required])], + // middle_name: [null, Validators.compose([])], + phone: [null, Validators.compose([])], + email: [null, Validators.compose([CustomValidators.email])], + dob: [null, Validators.compose([])], + gender: [null, Validators.compose([])], + // country: [null, Validators.compose([])], + profile_image: [null, Validators.compose([])] + }) + } + + + ngOnInit() { + this.profile = this._constant.getUserProfile(); + this.userRole = this._constant.getUserRole(); + this.updateForm(this.profile); + this.sex = [{ gender: 'Male', value: 'M' }, { gender: 'Female', value: 'F' }]; + this.selected = this.profile.gender; + + } + + onNoClick(): void { + this.dialogRef.close(); + } + + onSubmit() { + + this.edit = true; + + + this.form.value.dob = moment(this.form.value.dob).format('YYYY-MM-DD'); + + //To upload the profile image + // if (this.profile.profile_image !== '' && this.form.value.profile_image === '') { + // this.form.value.profile_image = this.profile.profile_image + // } + + // let formData = new FormData(); + + // formData.append('profile_image', this.profile_image.nativeElement.files[0]); + + // this.settingsService.updateImage(formData).subscribe(data => { + // // console.log(data, 'successful'); + // },error => { + // // console.log(error, 'what is the error on uploading photo?'); + // }); + // console.log(this.form.value, 'what is here?') + + this.settingsService.updateProfile(this.form.value, this.profile.id).subscribe((res)=>{ + // console.log(res); + this._constant.setUserProfile(res); + this._constant.getUserProfile(); + this.notifyService.notify('Profile has been successfully updated', 'success'); + this.dialogRef.close(); + + }, + error => { + // console.log(error) + this.notifyService.notify(error, 'error') + }); + this.edit = false; + } + + updateForm(data) { + this.form.setValue({ + first_name: data.first_name, + // middle_name: data.middle_name, + last_name: data.last_name, + gender: data.gender, + dob: data.dob, + // country: data.country, + phone: data.phone, + email: data.email, + profile_image: '' + }); + } + +} \ No newline at end of file diff --git a/src/app/settings/settings.module.spec.ts b/src/app/settings/settings.module.spec.ts new file mode 100755 index 0000000..801815b --- /dev/null +++ b/src/app/settings/settings.module.spec.ts @@ -0,0 +1,13 @@ +import { SettingsModule } from './settings.module'; + +describe('SettingsModule', () => { + let settingsModule: SettingsModule; + + beforeEach(() => { + settingsModule = new SettingsModule(); + }); + + it('should create an instance', () => { + expect(settingsModule).toBeTruthy(); + }); +}); diff --git a/src/app/settings/settings.module.ts b/src/app/settings/settings.module.ts new file mode 100755 index 0000000..de636b1 --- /dev/null +++ b/src/app/settings/settings.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { CommonModule } from '@angular/common'; +import { SharedModule } from '../shared/shared.module'; +import { SettingsRoutes } from './settings.routing'; +import { ChangePasswordComponent } from './change-password/change-password.component'; +import { ProfileComponent, EditProfileDialogComponent } from './profile/profile.component'; +import { FlexLayoutModule } from '@angular/flex-layout'; +import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; +import { SystemUsersComponent } from '../system-users/system-users.component'; +import { AddSystemUsersComponent } from '../system-users/add-system-users/add-system-users.component'; + +@NgModule({ + imports: [ + CommonModule, + SharedModule, + FlexLayoutModule, + PerfectScrollbarModule, + // MatDialogModule, + // MatDatepickerModule, + // MyformModule, + // // TablesModule, + // MatNativeDateModule, + RouterModule.forChild(SettingsRoutes), + ], + declarations: [ChangePasswordComponent, AddSystemUsersComponent, SystemUsersComponent, ProfileComponent, EditProfileDialogComponent] +}) +export class SettingsModule { } + diff --git a/src/app/settings/settings.routing.ts b/src/app/settings/settings.routing.ts new file mode 100755 index 0000000..f7f5322 --- /dev/null +++ b/src/app/settings/settings.routing.ts @@ -0,0 +1,27 @@ +import { Routes } from '@angular/router'; +import { AddSystemUsersComponent } from '../system-users/add-system-users/add-system-users.component'; +import { SystemUsersComponent } from '../system-users/system-users.component'; +import { ChangePasswordComponent } from './change-password/change-password.component'; +import { ProfileComponent } from './profile/profile.component'; + +export const SettingsRoutes: Routes = [ + { + path: '', + children: [ + { + path: 'change-password', + component: ChangePasswordComponent + }, { + path: 'profile', + component: ProfileComponent + }, { + path: 'system-users', + component: SystemUsersComponent + }, { + path: 'add-system-users', + component: AddSystemUsersComponent + } + + ] + }, +]; diff --git a/src/app/settings/settings.service.spec.ts b/src/app/settings/settings.service.spec.ts new file mode 100755 index 0000000..6640951 --- /dev/null +++ b/src/app/settings/settings.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { SettingsService } from './settings.service'; + +describe('SettingsService', () => { + beforeEach(() => TestBed.configureTestingModule({ teardown: { destroyAfterEach: false } })); + + it('should be created', () => { + const service: SettingsService = TestBed.get(SettingsService); + expect(service).toBeTruthy(); + }); +}); diff --git a/src/app/settings/settings.service.ts b/src/app/settings/settings.service.ts new file mode 100755 index 0000000..1b5bd55 --- /dev/null +++ b/src/app/settings/settings.service.ts @@ -0,0 +1,47 @@ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http' +import { environment } from 'src/environments/environment' +import { from as fromPromise, Observable } from 'rxjs'; +import { SharedService } from '../shared/shared.service'; +import { ConstantsService } from '../common/services/constants.service'; + +const endpoint = environment.APIv1Endpoint +@Injectable({ + providedIn: 'root' +}) +export class SettingsService { + + constructor(private http: HttpClient, private sharedService: SharedService, private _constant: ConstantsService) { } + + changePassword(data):Observable { + return this.http.put(endpoint + 'users/me/change-password', data) + } + + updateProfile(data, id): Observable { + return this.http.patch(endpoint + 'users/me/profile/', data); + } + + updateImage(data): Observable { + + return fromPromise(new Promise((resolve, reject) => { + + const url = endpoint + 'users/me/profile/'; + + let token= this._constant.getToken(); + + let xhr = new XMLHttpRequest(); + xhr.onreadystatechange = function () { + if (xhr.readyState === 4) { + if (xhr.status === 200) { + resolve(JSON.parse(xhr.response) as any); + } else { + reject(xhr.response) + } + } + } + xhr.open("PATCH", url, true); + xhr.setRequestHeader("Authorization", "Bearer " + token); + xhr.send(data); + })) + } +} diff --git a/src/app/shared/components/base-crud.component.ts b/src/app/shared/components/base-crud.component.ts new file mode 100644 index 0000000..3a88c67 --- /dev/null +++ b/src/app/shared/components/base-crud.component.ts @@ -0,0 +1,45 @@ +import { Component, OnInit } from "@angular/core"; +import { ActivatedRoute, Router } from "@angular/router"; + + + +@Component({ + selector: 'base-crud', + template: '', + styles: [''] +}) +export class BaseCrudComponent implements OnInit { + + id: any; + instance: any + providedInstance: any + + constructor(public route: ActivatedRoute, public router: Router) { + const instance = this.router.getCurrentNavigation()?.extras.state as any; + if (instance) { + this.providedInstance = instance + this.id = instance?.id + } else { + this.id = this.route.snapshot.paramMap.get('id') + } + } + + ngOnInit(): void { + + } + + setIntance(value: any) { + this.instance = value + } + + + onValidatedData(data: any) { + console.log(data) + } + + async onPostedData(value: any) { + // this.router.navigate(["schedules"],) + await window.history.back() + } + +} diff --git a/src/app/shared/graphs/graphs.component.html b/src/app/shared/graphs/graphs.component.html new file mode 100755 index 0000000..05999da --- /dev/null +++ b/src/app/shared/graphs/graphs.component.html @@ -0,0 +1,7 @@ +
+
+ Version 2 under development +
+ +
\ No newline at end of file diff --git a/src/app/shared/graphs/graphs.component.scss b/src/app/shared/graphs/graphs.component.scss new file mode 100755 index 0000000..a05622d --- /dev/null +++ b/src/app/shared/graphs/graphs.component.scss @@ -0,0 +1,3 @@ +.canvas { + height: 300px; +} \ No newline at end of file diff --git a/src/app/shared/graphs/graphs.component.spec.ts b/src/app/shared/graphs/graphs.component.spec.ts new file mode 100755 index 0000000..0f4493e --- /dev/null +++ b/src/app/shared/graphs/graphs.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { GraphsComponent } from './graphs.component'; + +describe('GraphsComponent', () => { + let component: GraphsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [GraphsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(GraphsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/graphs/graphs.component.ts b/src/app/shared/graphs/graphs.component.ts new file mode 100755 index 0000000..0b75013 --- /dev/null +++ b/src/app/shared/graphs/graphs.component.ts @@ -0,0 +1,183 @@ +import { Component, OnInit, Input } from '@angular/core' + +@Component({ + selector: 'app-graphs', + templateUrl: './graphs.component.html', + styleUrls: ['./graphs.component.scss'] +}) +export class GraphsComponent implements OnInit { + + @Input() data: any[] + @Input() chart_type: string + @Input() configs: any + public datasets: any + public labels: any + public chart_options: any; + public colors: any; + public legend: any; + + testData = [ + [{ x: '2016-12-25', y: 20 }, { x: '2016-12-26', y: 10 }], + [{ x: '2016-12-25', y: 20 }, { x: '2016-12-26', y: 10 }] + ] + + + constructor() { } + + ngOnInit() { + + this.generateGraph(this.chart_type, this.data, this.configs) + + } + + // Generate charts + generateGraph(chart_type, data, configs) { + + if (chart_type == 'bar') { + this.generateBarLine(data, configs) + + } else if (chart_type == 'doughnut') { + this.generateDoughnut(data, configs) + } + } + + + globalChartOptions: any = { + responsive: true, + maintainAspectRatio: false, + } + + + // Generate Bar-Line Graph + generateBarLine(data, configs) { + // console.log(data) + this.colors = configs.colors.colors + if (data.series) { + this.datasets = [ + { + data: data.series.series_a, + label: data.series.labels.label_a, + borderWidth: 1, + type: 'bar', + fill: false + }, + { + data: data.series.series_b, + label: data.series.labels.label_b, + borderWidth: 1, + type: 'bar' + } + ] + let labels = {} + let graphData = [] + for (let key in data.series) { + if (key == "labels") { + labels["series_a"] = data.series.labels["label_a"] + labels["series_b"] = data.series.labels["label_b"] + } + } + this.data = [] + for (let key in data.series) { + if (key != "labels") { + graphData.push(data.series[key].map((v) => ({ x: labels[key], y: v }))) + } + } + // console.log(graphData) + this.data = graphData + + } else { + this.data = [ + { + data: data.data, + label: data.data, + borderWidth: 1, + type: 'bar' + } + ] + } + this.labels = data.labels + // console.log(configs) + // console.log(this.globalChartOptions) + this.chart_options = Object.assign({ + legend: { + display: configs.legend, + position: 'bottom' + }, + animation: { + duration: 600, + easing: 'easeInCubic' + }, + scales: { + xAxes: [ + { + gridLines: { + color: configs.colors.xColor, + zeroLineColor: configs.colors.xZeroLineColor + }, + scaleLabel: { + display: true, + labelString: configs.labelString + } + } + ], + yAxes: [ + { + gridLines: { + color: configs.colors.yColor, + zeroLineColor: configs.colors.yZeroLineColor + }, + ticks: { + beginAtZero: true, + suggestedMax: 9 + }, + scaleLabel: { + display: true, + labelString: configs.yLabelString || 'Number of Learners' + } + } + ] + } + }, this.globalChartOptions) + } + + // Generate Doughnut Chart + generateDoughnut(data, configs) { + + this.colors = [ + { + backgroundColor: configs.colors + } + ] + + this.labels = data.labels + this.data = data.data + this.chart_options = Object.assign( + { + legend: { + display: true, + position: 'bottom' + }, + tooltips: { + callbacks: { + label: function (tooltipItem, data) { + let sum = 0; + let dataArr = data['datasets'][0]['data'] + dataArr.map(data => { + sum += data; + }); + let percentage = (data['datasets'][0]['data'][tooltipItem['index']] * 100 / sum).toFixed(2) + "%"; + const dataValue = data['labels'][tooltipItem['index']] + ': ' + data['datasets'][0]['data'][tooltipItem['index']] + ' (' + percentage + ')' + return dataValue; + } + } + }, + elements: { + arc: { + borderWidth: 0 + } + } + }, this.globalChartOptions + ) + + } +} diff --git a/src/app/shared/loader/loader.component.html b/src/app/shared/loader/loader.component.html new file mode 100755 index 0000000..b000985 --- /dev/null +++ b/src/app/shared/loader/loader.component.html @@ -0,0 +1,3 @@ + + + diff --git a/src/app/shared/loader/loader.component.scss b/src/app/shared/loader/loader.component.scss new file mode 100755 index 0000000..39c2152 --- /dev/null +++ b/src/app/shared/loader/loader.component.scss @@ -0,0 +1,65 @@ +// This is just to center the spinner +html, +body { + height: 100%; +} + +body { + display: flex; + align-items: center; + justify-content: center; +} + +// Here is where the magic happens +$offset: 187; +$duration: 1.4s; +.spinner { + animation: rotator $duration linear infinite; + width: 100%; + margin: auto; +} + +@keyframes rotator { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(270deg); + } +} + +.path { + stroke-dasharray: $offset; + stroke-dashoffset: 0; + transform-origin: center; + animation: dash $duration ease-in-out infinite, colors ($duration*4) ease-in-out infinite; +} + +@keyframes colors { + 0% { + stroke: #2196f3; + } + 33% { + stroke: #D80351; + } + 66% { + stroke: #F5D908; + } + 99% { + stroke: #929292; + } +} + +@keyframes dash { + 0% { + stroke-dashoffset: $offset; + } + 50% { + stroke-dashoffset: $offset/4; + transform: rotate(135deg); + } + 100% { + stroke-dashoffset: $offset; + transform: rotate(450deg); + } +} \ No newline at end of file diff --git a/src/app/shared/loader/loader.component.spec.ts b/src/app/shared/loader/loader.component.spec.ts new file mode 100755 index 0000000..1deb57c --- /dev/null +++ b/src/app/shared/loader/loader.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { LoaderComponent } from './loader.component'; + +describe('LoaderComponent', () => { + let component: LoaderComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [LoaderComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(LoaderComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/loader/loader.component.ts b/src/app/shared/loader/loader.component.ts new file mode 100755 index 0000000..858a6f4 --- /dev/null +++ b/src/app/shared/loader/loader.component.ts @@ -0,0 +1,18 @@ + +import { Component, OnInit, Input } from '@angular/core'; +@Component({ + selector: 'app-loader', + templateUrl: './loader.component.html', + styleUrls: ['./loader.component.scss'] +}) +export class LoaderComponent implements OnInit { + + // todo : make the loader sizes dynamic + + constructor() { } + + ngOnInit() { + + } + +} diff --git a/src/app/shared/no-results/no-results.component.html b/src/app/shared/no-results/no-results.component.html new file mode 100755 index 0000000..b0c0507 --- /dev/null +++ b/src/app/shared/no-results/no-results.component.html @@ -0,0 +1,3 @@ + +

No records to populate graphs. ({{duration}})

+
\ No newline at end of file diff --git a/src/app/shared/no-results/no-results.component.scss b/src/app/shared/no-results/no-results.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/shared/no-results/no-results.component.spec.ts b/src/app/shared/no-results/no-results.component.spec.ts new file mode 100755 index 0000000..1830be1 --- /dev/null +++ b/src/app/shared/no-results/no-results.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { NoResultsComponent } from './no-results.component'; + +describe('NoResultsComponent', () => { + let component: NoResultsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [NoResultsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(NoResultsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/no-results/no-results.component.ts b/src/app/shared/no-results/no-results.component.ts new file mode 100755 index 0000000..9695257 --- /dev/null +++ b/src/app/shared/no-results/no-results.component.ts @@ -0,0 +1,18 @@ +import { Component, Input, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-no-results', + templateUrl: './no-results.component.html', + styleUrls: ['./no-results.component.scss'] +}) +export class NoResultsComponent implements OnInit { + + constructor() { } + + @Input() + duration = "" + ngOnInit() { + // todo: enhanced based on use-cases: (404 | 200 - but 0 records) + } + +} diff --git a/src/app/shared/notifications/notifications.component.html b/src/app/shared/notifications/notifications.component.html new file mode 100755 index 0000000..d75fbf9 --- /dev/null +++ b/src/app/shared/notifications/notifications.component.html @@ -0,0 +1,9 @@ +
+
+ {{ data.icon }} +
+
{{ data.message }}
+
+ cancel +
+
\ No newline at end of file diff --git a/src/app/shared/notifications/notifications.component.scss b/src/app/shared/notifications/notifications.component.scss new file mode 100755 index 0000000..a37dda4 --- /dev/null +++ b/src/app/shared/notifications/notifications.component.scss @@ -0,0 +1,7 @@ +.background-red { + background-color: red; +} + +.style-success { + background-color: green; +} \ No newline at end of file diff --git a/src/app/shared/notifications/notifications.component.spec.ts b/src/app/shared/notifications/notifications.component.spec.ts new file mode 100755 index 0000000..f05830b --- /dev/null +++ b/src/app/shared/notifications/notifications.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { NotificationsComponent } from './notifications.component'; + +describe('NotificationsComponent', () => { + let component: NotificationsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [NotificationsComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(NotificationsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/notifications/notifications.component.ts b/src/app/shared/notifications/notifications.component.ts new file mode 100755 index 0000000..c8fc7b3 --- /dev/null +++ b/src/app/shared/notifications/notifications.component.ts @@ -0,0 +1,20 @@ +import { Component, OnInit, Inject } from '@angular/core' +import { MatSnackBar, MAT_SNACK_BAR_DATA } from '@angular/material/snack-bar' + +@Component({ + selector: 'app-notifications', + templateUrl: './notifications.component.html', + styleUrls: ['./notifications.component.scss'] +}) +export class NotificationsComponent { + + durationInSeconds = 5 + + constructor(@Inject(MAT_SNACK_BAR_DATA) public data: any, private snackBar: MatSnackBar) { } + + + dismissSnackBar() { + this.snackBar.dismiss() + } + +} diff --git a/src/app/shared/notifications/notifications.service.spec.ts b/src/app/shared/notifications/notifications.service.spec.ts new file mode 100755 index 0000000..3d9723e --- /dev/null +++ b/src/app/shared/notifications/notifications.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { NotificationsService } from './notifications.service'; + +describe('NotificationsService', () => { + beforeEach(() => TestBed.configureTestingModule({ teardown: { destroyAfterEach: false } })); + + it('should be created', () => { + const service: NotificationsService = TestBed.get(NotificationsService); + expect(service).toBeTruthy(); + }); +}); diff --git a/src/app/shared/notifications/notifications.service.ts b/src/app/shared/notifications/notifications.service.ts new file mode 100755 index 0000000..349f90d --- /dev/null +++ b/src/app/shared/notifications/notifications.service.ts @@ -0,0 +1,58 @@ +import { Injectable } from '@angular/core'; +import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; + +import { NotificationsComponent } from './notifications.component'; + +@Injectable({ + providedIn: 'root' +}) +export class NotificationsService { + + public icon: string = '' + + constructor( + public snackBar: MatSnackBar, + ) { } + + + configSuccess: MatSnackBarConfig = { + panelClass: 'green-snackbar', + duration: 3000, + horizontalPosition: 'right', + verticalPosition: 'bottom' + }; + + notify(message, action = 'info') { + + if (action == 'success') { + this.configSuccess.panelClass = 'green-snackbar' + this.icon = 'done' + + } else if (action == 'error') { + this.configSuccess.panelClass = 'red-snackbar' + this.icon = 'error' + + } else if (action == 'warning') { + this.configSuccess.panelClass = 'yellow-snackbar' + this.icon = 'warning' + + } else if (action == 'info') { + this.configSuccess.panelClass = 'blue-snackbar' + this.icon = 'info' + + } else { + this.icon = 'info' + } + + const prep_message = { + message: message, + icon: this.icon + } + + this.snackBar.openFromComponent(NotificationsComponent, { + data: prep_message, + ...this.configSuccess + }) + } + +} diff --git a/src/app/shared/report-filter/options.ts b/src/app/shared/report-filter/options.ts new file mode 100644 index 0000000..3ded1a9 --- /dev/null +++ b/src/app/shared/report-filter/options.ts @@ -0,0 +1,108 @@ + +const filterOptions = { + "name": "Learner API", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "report_type": { + "type": "field", + "required": true, + "read_only": false, + "label": "Type of Report", + "default": "students", + "choices": [ + { + value: "attendances", + display_name: "Attendance Report" + }, + { + value: "students", + display_name: "Students Report" + } + ] + }, + "grouping": { + "type": "field", + "required": true, + "read_only": false, + "max_length": 45, + "label": "Group By", + "default": "id", + "choices": [ + { + value: "id", + display_name: "No Grouping" + }, + { + value: "class", + display_name: "Class" + }, + { + value: "county", + display_name: "County" + }, + { + value: "sub_county", + display_name: "Sub County" + }, + { + value: "school", + display_name: "School" + }, + { + value: "special-need", + display_name: "Special Needs" + }, + { + value: "student-status", + display_name: "Status" + }, + { + value: "gender", + display_name: "Gender" + }, + { + value: "year", + display_name: "Year" + }, + { + value: "month", + display_name: "Month" + }, + { + value: "week", + display_name: "Week" + }, + { + value: "day", + display_name: "Day" + }, + { + value: "knwos-dob", + display_name: "Knows Date of Birth" + } + ] + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Search First Name" + }, + + } + } +} + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/shared/report-filter/report-filter.component.html b/src/app/shared/report-filter/report-filter.component.html new file mode 100644 index 0000000..5d58347 --- /dev/null +++ b/src/app/shared/report-filter/report-filter.component.html @@ -0,0 +1,64 @@ +
+
+ +
+ +
+ + +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ +
+
+ +
+ + +
+
\ No newline at end of file diff --git a/src/app/shared/report-filter/report-filter.component.scss b/src/app/shared/report-filter/report-filter.component.scss new file mode 100644 index 0000000..dee71e8 --- /dev/null +++ b/src/app/shared/report-filter/report-filter.component.scss @@ -0,0 +1,71 @@ +$primaryblue: #2096f3; +$primarypink: #ff5a5f; +$primarygreen: #43a047; + +.filter-bar { + margin: 15px; + padding: 10px; + background-color: #fff; + border-radius: 10px; + filter: drop-shadow(0px 3px 6px #00000029); +} + +.filter-bar-item { + width: fit-content !important; + font-family: 13px; + font-family: "Prompt-Medium"; + border-right: 1px solid $primaryblue; + padding: 10px; +} + +.filter-bar-item span { + margin: 0px 10px; +} + +.filter-bar-item mat-icon { + width: 18px; + height: 18px; + color: #000; +} + +.drop { + width: 12px !important; + height: 12px !important; + margin: 0px 5px !important; +} + +.filter-btn { + border: 2px solid $primaryblue; + color: $primaryblue; + background-color: transparent; + font-family: "Prompt-Regular"; + font-size: 13px; + padding: 10px 15px; + border-radius: 7px; + opacity: 80%; +} + +.filter-btn:hover { + opacity: 100%; +} + +.apply { + border: none; + background-color: $primarygreen; + color: #fff; +} + +select { + border: 0px; + outline: 0px; + background-color: white; + -webkit-appearance: none; + appearance: none; + box-shadow: none; + font-size: 14px; + cursor: pointer; +} + +.form-control:focus { + box-shadow: none; +} diff --git a/src/app/shared/report-filter/report-filter.component.spec.ts b/src/app/shared/report-filter/report-filter.component.spec.ts new file mode 100644 index 0000000..a7e2a25 --- /dev/null +++ b/src/app/shared/report-filter/report-filter.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { ReportFilterComponent } from './report-filter.component'; + +describe('ReportFilterComponent', () => { + let component: ReportFilterComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ReportFilterComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ReportFilterComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/report-filter/report-filter.component.ts b/src/app/shared/report-filter/report-filter.component.ts new file mode 100644 index 0000000..f588991 --- /dev/null +++ b/src/app/shared/report-filter/report-filter.component.ts @@ -0,0 +1,32 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-report-filter', + templateUrl: './report-filter.component.html', + styleUrls: ['./report-filter.component.scss'] +}) +export class ReportFilterComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + + applyFilters(){ + + } + + + clearFilters(){ + + } + + openPopup() { + document.getElementById("modalcontainer")!.classList.add('show'); + } + + closePopup() { + document.getElementById("modalcontainer")!.classList.remove('show'); + } + +} diff --git a/src/app/shared/report-filter/report-filter.module.ts b/src/app/shared/report-filter/report-filter.module.ts new file mode 100644 index 0000000..42927b0 --- /dev/null +++ b/src/app/shared/report-filter/report-filter.module.ts @@ -0,0 +1,17 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { ReportFilterComponent } from './report-filter.component'; +import { MatIconModule } from '@angular/material/icon'; + +@NgModule({ + imports: [ + CommonModule, + // MyformModule, + MatIconModule + ], + declarations: [ReportFilterComponent], + exports: [ + ReportFilterComponent + ] +}) +export class ReportFilterModule { } diff --git a/src/app/shared/shared.module.spec.ts b/src/app/shared/shared.module.spec.ts new file mode 100755 index 0000000..3ecb626 --- /dev/null +++ b/src/app/shared/shared.module.spec.ts @@ -0,0 +1,13 @@ +import { SharedModule } from './shared.module'; + +describe('SharedModule', () => { + let sharedModule: SharedModule; + + beforeEach(() => { + sharedModule = new SharedModule(); + }); + + it('should create an instance', () => { + expect(sharedModule).toBeTruthy(); + }); +}); diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts new file mode 100755 index 0000000..a34b3c6 --- /dev/null +++ b/src/app/shared/shared.module.ts @@ -0,0 +1,121 @@ +import { NgModule } from '@angular/core' +import { CommonModule } from '@angular/common' +import { TranslateModule } from '@ngx-translate/core' +import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { FlexLayoutModule } from '@angular/flex-layout' +import { MatSnackBarModule } from '@angular/material/snack-bar' +import { QuillModule } from 'ngx-quill' +import { MatCheckboxModule } from '@angular/material/checkbox' +import { TablesComponent, ConfirmDialogComponent } from './tables/tables.component' +import { GraphsComponent } from './graphs/graphs.component' +import { WelcomeBannerComponent } from '../core/welcome-banner/welcome-banner.component'; +import { NoResultsComponent } from './no-results/no-results.component'; +import { LoaderComponent } from './loader/loader.component'; +import { MyformModule } from '@sisitech/myform' +import { TablesModule, TablesService } from '@sisitech/tables' +import { environment } from 'src/environments/environment' +import { HTTP_INTERCEPTORS } from '@angular/common/http' +import { AuthInterceptor } from '../interceptors/auth.interceptor' +import { MatCardModule } from '@angular/material/card' +import { MatButtonModule } from '@angular/material/button' +import { MatDialogModule } from '@angular/material/dialog' +import { MatIconModule } from '@angular/material/icon' +import { MatInputModule } from '@angular/material/input' +import { MatListModule } from '@angular/material/list' +import { MatRadioModule } from '@angular/material/radio' +import { MatProgressBarModule } from '@angular/material/progress-bar' +import { MatToolbarModule } from '@angular/material/toolbar' +import { MatSelectModule } from '@angular/material/select' +import { MatTabsModule } from '@angular/material/tabs' +import { MatButtonToggleModule } from '@angular/material/button-toggle' +import { MatGridListModule } from '@angular/material/grid-list' +import { MatSidenavModule } from '@angular/material/sidenav' +import { MatExpansionModule } from '@angular/material/expansion' +import { MatDatepickerModule } from '@angular/material/datepicker'; + + +const authConfig = { + APIEndpoint: environment.APIEndpointNoSlash, + version: "api/v1", + clientId: environment.APIClientID, +} + +@NgModule({ + + imports: [ + CommonModule, + TranslateModule, + FlexLayoutModule, + QuillModule, + FormsModule, + ReactiveFormsModule, + + MatCardModule, + MatIconModule, + MatInputModule, + MatRadioModule, + MatButtonModule, + MatProgressBarModule, + MatToolbarModule, + MatSelectModule, + MatCheckboxModule, + MatSnackBarModule, + MatDialogModule, + MatListModule, + MatTabsModule, + MatButtonToggleModule, + MatGridListModule, + MatSidenavModule, + MatExpansionModule, + MatDatepickerModule, + + MyformModule.forChild(authConfig), + TablesModule.forChild(authConfig), + ], + + exports: [ + FormsModule, + ReactiveFormsModule, + CommonModule, + TranslateModule, + FlexLayoutModule, + QuillModule, + + MatCardModule, + MatIconModule, + MatInputModule, + MatRadioModule, + MatButtonModule, + MatProgressBarModule, + MatToolbarModule, + MatSelectModule, + MatCheckboxModule, + MatSnackBarModule, + MatDialogModule, + MatListModule, + MatTabsModule, + MatButtonToggleModule, + MatGridListModule, + MatSidenavModule, + MatExpansionModule, + MatDatepickerModule, + + MyformModule, + TablesModule, + TablesComponent, + GraphsComponent, + WelcomeBannerComponent, + NoResultsComponent, + LoaderComponent, + ], + providers: [ + TablesService, + { + provide: HTTP_INTERCEPTORS, + useClass: AuthInterceptor, + multi: true + } + ], + declarations: [TablesComponent, GraphsComponent, WelcomeBannerComponent, LoaderComponent, ConfirmDialogComponent, NoResultsComponent] +}) +export class SharedModule { } diff --git a/src/app/shared/shared.service.spec.ts b/src/app/shared/shared.service.spec.ts new file mode 100755 index 0000000..1ffee0c --- /dev/null +++ b/src/app/shared/shared.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { SharedService } from './shared.service'; + +describe('SharedService', () => { + beforeEach(() => TestBed.configureTestingModule({ teardown: { destroyAfterEach: false } })); + + it('should be created', () => { + const service: SharedService = TestBed.get(SharedService); + expect(service).toBeTruthy(); + }); +}); diff --git a/src/app/shared/shared.service.ts b/src/app/shared/shared.service.ts new file mode 100755 index 0000000..77819ec --- /dev/null +++ b/src/app/shared/shared.service.ts @@ -0,0 +1,97 @@ +import { Injectable } from '@angular/core'; +import { environment } from 'src/environments/environment'; +import { Observable, range, throwError } from 'rxjs' +import { HttpClient,HttpErrorResponse, HttpInterceptor, HttpRequest } from '@angular/common/http' +import * as moment from 'moment' +import { AbstractControl } from '@angular/forms'; + +const endpoint = environment.APIv1Endpoint + +@Injectable({ + providedIn: 'root' +}) +export class SharedService { + + private years: any + private months: any = [] + constructor(private http: HttpClient) { } + + // TODO: need to refactor logic + getFirstDayofYears(year:number = 1900){ + + this.years = [] + let this_year = moment().year() + + for (let count = year; count <= +this_year; count++){ + + let year_day_one = { + name: count, value: count+'-01-01' + } + + this.years.push(year_day_one) + } + return this.years + } + + getFirstDayofMonths(){ + const months = moment.months() + let this_year = moment().year() + + for(let count = 0; count < months.length; count++){ + + this.months.push( + { + name: months[count] , value: this_year+'-01-01' + } + ) + } + return this.months + } + + getRegions(): Observable { + return this.http.get(endpoint+('regions/')) + } + + getDistricts(query: string = ''): Observable { + return this.http.get(endpoint+('districts/?'+query)) + } + + getVillages(query: string=''): Observable { + return this.http.get(endpoint+('villages/?'+query)) + } + + // capitalize first letter + jsUcfirst(string) { + return string.charAt(0).toUpperCase() + string.slice(1); + } + + + confirmPasswordValidator(AC: AbstractControl) { + let password = AC.get('new_password').value; // value of the new password + let confirmPassword = AC.get('c_password').value; // value of the confirm password + if(password != confirmPassword) { + AC.get('c_password').setErrors( {MatchPassword: true} ) + } else { + //console.log('true'); + return null + } + } + + public errorHandler(err: HttpErrorResponse) { + + // if (err.status === 401) { + // console.log('handled error ' + err.error); + // return of(err.error); + // } + // return throwError(err); + + if (err.error instanceof Error) { + console.log('An error occurred:', err.error.message); + return err.error.message; + } else { + console.log (`Backend returned code ${err.status}, body was ${err.error}`); + return err.error; + } + + } +} diff --git a/src/app/shared/tables/confirm-dialog.component.html b/src/app/shared/tables/confirm-dialog.component.html new file mode 100755 index 0000000..bf3ebe3 --- /dev/null +++ b/src/app/shared/tables/confirm-dialog.component.html @@ -0,0 +1,23 @@ +

+ {{ data.page == 'student' ? ' Provide a reason for deleting - ' : 'Confirm to delete' }}
+ {{ data.row.name }} + class {{ data.row.base_class }}{{ data.row.name }} + {{ data.row.full_names }} +

+
+ + + {{reason.description}} + + +
+ + + +
+
+
+ + +
\ No newline at end of file diff --git a/src/app/shared/tables/tables.component.html b/src/app/shared/tables/tables.component.html new file mode 100755 index 0000000..3f0e5c6 --- /dev/null +++ b/src/app/shared/tables/tables.component.html @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/src/app/shared/tables/tables.component.scss b/src/app/shared/tables/tables.component.scss new file mode 100755 index 0000000..04603c1 --- /dev/null +++ b/src/app/shared/tables/tables.component.scss @@ -0,0 +1,9 @@ +.radio-group { + display: flex; + flex-direction: column; + margin: 15px 0; +} + +.radio-button { + margin: 5px; +} \ No newline at end of file diff --git a/src/app/shared/tables/tables.component.spec.ts b/src/app/shared/tables/tables.component.spec.ts new file mode 100755 index 0000000..803865b --- /dev/null +++ b/src/app/shared/tables/tables.component.spec.ts @@ -0,0 +1,31 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { TablesComponent } from './tables.component'; + +describe('TablesComponent', () => { + let component: TablesComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [TablesComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents() + .then(() => { + fixture = TestBed.createComponent(TablesComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + })); + + // beforeEach(() => { + // fixture = TestBed.createComponent(TablesComponent); + // component = fixture.componentInstance; + // fixture.detectChanges(); + // }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/tables/tables.component.ts b/src/app/shared/tables/tables.component.ts new file mode 100755 index 0000000..357dca4 --- /dev/null +++ b/src/app/shared/tables/tables.component.ts @@ -0,0 +1,228 @@ +import { Component, Input, Output, EventEmitter, Inject } from '@angular/core'; +import { Router } from '@angular/router'; +import { SchoolService } from 'src/app/school/school.service'; +import { NotificationsService } from '../notifications/notifications.service'; +import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; + +export interface DialogData { + data: any; + page: any; + row: any; +} + +@Component({ + selector: 'app-tables', + templateUrl: './tables.component.html', + styleUrls: ['./tables.component.scss'] +}) +export class TablesComponent { + + @Input() columns; + @Input() rows; + @Input() data; + @Input() page; + @Input() total; + @Input() pageNumber; + @Input() tablePage; + message: any; + selected = []; + deleteReasons: any; + otherId: any; + @Input() searching; + @Input() searchValue; + @Input() loaderStatus; + search_name = ''; + // searching = false; + @Output() setPage: EventEmitter = new EventEmitter(); + @Output() searchPage: EventEmitter = new EventEmitter(); + @Output() defaultValues: EventEmitter = new EventEmitter(); + userAdmin: boolean; + hideActions: boolean; + + constructor(public router: Router, public schoolService: SchoolService, public notifyService: NotificationsService, + public dialog: MatDialog) { + const user = JSON.parse(localStorage.getItem('user_profile')); + this.userAdmin = (user.role === 'A'); + } + + updateFilter(event) { + const val = event.target.value.toLowerCase(); + // filter our data + const data = this.data.filter(d => { + return d.name.toLowerCase().indexOf(val) !== -1 || !val; + }); + // update the rows + this.rows = data; + } + + onActivate(event) { + const editBtn = document.getElementById('edit-table-btn'); + const deleteBtn = document.getElementById('delete-table-btn'); + } + + pageNumberClicked(page): void { + this.setPage.emit(page); + } + + onSelect({ selected }) { + //console.log('Select Event', selected, this.selected); + + this.selected.splice(0, this.selected.length); + this.selected.push(...selected); + } + + editDetails(data) { + // console.log(this.page) + let name = `${data.first_name}-${data.last_name}`; + if (this.page === 'student') { + this.router.navigate(['students/add-student'], { queryParams: { name, student: data.id } }); + } + if (this.page === 'Teacher') { + this.router.navigate(['teachers/add-teacher'], { queryParams: { name, teacher: data.id } }); + } + if (this.page === 'class') { + name = `${data.base_class + data.name}`; + this.router.navigate(['classes/add-class'], { queryParams: { name, stream: data.id } }); + } + if (this.page === 'school') { + this.router.navigate(['schools/add-school'], { queryParams: { name: data.name, school: data.id } }); + } + } + + deleteDetail(data) { + this.page === 'student' ? this.apiGetDeleteReasons(data) : this.openDialog(data); + } + + viewDetails(data) { + if (this.page === 'school') { + this.router.navigate(['schools/schools-attendance'], { queryParams: { school_name: data.name, school: data.id } }); + } else if (this.page === 'student') { + sessionStorage.setItem('studentDetails', JSON.stringify(data)); + this.router.navigate(['students/details'], { + queryParams: { + //details: JSON.stringify(data), + // details: data, + student: data.id + } + }); + } + } + + generalDelete(url, id) { + this.schoolService.delete(url).subscribe(res => { + this.rows = this.rows.filter(row => row.id != id); + this.total -= 1; + this.notifyService.notify(`${this.page} has been successfully Deleted`, 'success'); + }, + error => { + // console.log(error) + this.notifyService.notify(`An error occured. Please try again after some time!`, 'error'); + }); + } + + openDialog(row): void { + const width = this.page === 'student' ? '350px' : '250px'; + const dialogRef = this.dialog.open(ConfirmDialogComponent, { + width, + data: { row, page: this.page } + }); + + dialogRef.afterClosed().subscribe(res => { + if (res) { + const id = res.id; + if (this.page === 'class') { + const url = `streams/${id}/`; + this.generalDelete(url, id); + } + if (this.page === 'school') { + const url = `schools/${id}/`; + this.generalDelete(url, id); + } + if (this.page === 'Teacher') { + const url = `teachers/${id}/`; + this.generalDelete(url, id); + } + if (this.page === 'student') { + const selectedId = res.selectedId; + const otherReason = res.otherReason; + let url = ''; + if (!selectedId) { return this.notifyService.notify('Select a reason for deleting this student please!', 'error'); } + if (!otherReason.trim() && selectedId == this.otherId) { + return this.notifyService.notify('Provide other reason please!', 'error'); + } + if (otherReason.trim() && selectedId == this.otherId) { + url = `students/${id}/?reason=${selectedId}&description='${otherReason}'`; + } else { + url = `students/${id}/?reason=${selectedId}`; + } + this.generalDelete(url, id); + } + } + }); + } + + apiGetDeleteReasons(data) { + // when delete reasons exist + if (this.deleteReasons) { + data.deleteReasons = this.deleteReasons; + data.otherId = this.otherId; + data.otherReason = ''; + data.selectedId = null; + return this.openDialog(data); + } + + this.schoolService.getStudentDeleteReasons().subscribe(res => { + if (res.results.length < 1) { return alert('No delete reasons provided. Ask admin to add.'); } + const other = res.results.filter(reasons => reasons.name.toLocaleLowerCase() === 'other reason')[0]; + const index = res.results.indexOf(other); + this.otherId = other.id; + res.results.splice(index, 1); + res.results.push(other); + this.deleteReasons = res.results; + data.otherId = this.otherId; + data.deleteReasons = this.deleteReasons; + data.otherReason = ''; + data.selectedId = null; + this.openDialog(data); + }, + error => { + this.notifyService.notify(`An error occured getting delete reasons. Please try again after some time!`, 'error'); + }); + } + + search(searchValue) { + if (!searchValue.trim()) { return; } + //this.searching = true; + this.searchPage.emit(searchValue); + // this.searching = false; + } + + // onKeyDown(event, name) { + // console.log(event, name, 'here'); + + // } + onKeyDown(): void { + if (this.search_name.length <= 1) { + this.defaultValues.emit('defaultValues'); + } + } + +} + + +// confirmation dialog +@Component({ + selector: 'app-confirm-dialog', + templateUrl: 'confirm-dialog.component.html', + styleUrls: ['./tables.component.scss'] +}) +export class ConfirmDialogComponent { + + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: DialogData) { } + + onNoClick(): void { + this.dialogRef.close(); + } +} diff --git a/src/app/system-users/add-system-users/add-system-users.component.html b/src/app/system-users/add-system-users/add-system-users.component.html new file mode 100644 index 0000000..459d56d --- /dev/null +++ b/src/app/system-users/add-system-users/add-system-users.component.html @@ -0,0 +1,11 @@ +
+ +

Add System User

+ + + + +
\ No newline at end of file diff --git a/src/app/system-users/add-system-users/add-system-users.component.scss b/src/app/system-users/add-system-users/add-system-users.component.scss new file mode 100644 index 0000000..3dc9646 --- /dev/null +++ b/src/app/system-users/add-system-users/add-system-users.component.scss @@ -0,0 +1,12 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 15px; + font-size: 14px; +} + diff --git a/src/app/system-users/add-system-users/add-system-users.component.spec.ts b/src/app/system-users/add-system-users/add-system-users.component.spec.ts new file mode 100644 index 0000000..daf0030 --- /dev/null +++ b/src/app/system-users/add-system-users/add-system-users.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { AddSystemUsersComponent } from './add-system-users.component'; + +describe('AddSystemUsersComponent', () => { + let component: AddSystemUsersComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [AddSystemUsersComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddSystemUsersComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/system-users/add-system-users/add-system-users.component.ts b/src/app/system-users/add-system-users/add-system-users.component.ts new file mode 100644 index 0000000..f3e6624 --- /dev/null +++ b/src/app/system-users/add-system-users/add-system-users.component.ts @@ -0,0 +1,35 @@ +import { Component, OnInit } from '@angular/core'; +import { filterOptions as options } from '../options'; + +@Component({ + selector: 'app-add-system-users', + templateUrl: './add-system-users.component.html', + styleUrls: ['./add-system-users.component.scss'] +}) +export class AddSystemUsersComponent implements OnInit { + formItems: any = options; + url: string = "api/v1/users/" + extra_fields: any + originalInstance: any + formGroupOrder = [ + ['first_name', 'last_name'], + ['username'], + ['email'], + ['role'], + ['county'], + ['sub_county'], + ['school'], + ['password'] + ] + instance: any + constructor() { } + onValidatedData(data) { + + } + onPostedData(data) { + + } + ngOnInit() { + } + +} diff --git a/src/app/system-users/options.ts b/src/app/system-users/options.ts new file mode 100644 index 0000000..6cbfda1 --- /dev/null +++ b/src/app/system-users/options.ts @@ -0,0 +1,230 @@ +const filterOptions = { + "name": "List Create Admin Credentials", + "description": "", + "renders": [ + "application/json", + "text/html" + ], + "parses": [ + "application/json", + "application/x-www-form-urlencoded", + "multipart/form-data" + ], + "actions": { + "POST": { + "id": { + "type": "integer", + "required": false, + "read_only": true, + "label": "ID" + }, + "first_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "First name", + "max_length": 150 + }, + "dummy": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Dummy" + }, + "is_school_admin": { + "type": "boolean", + "required": false, + "read_only": true, + "label": "Is school admin" + }, + "teacher": { + "type": "integer", + "required": false, + "read_only": true, + "label": "Teacher" + }, + "school_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "School name" + }, + "emis_code": { + "type": "string", + "required": false, + "read_only": true, + "label": "Emis code" + }, + "role_name": { + "type": "string", + "required": false, + "read_only": true, + "label": "Role name" + }, + "last_name": { + "type": "string", + "required": false, + "read_only": false, + "label": "Last name", + "max_length": 150 + }, + "username": { + "type": "string", + "required": true, + "read_only": false, + "label": "Username", + "help_text": "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.", + "max_length": 150 + }, + "dob": { + "type": "date", + "required": false, + "read_only": false, + "label": "Dob" + }, + "changed_password": { + "type": "boolean", + "required": false, + "read_only": false, + "label": "Changed password" + }, + "role": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Role", + "choices": [ + { + "value": "A", + "display_name": "Admin" + }, + { + "value": "SCHA", + "display_name": "School Admin" + }, + { + "value": "CO", + "display_name": "County Admin" + }, + { + "value": "SCO", + "display_name": "Sub County Admin" + } + ] + }, + "sub_county": { + "type": "multifield", + "required": true, + "read_only": false, + "label": "Sub county", + "display_name": "name", + "placeholder": "Search Sub County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/sub-counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "show_only": "SCO", + "from_field": "role", + }, + "school": { + "type": "multifield", + "required": true, + "read_only": false, + "label": "School", + "multiple": true, + "search_field": "name", + "url": `api/v1/schools/`, + "display_name": "name", + "placeholder": "Search school name..", + "value_field": "id", + "edit_source_field": "items_details", + "show_only": "SCHA", + "from_field": "role", + }, + "county": { + "type": "multifield", + "required": true, + "read_only": false, + "label": "County", + "display_name": "name", + "placeholder": "Search County Name ..", + "value_field": "id", + "edit_source_field": "items_details", + "multiple": true, + "url": `api/v1/counties/`, + "search_field": "name", + "edit_display_name": "item_name", + "res_value_field": "county", + "show_only": "CO", + "from_field": "role", + }, + "image": { + "type": "image upload", + "required": false, + "read_only": false, + "label": "Image" + }, + "email": { + "type": "email", + "required": false, + "read_only": false, + "label": "Email address", + "max_length": 254 + }, + "phone": { + "type": "string", + "required": false, + "read_only": false, + "label": "Phone", + "max_length": 50 + }, + "gender": { + "type": "choice", + "required": false, + "read_only": false, + "label": "Gender", + "choices": [ + { + "value": "M", + "display_name": "Male" + }, + { + "value": "F", + "display_name": "Female" + }, + { + "value": "NS", + "display_name": "Not Set" + } + ] + }, + "password": { + "type": "string", + "required": true, + "read_only": false, + "obscure": true, + "label": "Password", + "max_length": 128 + }, + "profile_image": { + "type": "field", + "required": false, + "read_only": true, + "label": "Profile image" + }, + "gender_display": { + "type": "string", + "required": false, + "read_only": true, + "label": "Gender display" + } + } + } +} + + +export { + filterOptions +} \ No newline at end of file diff --git a/src/app/system-users/system-users.component.html b/src/app/system-users/system-users.component.html new file mode 100644 index 0000000..84399d5 --- /dev/null +++ b/src/app/system-users/system-users.component.html @@ -0,0 +1,18 @@ +
+
+
+

View System Users

+ +
+
+
+ + + +
\ No newline at end of file diff --git a/src/app/system-users/system-users.component.scss b/src/app/system-users/system-users.component.scss new file mode 100644 index 0000000..93fe312 --- /dev/null +++ b/src/app/system-users/system-users.component.scss @@ -0,0 +1,18 @@ +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} + + +:host ::ng-deep { + .form-control { + font-size: 14px !important; + } +} \ No newline at end of file diff --git a/src/app/system-users/system-users.component.spec.ts b/src/app/system-users/system-users.component.spec.ts new file mode 100644 index 0000000..ebd81ee --- /dev/null +++ b/src/app/system-users/system-users.component.spec.ts @@ -0,0 +1,26 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { SystemUsersComponent } from './system-users.component'; + +describe('SystemUsersComponent', () => { + let component: SystemUsersComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [SystemUsersComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(SystemUsersComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/system-users/system-users.component.ts b/src/app/system-users/system-users.component.ts new file mode 100644 index 0000000..0592f99 --- /dev/null +++ b/src/app/system-users/system-users.component.ts @@ -0,0 +1,98 @@ +import { Component, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { filterOptions } from './options'; + + +@Component({ + selector: 'app-system-users', + templateUrl: './system-users.component.html', + styleUrls: ['./system-users.component.scss'] +}) +export class SystemUsersComponent implements OnInit { + + + /// MyTable + url = "api/v1/users" + + // Myform + formItems: any = filterOptions + stats_count = 0 + args = {} + formGroupOrder = [ + + ] + headers = [ + 'id', + 'full_name', + 'username', + 'role_name', + 'email' + ] + + fetchingData = false + constructor(private route: Router) { } + + ngOnInit() { + } + + + onLengthLoaded(res) { + this.stats_count = res + } + + exportTriggerd(event) { + this.route.navigate(['../reports/downloads']); + } + + get exportButtonActive() { + return !this.fetchingData && this.stats_count > 0 + } + + async handleActions(action) { + if (action.name == "Edit") { + const data = action.data; + console.log(data, 'system usersss') + // data.school = { id: data.school, name: data.school_name } + await this.route.navigate(['../settings/add-system-users'], { state: data }); + } + } + + isLoading(status) { + this.fetchingData = status + } + + onValidatedData(data) { + let ignoreFiltersForDecription = ["grouping", "paginator"] + let parsedFilters = {} + let descriptions = [] + for (let key in data) { + const filterValue = data[key] + if (!filterValue) continue + if (typeof filterValue == "object") { + if (filterValue.hasOwnProperty("value")) { + parsedFilters[key] = filterValue.value + } + if (filterValue.hasOwnProperty("details")) { + for (let index in filterValue.details) { + const description = filterValue.details[index] + if (description.hasOwnProperty("description")) { + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(description.description) + } + } + } + } else { + parsedFilters[key] = filterValue + if (!ignoreFiltersForDecription.includes(key)) + descriptions.push(`${key}*${filterValue}`) + } + } + if (descriptions.length > 0) + parsedFilters["descriptions"] = descriptions.join("-") + this.url = `api/v1/users` + this.args = parsedFilters + // console.log(parsedFilters) + // console.log(this.url) + } + +} diff --git a/src/app/website/website.component.html b/src/app/website/website.component.html new file mode 100755 index 0000000..98375d7 --- /dev/null +++ b/src/app/website/website.component.html @@ -0,0 +1,3 @@ +

+ website works! +

diff --git a/src/app/website/website.component.scss b/src/app/website/website.component.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/app/website/website.component.spec.ts b/src/app/website/website.component.spec.ts new file mode 100755 index 0000000..dada41f --- /dev/null +++ b/src/app/website/website.component.spec.ts @@ -0,0 +1,31 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { WebsiteComponent } from './website.component'; + +describe('WebsiteComponent', () => { + let component: WebsiteComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [WebsiteComponent], + teardown: { destroyAfterEach: false } +}) + .compileComponents() + .then(() => { + fixture = TestBed.createComponent(WebsiteComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + })); + + // beforeEach(() => { + // fixture = TestBed.createComponent(WebsiteComponent); + // component = fixture.componentInstance; + // fixture.detectChanges(); + // }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/website/website.component.ts b/src/app/website/website.component.ts new file mode 100755 index 0000000..e7297d2 --- /dev/null +++ b/src/app/website/website.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-website', + templateUrl: './website.component.html', + styleUrls: ['./website.component.scss'] +}) +export class WebsiteComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/assets/.gitkeep b/src/assets/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/src/assets/data/100k.json b/src/assets/data/100k.json new file mode 100755 index 0000000..0f07fac --- /dev/null +++ b/src/assets/data/100k.json @@ -0,0 +1,100002 @@ +[ + { + "id": 0, + "name": "Ramsey Cummings", + "gender": "male", + "age": 52, + "address": { + "state": "South Carolina", + "city": "Glendale" + } + }, + { + "id": 1, + "name": "Stefanie Huff", + "gender": "female", + "age": 70, + "address": { + "state": "Arizona", + "city": "Beaverdale" + } + }, + { + "id": 2, + "name": "Mabel David", + "gender": "female", + "age": 52, + "address": { + "state": "New Mexico", + "city": "Grazierville" + } + }, + { + "id": 3, + "name": "Frank Bradford", + "gender": "male", + "age": 61, + "address": { + "state": "Wisconsin", + "city": "Saranap" + } + }, + { + "id": 4, + "name": "Forbes Levine", + "gender": "male", + "age": 34, + "address": { + "state": "Vermont", + "city": "Norris" + } + }, + { + "id": 5, + "name": "Santiago Mcclain", + "gender": "male", + "age": 38, + "address": { + "state": "Montana", + "city": "Bordelonville" + } + }, + { + "id": 6, + "name": "Merritt Booker", + "gender": "male", + "age": 33, + "address": { + "state": "New Jersey", + "city": "Aguila" + } + }, + { + "id": 7, + "name": "Oconnor Wade", + "gender": "male", + "age": 18, + "address": { + "state": "Virginia", + "city": "Kenmar" + } + }, + { + "id": 8, + "name": "Leigh Beasley", + "gender": "female", + "age": 53, + "address": { + "state": "Texas", + "city": "Alfarata" + } + }, + { + "id": 9, + "name": "Johns Wood", + "gender": "male", + "age": 52, + "address": { + "state": "Maine", + "city": "Witmer" + } + }, + { + "id": 10, + "name": "Thompson Hays", + "gender": "male", + "age": 38, + "address": { + "state": "Nevada", + "city": "Kipp" + } + }, + { + "id": 11, + "name": "Hallie Mack", + "gender": "female", + "age": 19, + "address": { + "state": "Minnesota", + "city": "Darrtown" + } + }, + { + "id": 12, + "name": "Houston Santos", + "gender": "male", + "age": 24, + "address": { + "state": "Georgia", + "city": "Crucible" + } + }, + { + "id": 13, + "name": "Brandy Savage", + "gender": "female", + "age": 65, + "address": { + "state": "Idaho", + "city": "Nord" + } + }, + { + "id": 14, + "name": "Finch Barnett", + "gender": "male", + "age": 22, + "address": { + "state": "Ohio", + "city": "Osmond" + } + }, + { + "id": 15, + "name": "Nicole Crosby", + "gender": "female", + "age": 77, + "address": { + "state": "Kentucky", + "city": "Fairfield" + } + }, + { + "id": 16, + "name": "Carrie Mcconnell", + "gender": "female", + "age": 26, + "address": { + "state": "South Dakota", + "city": "Waikele" + } + }, + { + "id": 17, + "name": "Ann James", + "gender": "female", + "age": 37, + "address": { + "state": "North Dakota", + "city": "Siglerville" + } + }, + { + "id": 18, + "name": "Becky Sanford", + "gender": "female", + "age": 48, + "address": { + "state": "Massachusetts", + "city": "Celeryville" + } + }, + { + "id": 19, + "name": "Kathryn Rios", + "gender": "female", + "age": 39, + "address": { + "state": "Delaware", + "city": "Kylertown" + } + }, + { + "id": 20, + "name": "Dotson Vaughn", + "gender": "male", + "age": 68, + "address": { + "state": "Arkansas", + "city": "Monument" + } + }, + { + "id": 21, + "name": "Wright Kline", + "gender": "male", + "age": 41, + "address": { + "state": "Missouri", + "city": "Bynum" + } + }, + { + "id": 22, + "name": "Lula Morgan", + "gender": "female", + "age": 52, + "address": { + "state": "Oregon", + "city": "Mapletown" + } + }, + { + "id": 23, + "name": "Kay Mendez", + "gender": "female", + "age": 50, + "address": { + "state": "Michigan", + "city": "Twilight" + } + }, + { + "id": 24, + "name": "Mona Maddox", + "gender": "female", + "age": 35, + "address": { + "state": "Wyoming", + "city": "Wilmington" + } + }, + { + "id": 25, + "name": "Fulton Velez", + "gender": "male", + "age": 66, + "address": { + "state": "Colorado", + "city": "Loretto" + } + }, + { + "id": 26, + "name": "Ericka Craft", + "gender": "female", + "age": 80, + "address": { + "state": "Nebraska", + "city": "Beaulieu" + } + }, + { + "id": 27, + "name": "Richmond Rodriguez", + "gender": "male", + "age": 62, + "address": { + "state": "Rhode Island", + "city": "Vallonia" + } + }, + { + "id": 28, + "name": "Olsen Farmer", + "gender": "male", + "age": 45, + "address": { + "state": "Connecticut", + "city": "Romeville" + } + }, + { + "id": 29, + "name": "Sophie Austin", + "gender": "female", + "age": 59, + "address": { + "state": "New Hampshire", + "city": "Gorst" + } + }, + { + "id": 30, + "name": "Alta Olsen", + "gender": "female", + "age": 58, + "address": { + "state": "Florida", + "city": "Drytown" + } + }, + { + "id": 31, + "name": "Katherine Chavez", + "gender": "female", + "age": 20, + "address": { + "state": "Mississippi", + "city": "Trucksville" + } + }, + { + "id": 32, + "name": "Yvette Myers", + "gender": "female", + "age": 69, + "address": { + "state": "Washington", + "city": "Bangor" + } + }, + { + "id": 33, + "name": "Nguyen Dean", + "gender": "male", + "age": 58, + "address": { + "state": "Alaska", + "city": "Caroline" + } + }, + { + "id": 34, + "name": "Lauri Irwin", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Takilma" + } + }, + { + "id": 35, + "name": "David Mclean", + "gender": "male", + "age": 49, + "address": { + "state": "Louisiana", + "city": "Harviell" + } + }, + { + "id": 36, + "name": "Tisha Cotton", + "gender": "female", + "age": 78, + "address": { + "state": "Illinois", + "city": "Camas" + } + }, + { + "id": 37, + "name": "Eliza Conrad", + "gender": "female", + "age": 82, + "address": { + "state": "Utah", + "city": "Gwynn" + } + }, + { + "id": 38, + "name": "Bolton Cooley", + "gender": "male", + "age": 44, + "address": { + "state": "Oklahoma", + "city": "Glidden" + } + }, + { + "id": 39, + "name": "Crosby Osborn", + "gender": "male", + "age": 44, + "address": { + "state": "Alabama", + "city": "Buxton" + } + }, + { + "id": 40, + "name": "Reese Tran", + "gender": "male", + "age": 53, + "address": { + "state": "Maryland", + "city": "Kempton" + } + }, + { + "id": 41, + "name": "Evangeline Larson", + "gender": "female", + "age": 49, + "address": { + "state": "Pennsylvania", + "city": "Mayfair" + } + }, + { + "id": 42, + "name": "Jimenez Frazier", + "gender": "male", + "age": 23, + "address": { + "state": "California", + "city": "Ronco" + } + }, + { + "id": 43, + "name": "Conner Tate", + "gender": "male", + "age": 39, + "address": { + "state": "West Virginia", + "city": "Eastvale" + } + }, + { + "id": 44, + "name": "Avery Rosales", + "gender": "male", + "age": 71, + "address": { + "state": "Tennessee", + "city": "Cascades" + } + }, + { + "id": 45, + "name": "Burris Marquez", + "gender": "male", + "age": 32, + "address": { + "state": "North Carolina", + "city": "Chamizal" + } + }, + { + "id": 46, + "name": "Hoover Cardenas", + "gender": "male", + "age": 65, + "address": { + "state": "Kansas", + "city": "Joes" + } + }, + { + "id": 47, + "name": "Moran Gomez", + "gender": "male", + "age": 40, + "address": { + "state": "New York", + "city": "Knowlton" + } + }, + { + "id": 48, + "name": "Boyd Juarez", + "gender": "male", + "age": 33, + "address": { + "state": "Iowa", + "city": "Hemlock" + } + }, + { + "id": 49, + "name": "John Mooney", + "gender": "female", + "age": 73, + "address": { + "state": "Rhode Island", + "city": "Gardners" + } + }, + { + "id": 50, + "name": "Avery Crawford", + "gender": "male", + "age": 39, + "address": { + "state": "Hawaii", + "city": "Woodruff" + } + }, + { + "id": 51, + "name": "Hudson Manning", + "gender": "male", + "age": 27, + "address": { + "state": "New York", + "city": "Bakersville" + } + }, + { + "id": 52, + "name": "Claudia Haney", + "gender": "female", + "age": 62, + "address": { + "state": "Massachusetts", + "city": "Worton" + } + }, + { + "id": 53, + "name": "Barlow Harding", + "gender": "male", + "age": 80, + "address": { + "state": "New Jersey", + "city": "Bentley" + } + }, + { + "id": 54, + "name": "Carolyn Castro", + "gender": "female", + "age": 64, + "address": { + "state": "Wyoming", + "city": "Kingstowne" + } + }, + { + "id": 55, + "name": "Bridges Stokes", + "gender": "male", + "age": 25, + "address": { + "state": "Utah", + "city": "Eagleville" + } + }, + { + "id": 56, + "name": "William Yates", + "gender": "male", + "age": 56, + "address": { + "state": "Maryland", + "city": "Loretto" + } + }, + { + "id": 57, + "name": "Doyle Shaw", + "gender": "male", + "age": 52, + "address": { + "state": "Delaware", + "city": "Evergreen" + } + }, + { + "id": 58, + "name": "Becker Schmidt", + "gender": "male", + "age": 68, + "address": { + "state": "Minnesota", + "city": "Nescatunga" + } + }, + { + "id": 59, + "name": "Karla Good", + "gender": "female", + "age": 47, + "address": { + "state": "Oregon", + "city": "Balm" + } + }, + { + "id": 60, + "name": "Shepard Massey", + "gender": "male", + "age": 61, + "address": { + "state": "Kansas", + "city": "Deputy" + } + }, + { + "id": 61, + "name": "Ellison Lara", + "gender": "male", + "age": 73, + "address": { + "state": "Michigan", + "city": "Marne" + } + }, + { + "id": 62, + "name": "Jodi Horton", + "gender": "female", + "age": 60, + "address": { + "state": "Maine", + "city": "Cumberland" + } + }, + { + "id": 63, + "name": "Santana Beasley", + "gender": "male", + "age": 55, + "address": { + "state": "Iowa", + "city": "Ticonderoga" + } + }, + { + "id": 64, + "name": "Atkins Mcintyre", + "gender": "male", + "age": 76, + "address": { + "state": "West Virginia", + "city": "Robinette" + } + }, + { + "id": 65, + "name": "Margie Lang", + "gender": "female", + "age": 47, + "address": { + "state": "Mississippi", + "city": "Silkworth" + } + }, + { + "id": 66, + "name": "Effie Morales", + "gender": "female", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Wyoming" + } + }, + { + "id": 67, + "name": "Merritt Marshall", + "gender": "male", + "age": 70, + "address": { + "state": "Alaska", + "city": "Hackneyville" + } + }, + { + "id": 68, + "name": "Nikki Valentine", + "gender": "female", + "age": 23, + "address": { + "state": "Connecticut", + "city": "Dana" + } + }, + { + "id": 69, + "name": "Whitaker Suarez", + "gender": "male", + "age": 42, + "address": { + "state": "Colorado", + "city": "Edgewater" + } + }, + { + "id": 70, + "name": "Mendez Ramsey", + "gender": "male", + "age": 82, + "address": { + "state": "Washington", + "city": "Terlingua" + } + }, + { + "id": 71, + "name": "Latasha Guthrie", + "gender": "female", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Moraida" + } + }, + { + "id": 72, + "name": "Penelope Diaz", + "gender": "female", + "age": 24, + "address": { + "state": "Louisiana", + "city": "Umapine" + } + }, + { + "id": 73, + "name": "Gomez Chaney", + "gender": "male", + "age": 23, + "address": { + "state": "Virginia", + "city": "Nelson" + } + }, + { + "id": 74, + "name": "Wilma Morris", + "gender": "female", + "age": 47, + "address": { + "state": "Vermont", + "city": "Draper" + } + }, + { + "id": 75, + "name": "Jimenez Randall", + "gender": "male", + "age": 19, + "address": { + "state": "Texas", + "city": "Elizaville" + } + }, + { + "id": 76, + "name": "Greta Barry", + "gender": "female", + "age": 27, + "address": { + "state": "Arkansas", + "city": "Bellfountain" + } + }, + { + "id": 77, + "name": "Pam Wilder", + "gender": "female", + "age": 24, + "address": { + "state": "Georgia", + "city": "Hannasville" + } + }, + { + "id": 78, + "name": "Brittney Serrano", + "gender": "female", + "age": 61, + "address": { + "state": "Kentucky", + "city": "Fairview" + } + }, + { + "id": 79, + "name": "Hernandez Zamora", + "gender": "male", + "age": 42, + "address": { + "state": "Illinois", + "city": "Bethpage" + } + }, + { + "id": 80, + "name": "Teri Butler", + "gender": "female", + "age": 59, + "address": { + "state": "Oklahoma", + "city": "Ruffin" + } + }, + { + "id": 81, + "name": "Mercedes Glover", + "gender": "female", + "age": 30, + "address": { + "state": "Tennessee", + "city": "Darrtown" + } + }, + { + "id": 82, + "name": "Simone Burns", + "gender": "female", + "age": 65, + "address": { + "state": "South Carolina", + "city": "Idamay" + } + }, + { + "id": 83, + "name": "Herrera Norman", + "gender": "male", + "age": 54, + "address": { + "state": "North Dakota", + "city": "Tibbie" + } + }, + { + "id": 84, + "name": "Lea Hunter", + "gender": "female", + "age": 39, + "address": { + "state": "Montana", + "city": "Cedarville" + } + }, + { + "id": 85, + "name": "Briana Mckay", + "gender": "female", + "age": 18, + "address": { + "state": "Idaho", + "city": "Ona" + } + }, + { + "id": 86, + "name": "Letha Kirk", + "gender": "female", + "age": 75, + "address": { + "state": "Pennsylvania", + "city": "Bayview" + } + }, + { + "id": 87, + "name": "Head Finch", + "gender": "male", + "age": 60, + "address": { + "state": "Alabama", + "city": "Ruckersville" + } + }, + { + "id": 88, + "name": "Lauri Bates", + "gender": "female", + "age": 40, + "address": { + "state": "Missouri", + "city": "Skyland" + } + }, + { + "id": 89, + "name": "Corine Reyes", + "gender": "female", + "age": 49, + "address": { + "state": "Nebraska", + "city": "Fredericktown" + } + }, + { + "id": 90, + "name": "Hattie Powell", + "gender": "female", + "age": 36, + "address": { + "state": "Nevada", + "city": "Remington" + } + }, + { + "id": 91, + "name": "Coffey Wolf", + "gender": "male", + "age": 40, + "address": { + "state": "North Carolina", + "city": "Stagecoach" + } + }, + { + "id": 92, + "name": "Knowles Rowe", + "gender": "male", + "age": 77, + "address": { + "state": "California", + "city": "Hardyville" + } + }, + { + "id": 93, + "name": "Leona Blair", + "gender": "female", + "age": 35, + "address": { + "state": "Indiana", + "city": "Crayne" + } + }, + { + "id": 94, + "name": "Meadows Hebert", + "gender": "male", + "age": 42, + "address": { + "state": "Wisconsin", + "city": "Levant" + } + }, + { + "id": 95, + "name": "Francis Becker", + "gender": "female", + "age": 63, + "address": { + "state": "Florida", + "city": "Rehrersburg" + } + }, + { + "id": 96, + "name": "Huber Wilcox", + "gender": "male", + "age": 57, + "address": { + "state": "Ohio", + "city": "Hessville" + } + }, + { + "id": 97, + "name": "Jeanie Graham", + "gender": "female", + "age": 37, + "address": { + "state": "Arizona", + "city": "Foxworth" + } + }, + { + "id": 98, + "name": "Genevieve Barr", + "gender": "female", + "age": 40, + "address": { + "state": "Oklahoma", + "city": "Greenbackville" + } + }, + { + "id": 99, + "name": "Leonard Randolph", + "gender": "male", + "age": 54, + "address": { + "state": "South Carolina", + "city": "Bath" + } + }, + { + "id": 100, + "name": "Hartman Mcgowan", + "gender": "male", + "age": 66, + "address": { + "state": "Wyoming", + "city": "Veyo" + } + }, + { + "id": 101, + "name": "Aline Maxwell", + "gender": "female", + "age": 66, + "address": { + "state": "California", + "city": "Curtice" + } + }, + { + "id": 102, + "name": "Maldonado Conway", + "gender": "male", + "age": 42, + "address": { + "state": "Michigan", + "city": "Montura" + } + }, + { + "id": 103, + "name": "Shari Reyes", + "gender": "female", + "age": 47, + "address": { + "state": "Rhode Island", + "city": "Ellerslie" + } + }, + { + "id": 104, + "name": "Lidia Conner", + "gender": "female", + "age": 42, + "address": { + "state": "West Virginia", + "city": "Cawood" + } + }, + { + "id": 105, + "name": "Murphy Wiley", + "gender": "male", + "age": 53, + "address": { + "state": "North Carolina", + "city": "Mappsville" + } + }, + { + "id": 106, + "name": "Frye Hendricks", + "gender": "male", + "age": 33, + "address": { + "state": "South Dakota", + "city": "Coultervillle" + } + }, + { + "id": 107, + "name": "Torres Mcclure", + "gender": "male", + "age": 82, + "address": { + "state": "Kentucky", + "city": "Wacissa" + } + }, + { + "id": 108, + "name": "Leblanc Schneider", + "gender": "male", + "age": 64, + "address": { + "state": "Montana", + "city": "Glenshaw" + } + }, + { + "id": 109, + "name": "Stevenson Arnold", + "gender": "male", + "age": 19, + "address": { + "state": "Mississippi", + "city": "Joes" + } + }, + { + "id": 110, + "name": "Hogan Ortiz", + "gender": "male", + "age": 45, + "address": { + "state": "Pennsylvania", + "city": "Watchtower" + } + }, + { + "id": 111, + "name": "Colleen Herman", + "gender": "female", + "age": 59, + "address": { + "state": "Tennessee", + "city": "Edgar" + } + }, + { + "id": 112, + "name": "Casandra Wolfe", + "gender": "female", + "age": 18, + "address": { + "state": "New Mexico", + "city": "Alderpoint" + } + }, + { + "id": 113, + "name": "Laverne Powell", + "gender": "female", + "age": 29, + "address": { + "state": "Iowa", + "city": "Hanover" + } + }, + { + "id": 114, + "name": "Solis Pitts", + "gender": "male", + "age": 52, + "address": { + "state": "Alaska", + "city": "Sparkill" + } + }, + { + "id": 115, + "name": "Young Drake", + "gender": "male", + "age": 77, + "address": { + "state": "Arizona", + "city": "Venice" + } + }, + { + "id": 116, + "name": "Vaughan Boone", + "gender": "male", + "age": 80, + "address": { + "state": "Illinois", + "city": "Fannett" + } + }, + { + "id": 117, + "name": "Meyers Bonner", + "gender": "male", + "age": 27, + "address": { + "state": "Minnesota", + "city": "Echo" + } + }, + { + "id": 118, + "name": "Marian Sweeney", + "gender": "female", + "age": 30, + "address": { + "state": "Massachusetts", + "city": "Haring" + } + }, + { + "id": 119, + "name": "Mary Bowen", + "gender": "female", + "age": 41, + "address": { + "state": "Nebraska", + "city": "Staples" + } + }, + { + "id": 120, + "name": "Beryl Coffey", + "gender": "female", + "age": 29, + "address": { + "state": "Ohio", + "city": "Cowiche" + } + }, + { + "id": 121, + "name": "Ewing Garcia", + "gender": "male", + "age": 68, + "address": { + "state": "Alabama", + "city": "Enoree" + } + }, + { + "id": 122, + "name": "Jan Mason", + "gender": "female", + "age": 35, + "address": { + "state": "Washington", + "city": "Itmann" + } + }, + { + "id": 123, + "name": "Mallory Byrd", + "gender": "female", + "age": 75, + "address": { + "state": "Indiana", + "city": "Worcester" + } + }, + { + "id": 124, + "name": "Terry Rosales", + "gender": "male", + "age": 29, + "address": { + "state": "North Dakota", + "city": "Twilight" + } + }, + { + "id": 125, + "name": "Mcclure Barlow", + "gender": "male", + "age": 62, + "address": { + "state": "Wisconsin", + "city": "Diaperville" + } + }, + { + "id": 126, + "name": "Melton Hunt", + "gender": "male", + "age": 34, + "address": { + "state": "Louisiana", + "city": "Stollings" + } + }, + { + "id": 127, + "name": "Cathy Berger", + "gender": "female", + "age": 56, + "address": { + "state": "New York", + "city": "Bonanza" + } + }, + { + "id": 128, + "name": "Porter Rosa", + "gender": "male", + "age": 74, + "address": { + "state": "Georgia", + "city": "Moquino" + } + }, + { + "id": 129, + "name": "Harvey Bradley", + "gender": "male", + "age": 23, + "address": { + "state": "Maine", + "city": "Santel" + } + }, + { + "id": 130, + "name": "Cornelia Barron", + "gender": "female", + "age": 66, + "address": { + "state": "Nevada", + "city": "Finzel" + } + }, + { + "id": 131, + "name": "Hallie Reynolds", + "gender": "female", + "age": 25, + "address": { + "state": "Delaware", + "city": "Sidman" + } + }, + { + "id": 132, + "name": "Key Dillon", + "gender": "male", + "age": 17, + "address": { + "state": "New Hampshire", + "city": "Siglerville" + } + }, + { + "id": 133, + "name": "Hale Howell", + "gender": "male", + "age": 57, + "address": { + "state": "Texas", + "city": "Stonybrook" + } + }, + { + "id": 134, + "name": "Hester Glass", + "gender": "male", + "age": 22, + "address": { + "state": "Oregon", + "city": "Dalton" + } + }, + { + "id": 135, + "name": "Winnie Chen", + "gender": "female", + "age": 30, + "address": { + "state": "Missouri", + "city": "Cassel" + } + }, + { + "id": 136, + "name": "Ladonna Hooper", + "gender": "female", + "age": 80, + "address": { + "state": "Kansas", + "city": "Ryderwood" + } + }, + { + "id": 137, + "name": "Phillips Mays", + "gender": "male", + "age": 77, + "address": { + "state": "Florida", + "city": "Nanafalia" + } + }, + { + "id": 138, + "name": "Rivera Nguyen", + "gender": "male", + "age": 67, + "address": { + "state": "Virginia", + "city": "Gadsden" + } + }, + { + "id": 139, + "name": "Mckinney Walton", + "gender": "male", + "age": 41, + "address": { + "state": "Connecticut", + "city": "Nogal" + } + }, + { + "id": 140, + "name": "Pickett Patton", + "gender": "male", + "age": 71, + "address": { + "state": "Vermont", + "city": "Boling" + } + }, + { + "id": 141, + "name": "Stevens Chavez", + "gender": "male", + "age": 21, + "address": { + "state": "Arkansas", + "city": "Snelling" + } + }, + { + "id": 142, + "name": "Wilkins Duncan", + "gender": "male", + "age": 19, + "address": { + "state": "Idaho", + "city": "Gerber" + } + }, + { + "id": 143, + "name": "Ellis Jacobson", + "gender": "male", + "age": 54, + "address": { + "state": "Hawaii", + "city": "Chamizal" + } + }, + { + "id": 144, + "name": "Cristina Scott", + "gender": "female", + "age": 81, + "address": { + "state": "Colorado", + "city": "Waterview" + } + }, + { + "id": 145, + "name": "Huff Navarro", + "gender": "male", + "age": 33, + "address": { + "state": "Maryland", + "city": "Mammoth" + } + }, + { + "id": 146, + "name": "Reynolds Humphrey", + "gender": "male", + "age": 72, + "address": { + "state": "New Jersey", + "city": "Williamson" + } + }, + { + "id": 147, + "name": "Gay Grant", + "gender": "male", + "age": 53, + "address": { + "state": "Vermont", + "city": "Frystown" + } + }, + { + "id": 148, + "name": "Kim Martin", + "gender": "female", + "age": 64, + "address": { + "state": "Florida", + "city": "Tioga" + } + }, + { + "id": 149, + "name": "Mccormick Turner", + "gender": "male", + "age": 68, + "address": { + "state": "Mississippi", + "city": "Yukon" + } + }, + { + "id": 150, + "name": "Mcdowell Emerson", + "gender": "male", + "age": 60, + "address": { + "state": "Indiana", + "city": "Dorneyville" + } + }, + { + "id": 151, + "name": "Maritza Hardin", + "gender": "female", + "age": 63, + "address": { + "state": "Arkansas", + "city": "Keller" + } + }, + { + "id": 152, + "name": "Hess Richardson", + "gender": "male", + "age": 23, + "address": { + "state": "Kentucky", + "city": "Clarksburg" + } + }, + { + "id": 153, + "name": "Rhonda Faulkner", + "gender": "female", + "age": 23, + "address": { + "state": "Minnesota", + "city": "Wheatfields" + } + }, + { + "id": 154, + "name": "Morgan Wade", + "gender": "female", + "age": 51, + "address": { + "state": "Wisconsin", + "city": "Chamberino" + } + }, + { + "id": 155, + "name": "Clarice Morales", + "gender": "female", + "age": 47, + "address": { + "state": "North Dakota", + "city": "Hobucken" + } + }, + { + "id": 156, + "name": "Mayo Silva", + "gender": "male", + "age": 47, + "address": { + "state": "Ohio", + "city": "Beaulieu" + } + }, + { + "id": 157, + "name": "Sullivan Bryan", + "gender": "male", + "age": 74, + "address": { + "state": "Oregon", + "city": "Darbydale" + } + }, + { + "id": 158, + "name": "Kristin Carrillo", + "gender": "female", + "age": 78, + "address": { + "state": "California", + "city": "Brooktrails" + } + }, + { + "id": 159, + "name": "Gallagher Tillman", + "gender": "male", + "age": 34, + "address": { + "state": "Illinois", + "city": "Ypsilanti" + } + }, + { + "id": 160, + "name": "Aimee Mathews", + "gender": "female", + "age": 51, + "address": { + "state": "West Virginia", + "city": "Reno" + } + }, + { + "id": 161, + "name": "Maura Meyers", + "gender": "female", + "age": 38, + "address": { + "state": "Arizona", + "city": "Yardville" + } + }, + { + "id": 162, + "name": "Slater Wilder", + "gender": "male", + "age": 28, + "address": { + "state": "South Dakota", + "city": "Celeryville" + } + }, + { + "id": 163, + "name": "Tameka Ochoa", + "gender": "female", + "age": 38, + "address": { + "state": "Iowa", + "city": "Winchester" + } + }, + { + "id": 164, + "name": "Roth Hammond", + "gender": "male", + "age": 29, + "address": { + "state": "Maine", + "city": "Bergoo" + } + }, + { + "id": 165, + "name": "Durham Higgins", + "gender": "male", + "age": 65, + "address": { + "state": "Oklahoma", + "city": "Jessie" + } + }, + { + "id": 166, + "name": "Janice Carey", + "gender": "female", + "age": 36, + "address": { + "state": "Georgia", + "city": "Shaft" + } + }, + { + "id": 167, + "name": "Elva Downs", + "gender": "female", + "age": 24, + "address": { + "state": "Delaware", + "city": "Stagecoach" + } + }, + { + "id": 168, + "name": "Emerson Wolf", + "gender": "male", + "age": 72, + "address": { + "state": "Montana", + "city": "Toftrees" + } + }, + { + "id": 169, + "name": "Mitchell Greene", + "gender": "male", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Mulberry" + } + }, + { + "id": 170, + "name": "Pope Poole", + "gender": "male", + "age": 45, + "address": { + "state": "Rhode Island", + "city": "Nicholson" + } + }, + { + "id": 171, + "name": "Bradford Montgomery", + "gender": "male", + "age": 74, + "address": { + "state": "Virginia", + "city": "Sandston" + } + }, + { + "id": 172, + "name": "Lakeisha Joseph", + "gender": "female", + "age": 27, + "address": { + "state": "Colorado", + "city": "Tedrow" + } + }, + { + "id": 173, + "name": "Shari Boyle", + "gender": "female", + "age": 21, + "address": { + "state": "Kansas", + "city": "Freeburn" + } + }, + { + "id": 174, + "name": "Kathleen Newman", + "gender": "female", + "age": 76, + "address": { + "state": "Nevada", + "city": "Fairfield" + } + }, + { + "id": 175, + "name": "Rosanna Merritt", + "gender": "female", + "age": 40, + "address": { + "state": "Idaho", + "city": "Oretta" + } + }, + { + "id": 176, + "name": "Betsy Jacobs", + "gender": "female", + "age": 55, + "address": { + "state": "Nebraska", + "city": "Geyserville" + } + }, + { + "id": 177, + "name": "Rae Cox", + "gender": "female", + "age": 74, + "address": { + "state": "North Carolina", + "city": "Klagetoh" + } + }, + { + "id": 178, + "name": "Dodson Delacruz", + "gender": "male", + "age": 24, + "address": { + "state": "Maryland", + "city": "Thermal" + } + }, + { + "id": 179, + "name": "Anastasia Monroe", + "gender": "female", + "age": 54, + "address": { + "state": "Connecticut", + "city": "Oley" + } + }, + { + "id": 180, + "name": "Goldie Reid", + "gender": "female", + "age": 72, + "address": { + "state": "Alaska", + "city": "Kohatk" + } + }, + { + "id": 181, + "name": "Dillard Fox", + "gender": "male", + "age": 32, + "address": { + "state": "Utah", + "city": "Churchill" + } + }, + { + "id": 182, + "name": "Moses Evans", + "gender": "male", + "age": 65, + "address": { + "state": "Alabama", + "city": "Kimmell" + } + }, + { + "id": 183, + "name": "Pace Fitzgerald", + "gender": "male", + "age": 31, + "address": { + "state": "Wyoming", + "city": "Germanton" + } + }, + { + "id": 184, + "name": "Shawn Martinez", + "gender": "female", + "age": 33, + "address": { + "state": "New Jersey", + "city": "Castleton" + } + }, + { + "id": 185, + "name": "Lawson Hanson", + "gender": "male", + "age": 60, + "address": { + "state": "Missouri", + "city": "Sattley" + } + }, + { + "id": 186, + "name": "Imelda Rogers", + "gender": "female", + "age": 66, + "address": { + "state": "Texas", + "city": "Ruffin" + } + }, + { + "id": 187, + "name": "Gretchen Dodson", + "gender": "female", + "age": 52, + "address": { + "state": "Louisiana", + "city": "Indio" + } + }, + { + "id": 188, + "name": "Tasha Stevens", + "gender": "female", + "age": 77, + "address": { + "state": "Pennsylvania", + "city": "Staples" + } + }, + { + "id": 189, + "name": "Yvette Chang", + "gender": "female", + "age": 73, + "address": { + "state": "New York", + "city": "Fairhaven" + } + }, + { + "id": 190, + "name": "Sadie Duffy", + "gender": "female", + "age": 46, + "address": { + "state": "Michigan", + "city": "Hessville" + } + }, + { + "id": 191, + "name": "Savage Smith", + "gender": "male", + "age": 71, + "address": { + "state": "Tennessee", + "city": "Mansfield" + } + }, + { + "id": 192, + "name": "Monica Dunn", + "gender": "female", + "age": 53, + "address": { + "state": "New Hampshire", + "city": "Gracey" + } + }, + { + "id": 193, + "name": "Terrell Coffey", + "gender": "male", + "age": 75, + "address": { + "state": "Massachusetts", + "city": "Boonville" + } + }, + { + "id": 194, + "name": "Walsh Waller", + "gender": "male", + "age": 63, + "address": { + "state": "Hawaii", + "city": "Richville" + } + }, + { + "id": 195, + "name": "Bonnie Lamb", + "gender": "female", + "age": 22, + "address": { + "state": "South Carolina", + "city": "Finzel" + } + }, + { + "id": 196, + "name": "Frederick Hall", + "gender": "male", + "age": 56, + "address": { + "state": "West Virginia", + "city": "Kenvil" + } + }, + { + "id": 197, + "name": "Lana King", + "gender": "female", + "age": 40, + "address": { + "state": "Arizona", + "city": "Elrama" + } + }, + { + "id": 198, + "name": "Millie Boyer", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Blanford" + } + }, + { + "id": 199, + "name": "Daniels Ward", + "gender": "male", + "age": 38, + "address": { + "state": "Texas", + "city": "Coalmont" + } + }, + { + "id": 200, + "name": "Jeanie Baird", + "gender": "female", + "age": 25, + "address": { + "state": "New Jersey", + "city": "Fannett" + } + }, + { + "id": 201, + "name": "Paige White", + "gender": "female", + "age": 74, + "address": { + "state": "Kentucky", + "city": "Oneida" + } + }, + { + "id": 202, + "name": "Estes Robertson", + "gender": "male", + "age": 25, + "address": { + "state": "South Carolina", + "city": "Kirk" + } + }, + { + "id": 203, + "name": "Bernadine Pittman", + "gender": "female", + "age": 29, + "address": { + "state": "Alabama", + "city": "Magnolia" + } + }, + { + "id": 204, + "name": "Walton Sears", + "gender": "male", + "age": 27, + "address": { + "state": "Montana", + "city": "Groton" + } + }, + { + "id": 205, + "name": "Mayra Blevins", + "gender": "female", + "age": 48, + "address": { + "state": "Wisconsin", + "city": "Helen" + } + }, + { + "id": 206, + "name": "Tia Pacheco", + "gender": "female", + "age": 74, + "address": { + "state": "Missouri", + "city": "Brantleyville" + } + }, + { + "id": 207, + "name": "Sheena Stevenson", + "gender": "female", + "age": 75, + "address": { + "state": "Delaware", + "city": "Juntura" + } + }, + { + "id": 208, + "name": "Pearlie Raymond", + "gender": "female", + "age": 20, + "address": { + "state": "Tennessee", + "city": "Frizzleburg" + } + }, + { + "id": 209, + "name": "Daisy Hodge", + "gender": "female", + "age": 44, + "address": { + "state": "Connecticut", + "city": "Maplewood" + } + }, + { + "id": 210, + "name": "Anderson Hinton", + "gender": "male", + "age": 66, + "address": { + "state": "Oklahoma", + "city": "Orin" + } + }, + { + "id": 211, + "name": "Parsons Mcfadden", + "gender": "male", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Veyo" + } + }, + { + "id": 212, + "name": "Hood Carey", + "gender": "male", + "age": 33, + "address": { + "state": "Indiana", + "city": "Freetown" + } + }, + { + "id": 213, + "name": "Riley Lindsay", + "gender": "male", + "age": 53, + "address": { + "state": "Oregon", + "city": "Loretto" + } + }, + { + "id": 214, + "name": "Lenora Navarro", + "gender": "female", + "age": 22, + "address": { + "state": "Minnesota", + "city": "Vandiver" + } + }, + { + "id": 215, + "name": "Alba Donovan", + "gender": "female", + "age": 42, + "address": { + "state": "Nebraska", + "city": "Thatcher" + } + }, + { + "id": 216, + "name": "Lowery Mullen", + "gender": "male", + "age": 56, + "address": { + "state": "Iowa", + "city": "Lorraine" + } + }, + { + "id": 217, + "name": "Chaney Figueroa", + "gender": "male", + "age": 59, + "address": { + "state": "North Dakota", + "city": "Waterview" + } + }, + { + "id": 218, + "name": "Bruce Stein", + "gender": "male", + "age": 65, + "address": { + "state": "Michigan", + "city": "Grantville" + } + }, + { + "id": 219, + "name": "Tucker Pierce", + "gender": "male", + "age": 82, + "address": { + "state": "Colorado", + "city": "Zeba" + } + }, + { + "id": 220, + "name": "Isabelle Frederick", + "gender": "female", + "age": 64, + "address": { + "state": "Wyoming", + "city": "Snowville" + } + }, + { + "id": 221, + "name": "Terrie Sherman", + "gender": "female", + "age": 81, + "address": { + "state": "Maine", + "city": "Morgandale" + } + }, + { + "id": 222, + "name": "Rosario Henry", + "gender": "female", + "age": 75, + "address": { + "state": "New York", + "city": "Camas" + } + }, + { + "id": 223, + "name": "Francine Lester", + "gender": "female", + "age": 19, + "address": { + "state": "Virginia", + "city": "Inkerman" + } + }, + { + "id": 224, + "name": "Prince Melendez", + "gender": "male", + "age": 39, + "address": { + "state": "Idaho", + "city": "Marion" + } + }, + { + "id": 225, + "name": "Rice Lara", + "gender": "male", + "age": 21, + "address": { + "state": "Maryland", + "city": "Lindisfarne" + } + }, + { + "id": 226, + "name": "Elise Mckinney", + "gender": "female", + "age": 58, + "address": { + "state": "Alaska", + "city": "Madrid" + } + }, + { + "id": 227, + "name": "Jerri Kirby", + "gender": "female", + "age": 64, + "address": { + "state": "Georgia", + "city": "Chicopee" + } + }, + { + "id": 228, + "name": "Rene Leon", + "gender": "female", + "age": 43, + "address": { + "state": "Florida", + "city": "Bascom" + } + }, + { + "id": 229, + "name": "Karin Dennis", + "gender": "female", + "age": 46, + "address": { + "state": "Rhode Island", + "city": "Byrnedale" + } + }, + { + "id": 230, + "name": "Walter Craft", + "gender": "male", + "age": 45, + "address": { + "state": "Washington", + "city": "Sardis" + } + }, + { + "id": 231, + "name": "Morton Hunter", + "gender": "male", + "age": 32, + "address": { + "state": "Mississippi", + "city": "Twilight" + } + }, + { + "id": 232, + "name": "Beverley Shelton", + "gender": "female", + "age": 17, + "address": { + "state": "Ohio", + "city": "Gallina" + } + }, + { + "id": 233, + "name": "Kimberly Barnett", + "gender": "female", + "age": 54, + "address": { + "state": "Vermont", + "city": "Goldfield" + } + }, + { + "id": 234, + "name": "Esmeralda Randolph", + "gender": "female", + "age": 44, + "address": { + "state": "Louisiana", + "city": "Soham" + } + }, + { + "id": 235, + "name": "Lawrence Calderon", + "gender": "male", + "age": 57, + "address": { + "state": "Massachusetts", + "city": "Brady" + } + }, + { + "id": 236, + "name": "Monroe Olsen", + "gender": "male", + "age": 64, + "address": { + "state": "Utah", + "city": "Titanic" + } + }, + { + "id": 237, + "name": "Jolene Scott", + "gender": "female", + "age": 68, + "address": { + "state": "Arkansas", + "city": "Joes" + } + }, + { + "id": 238, + "name": "Herman Norman", + "gender": "male", + "age": 82, + "address": { + "state": "Hawaii", + "city": "Ferney" + } + }, + { + "id": 239, + "name": "Carpenter Larsen", + "gender": "male", + "age": 23, + "address": { + "state": "Pennsylvania", + "city": "Edgar" + } + }, + { + "id": 240, + "name": "Jaclyn Grant", + "gender": "female", + "age": 23, + "address": { + "state": "New Mexico", + "city": "Baden" + } + }, + { + "id": 241, + "name": "Doris Griffith", + "gender": "female", + "age": 46, + "address": { + "state": "South Dakota", + "city": "Barronett" + } + }, + { + "id": 242, + "name": "Bentley Booth", + "gender": "male", + "age": 26, + "address": { + "state": "Nevada", + "city": "Waukeenah" + } + }, + { + "id": 243, + "name": "Candy Strong", + "gender": "female", + "age": 56, + "address": { + "state": "New Hampshire", + "city": "Beaulieu" + } + }, + { + "id": 244, + "name": "Milagros Wooten", + "gender": "female", + "age": 18, + "address": { + "state": "Kansas", + "city": "Coldiron" + } + }, + { + "id": 245, + "name": "Dolores Jarvis", + "gender": "female", + "age": 56, + "address": { + "state": "Colorado", + "city": "Windsor" + } + }, + { + "id": 246, + "name": "Raymond Savage", + "gender": "male", + "age": 42, + "address": { + "state": "Indiana", + "city": "Dawn" + } + }, + { + "id": 247, + "name": "Wolfe Duran", + "gender": "male", + "age": 20, + "address": { + "state": "Michigan", + "city": "Crenshaw" + } + }, + { + "id": 248, + "name": "Gina Hampton", + "gender": "female", + "age": 26, + "address": { + "state": "Minnesota", + "city": "Taft" + } + }, + { + "id": 249, + "name": "Hodges Baldwin", + "gender": "male", + "age": 68, + "address": { + "state": "Illinois", + "city": "Dennard" + } + }, + { + "id": 250, + "name": "Duke Leon", + "gender": "male", + "age": 45, + "address": { + "state": "Wyoming", + "city": "Groveville" + } + }, + { + "id": 251, + "name": "Sparks Bryan", + "gender": "male", + "age": 55, + "address": { + "state": "Idaho", + "city": "Rockingham" + } + }, + { + "id": 252, + "name": "Bobbi Mueller", + "gender": "female", + "age": 66, + "address": { + "state": "Maine", + "city": "Moquino" + } + }, + { + "id": 253, + "name": "Geneva Sargent", + "gender": "female", + "age": 74, + "address": { + "state": "Vermont", + "city": "Loyalhanna" + } + }, + { + "id": 254, + "name": "Lela Garner", + "gender": "female", + "age": 58, + "address": { + "state": "Arizona", + "city": "Sexton" + } + }, + { + "id": 255, + "name": "Yvette Navarro", + "gender": "female", + "age": 60, + "address": { + "state": "Alaska", + "city": "Hachita" + } + }, + { + "id": 256, + "name": "Cheryl Foley", + "gender": "female", + "age": 57, + "address": { + "state": "Tennessee", + "city": "Allison" + } + }, + { + "id": 257, + "name": "Amanda Wilkinson", + "gender": "female", + "age": 64, + "address": { + "state": "Missouri", + "city": "Cornucopia" + } + }, + { + "id": 258, + "name": "Hansen Hall", + "gender": "male", + "age": 53, + "address": { + "state": "Texas", + "city": "Logan" + } + }, + { + "id": 259, + "name": "Amalia Ingram", + "gender": "female", + "age": 30, + "address": { + "state": "Nebraska", + "city": "Gouglersville" + } + }, + { + "id": 260, + "name": "Gross Valencia", + "gender": "male", + "age": 47, + "address": { + "state": "South Carolina", + "city": "Allentown" + } + }, + { + "id": 261, + "name": "Herminia Larson", + "gender": "female", + "age": 57, + "address": { + "state": "New York", + "city": "Longoria" + } + }, + { + "id": 262, + "name": "Rebecca Simon", + "gender": "female", + "age": 56, + "address": { + "state": "Ohio", + "city": "Calpine" + } + }, + { + "id": 263, + "name": "Lynne Callahan", + "gender": "female", + "age": 54, + "address": { + "state": "North Carolina", + "city": "Avalon" + } + }, + { + "id": 264, + "name": "Carolina Cherry", + "gender": "female", + "age": 36, + "address": { + "state": "West Virginia", + "city": "Russellville" + } + }, + { + "id": 265, + "name": "Jensen Mcfarland", + "gender": "male", + "age": 24, + "address": { + "state": "Arkansas", + "city": "Felt" + } + }, + { + "id": 266, + "name": "Chandler Patterson", + "gender": "male", + "age": 61, + "address": { + "state": "Pennsylvania", + "city": "Maxville" + } + }, + { + "id": 267, + "name": "Celeste Leblanc", + "gender": "female", + "age": 20, + "address": { + "state": "Oregon", + "city": "Lowell" + } + }, + { + "id": 268, + "name": "Jacklyn Erickson", + "gender": "female", + "age": 71, + "address": { + "state": "Kansas", + "city": "Aurora" + } + }, + { + "id": 269, + "name": "Frank Cooley", + "gender": "male", + "age": 71, + "address": { + "state": "Rhode Island", + "city": "Machias" + } + }, + { + "id": 270, + "name": "Sheri Maddox", + "gender": "female", + "age": 20, + "address": { + "state": "South Dakota", + "city": "Lutsen" + } + }, + { + "id": 271, + "name": "Pam Blanchard", + "gender": "female", + "age": 71, + "address": { + "state": "Mississippi", + "city": "Mahtowa" + } + }, + { + "id": 272, + "name": "Louisa David", + "gender": "female", + "age": 58, + "address": { + "state": "California", + "city": "Cloverdale" + } + }, + { + "id": 273, + "name": "Harper Higgins", + "gender": "male", + "age": 50, + "address": { + "state": "Utah", + "city": "Watrous" + } + }, + { + "id": 274, + "name": "Crosby Rojas", + "gender": "male", + "age": 62, + "address": { + "state": "Virginia", + "city": "Echo" + } + }, + { + "id": 275, + "name": "Mavis Petersen", + "gender": "female", + "age": 59, + "address": { + "state": "Montana", + "city": "Conway" + } + }, + { + "id": 276, + "name": "Daphne Forbes", + "gender": "female", + "age": 19, + "address": { + "state": "Georgia", + "city": "Topaz" + } + }, + { + "id": 277, + "name": "Trudy Moreno", + "gender": "female", + "age": 47, + "address": { + "state": "Nevada", + "city": "Carbonville" + } + }, + { + "id": 278, + "name": "Katy Kirby", + "gender": "female", + "age": 38, + "address": { + "state": "Louisiana", + "city": "Rodanthe" + } + }, + { + "id": 279, + "name": "Soto Moses", + "gender": "male", + "age": 17, + "address": { + "state": "Alabama", + "city": "Croom" + } + }, + { + "id": 280, + "name": "Lindsay Camacho", + "gender": "female", + "age": 44, + "address": { + "state": "Wisconsin", + "city": "Dellview" + } + }, + { + "id": 281, + "name": "Priscilla Lott", + "gender": "female", + "age": 72, + "address": { + "state": "Washington", + "city": "Galesville" + } + }, + { + "id": 282, + "name": "Luann Schneider", + "gender": "female", + "age": 71, + "address": { + "state": "New Jersey", + "city": "Geyserville" + } + }, + { + "id": 283, + "name": "Walls Suarez", + "gender": "male", + "age": 39, + "address": { + "state": "Iowa", + "city": "Davenport" + } + }, + { + "id": 284, + "name": "Blanca Mack", + "gender": "female", + "age": 36, + "address": { + "state": "Kentucky", + "city": "Clayville" + } + }, + { + "id": 285, + "name": "Bettye Riley", + "gender": "female", + "age": 82, + "address": { + "state": "New Mexico", + "city": "Shrewsbury" + } + }, + { + "id": 286, + "name": "Pratt Foster", + "gender": "male", + "age": 44, + "address": { + "state": "Massachusetts", + "city": "Marbury" + } + }, + { + "id": 287, + "name": "Crane Crane", + "gender": "male", + "age": 64, + "address": { + "state": "Delaware", + "city": "Matheny" + } + }, + { + "id": 288, + "name": "Velasquez Patel", + "gender": "male", + "age": 41, + "address": { + "state": "Florida", + "city": "Sugartown" + } + }, + { + "id": 289, + "name": "Burns Shaffer", + "gender": "male", + "age": 42, + "address": { + "state": "Hawaii", + "city": "Homestead" + } + }, + { + "id": 290, + "name": "Norton Villarreal", + "gender": "male", + "age": 50, + "address": { + "state": "North Dakota", + "city": "Gorst" + } + }, + { + "id": 291, + "name": "Berger Ratliff", + "gender": "male", + "age": 27, + "address": { + "state": "New Hampshire", + "city": "Ivanhoe" + } + }, + { + "id": 292, + "name": "Jessie Willis", + "gender": "female", + "age": 73, + "address": { + "state": "Maryland", + "city": "Drytown" + } + }, + { + "id": 293, + "name": "Lottie Salazar", + "gender": "female", + "age": 71, + "address": { + "state": "Connecticut", + "city": "Templeton" + } + }, + { + "id": 294, + "name": "Hays Abbott", + "gender": "male", + "age": 39, + "address": { + "state": "New Mexico", + "city": "Cloverdale" + } + }, + { + "id": 295, + "name": "Webb Hamilton", + "gender": "male", + "age": 69, + "address": { + "state": "Nevada", + "city": "Allamuchy" + } + }, + { + "id": 296, + "name": "Renee York", + "gender": "female", + "age": 82, + "address": { + "state": "Ohio", + "city": "Bladensburg" + } + }, + { + "id": 297, + "name": "Ellis Davis", + "gender": "male", + "age": 72, + "address": { + "state": "Virginia", + "city": "Comptche" + } + }, + { + "id": 298, + "name": "Beard Patterson", + "gender": "male", + "age": 63, + "address": { + "state": "Texas", + "city": "Chamizal" + } + }, + { + "id": 299, + "name": "Fletcher Walters", + "gender": "male", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Morgandale" + } + }, + { + "id": 300, + "name": "Eddie Reid", + "gender": "female", + "age": 59, + "address": { + "state": "Mississippi", + "city": "Chautauqua" + } + }, + { + "id": 301, + "name": "Gilmore Wolfe", + "gender": "male", + "age": 44, + "address": { + "state": "Kansas", + "city": "Denio" + } + }, + { + "id": 302, + "name": "Jannie Wooten", + "gender": "female", + "age": 40, + "address": { + "state": "Missouri", + "city": "Golconda" + } + }, + { + "id": 303, + "name": "Etta Paul", + "gender": "female", + "age": 69, + "address": { + "state": "Wyoming", + "city": "Naomi" + } + }, + { + "id": 304, + "name": "Mcintyre Duffy", + "gender": "male", + "age": 52, + "address": { + "state": "Vermont", + "city": "Wanship" + } + }, + { + "id": 305, + "name": "Mai Talley", + "gender": "female", + "age": 26, + "address": { + "state": "Washington", + "city": "Whipholt" + } + }, + { + "id": 306, + "name": "Hodge Solomon", + "gender": "male", + "age": 52, + "address": { + "state": "Maryland", + "city": "Yettem" + } + }, + { + "id": 307, + "name": "Patricia Dominguez", + "gender": "female", + "age": 22, + "address": { + "state": "New Hampshire", + "city": "Graball" + } + }, + { + "id": 308, + "name": "Jaime Noel", + "gender": "female", + "age": 24, + "address": { + "state": "North Carolina", + "city": "Manchester" + } + }, + { + "id": 309, + "name": "Bailey Gross", + "gender": "male", + "age": 78, + "address": { + "state": "Georgia", + "city": "Orovada" + } + }, + { + "id": 310, + "name": "Davidson Dunn", + "gender": "male", + "age": 24, + "address": { + "state": "North Dakota", + "city": "Heil" + } + }, + { + "id": 311, + "name": "Velez Stokes", + "gender": "male", + "age": 42, + "address": { + "state": "Iowa", + "city": "Gilmore" + } + }, + { + "id": 312, + "name": "Pearlie Garcia", + "gender": "female", + "age": 75, + "address": { + "state": "Nebraska", + "city": "Beyerville" + } + }, + { + "id": 313, + "name": "Lena Park", + "gender": "female", + "age": 47, + "address": { + "state": "South Dakota", + "city": "Innsbrook" + } + }, + { + "id": 314, + "name": "England Nixon", + "gender": "male", + "age": 80, + "address": { + "state": "Florida", + "city": "Allison" + } + }, + { + "id": 315, + "name": "Carolina Golden", + "gender": "female", + "age": 36, + "address": { + "state": "Arizona", + "city": "Kraemer" + } + }, + { + "id": 316, + "name": "Holmes Nash", + "gender": "male", + "age": 25, + "address": { + "state": "New York", + "city": "Yorklyn" + } + }, + { + "id": 317, + "name": "Rosanne Neal", + "gender": "female", + "age": 64, + "address": { + "state": "Arkansas", + "city": "Glasgow" + } + }, + { + "id": 318, + "name": "Chase Walls", + "gender": "male", + "age": 42, + "address": { + "state": "Connecticut", + "city": "Skyland" + } + }, + { + "id": 319, + "name": "Casandra Mitchell", + "gender": "female", + "age": 69, + "address": { + "state": "Wisconsin", + "city": "Hoagland" + } + }, + { + "id": 320, + "name": "Phelps Barrera", + "gender": "male", + "age": 31, + "address": { + "state": "Tennessee", + "city": "Guthrie" + } + }, + { + "id": 321, + "name": "Haley Macias", + "gender": "female", + "age": 71, + "address": { + "state": "New Jersey", + "city": "Hoehne" + } + }, + { + "id": 322, + "name": "Darlene Lara", + "gender": "female", + "age": 72, + "address": { + "state": "Minnesota", + "city": "Stonybrook" + } + }, + { + "id": 323, + "name": "Rasmussen Hyde", + "gender": "male", + "age": 59, + "address": { + "state": "Alabama", + "city": "Ruffin" + } + }, + { + "id": 324, + "name": "Mayo Garrison", + "gender": "male", + "age": 38, + "address": { + "state": "Idaho", + "city": "Forestburg" + } + }, + { + "id": 325, + "name": "Wilder Bentley", + "gender": "male", + "age": 53, + "address": { + "state": "Montana", + "city": "Masthope" + } + }, + { + "id": 326, + "name": "Tammy Charles", + "gender": "female", + "age": 76, + "address": { + "state": "Hawaii", + "city": "Leming" + } + }, + { + "id": 327, + "name": "Lizzie Gardner", + "gender": "female", + "age": 42, + "address": { + "state": "South Carolina", + "city": "National" + } + }, + { + "id": 328, + "name": "York Hampton", + "gender": "male", + "age": 75, + "address": { + "state": "Illinois", + "city": "Rossmore" + } + }, + { + "id": 329, + "name": "Hays Leonard", + "gender": "male", + "age": 70, + "address": { + "state": "Maine", + "city": "Kipp" + } + }, + { + "id": 330, + "name": "Calderon Nolan", + "gender": "male", + "age": 26, + "address": { + "state": "Alaska", + "city": "Drytown" + } + }, + { + "id": 331, + "name": "Alisha Clarke", + "gender": "female", + "age": 20, + "address": { + "state": "Pennsylvania", + "city": "Welch" + } + }, + { + "id": 332, + "name": "Deidre Vaughn", + "gender": "female", + "age": 32, + "address": { + "state": "California", + "city": "Cucumber" + } + }, + { + "id": 333, + "name": "Colon Fox", + "gender": "male", + "age": 19, + "address": { + "state": "Oregon", + "city": "Tuttle" + } + }, + { + "id": 334, + "name": "Marshall Vang", + "gender": "male", + "age": 46, + "address": { + "state": "Utah", + "city": "Lund" + } + }, + { + "id": 335, + "name": "Ayala Rhodes", + "gender": "male", + "age": 62, + "address": { + "state": "Michigan", + "city": "Bradenville" + } + }, + { + "id": 336, + "name": "Morrow Garrett", + "gender": "male", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Rivers" + } + }, + { + "id": 337, + "name": "Brenda Carey", + "gender": "female", + "age": 69, + "address": { + "state": "Oklahoma", + "city": "Westwood" + } + }, + { + "id": 338, + "name": "Abby Collins", + "gender": "female", + "age": 80, + "address": { + "state": "Indiana", + "city": "Westerville" + } + }, + { + "id": 339, + "name": "Whitney Hays", + "gender": "male", + "age": 51, + "address": { + "state": "Delaware", + "city": "Crisman" + } + }, + { + "id": 340, + "name": "Faulkner Aguirre", + "gender": "male", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Mulino" + } + }, + { + "id": 341, + "name": "Angelina Dickson", + "gender": "female", + "age": 55, + "address": { + "state": "Kentucky", + "city": "Verdi" + } + }, + { + "id": 342, + "name": "Skinner Rivera", + "gender": "male", + "age": 23, + "address": { + "state": "Massachusetts", + "city": "Greenbackville" + } + }, + { + "id": 343, + "name": "Natasha Cochran", + "gender": "female", + "age": 80, + "address": { + "state": "North Dakota", + "city": "Forbestown" + } + }, + { + "id": 344, + "name": "Carol Ellison", + "gender": "female", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Calvary" + } + }, + { + "id": 345, + "name": "Emma Best", + "gender": "female", + "age": 21, + "address": { + "state": "Alabama", + "city": "Statenville" + } + }, + { + "id": 346, + "name": "Sharpe Murphy", + "gender": "male", + "age": 78, + "address": { + "state": "Washington", + "city": "Moraida" + } + }, + { + "id": 347, + "name": "Knight Valentine", + "gender": "male", + "age": 22, + "address": { + "state": "Iowa", + "city": "Loretto" + } + }, + { + "id": 348, + "name": "Padilla Tanner", + "gender": "male", + "age": 56, + "address": { + "state": "South Dakota", + "city": "Grill" + } + }, + { + "id": 349, + "name": "Elena Oliver", + "gender": "female", + "age": 51, + "address": { + "state": "Utah", + "city": "Fannett" + } + }, + { + "id": 350, + "name": "Ana Acevedo", + "gender": "female", + "age": 42, + "address": { + "state": "New Mexico", + "city": "Gibbsville" + } + }, + { + "id": 351, + "name": "Dejesus Rogers", + "gender": "male", + "age": 39, + "address": { + "state": "Maine", + "city": "Lowell" + } + }, + { + "id": 352, + "name": "Ware Wolf", + "gender": "male", + "age": 69, + "address": { + "state": "Arizona", + "city": "Reinerton" + } + }, + { + "id": 353, + "name": "Gutierrez Dennis", + "gender": "male", + "age": 58, + "address": { + "state": "Montana", + "city": "Jardine" + } + }, + { + "id": 354, + "name": "Elsie Nguyen", + "gender": "female", + "age": 46, + "address": { + "state": "Nebraska", + "city": "Eggertsville" + } + }, + { + "id": 355, + "name": "Nelda Cline", + "gender": "female", + "age": 68, + "address": { + "state": "Nevada", + "city": "Carlos" + } + }, + { + "id": 356, + "name": "Ina Beard", + "gender": "female", + "age": 77, + "address": { + "state": "Delaware", + "city": "Edmund" + } + }, + { + "id": 357, + "name": "Gould Velez", + "gender": "male", + "age": 48, + "address": { + "state": "California", + "city": "Kennedyville" + } + }, + { + "id": 358, + "name": "Mamie Lee", + "gender": "female", + "age": 66, + "address": { + "state": "Rhode Island", + "city": "Brazos" + } + }, + { + "id": 359, + "name": "Adele Mcconnell", + "gender": "female", + "age": 66, + "address": { + "state": "Tennessee", + "city": "Springhill" + } + }, + { + "id": 360, + "name": "Susan Moran", + "gender": "female", + "age": 72, + "address": { + "state": "Arkansas", + "city": "Floris" + } + }, + { + "id": 361, + "name": "Shauna Slater", + "gender": "female", + "age": 18, + "address": { + "state": "Mississippi", + "city": "Norris" + } + }, + { + "id": 362, + "name": "Blevins Jacobson", + "gender": "male", + "age": 79, + "address": { + "state": "Michigan", + "city": "Stockwell" + } + }, + { + "id": 363, + "name": "Janie Yates", + "gender": "female", + "age": 73, + "address": { + "state": "South Carolina", + "city": "Chelsea" + } + }, + { + "id": 364, + "name": "Horton Hancock", + "gender": "male", + "age": 71, + "address": { + "state": "Missouri", + "city": "Bagtown" + } + }, + { + "id": 365, + "name": "Juarez Miles", + "gender": "male", + "age": 18, + "address": { + "state": "Indiana", + "city": "Brookfield" + } + }, + { + "id": 366, + "name": "Winifred Vaughn", + "gender": "female", + "age": 57, + "address": { + "state": "Colorado", + "city": "Fresno" + } + }, + { + "id": 367, + "name": "Harrison Mendez", + "gender": "male", + "age": 62, + "address": { + "state": "Wyoming", + "city": "Riviera" + } + }, + { + "id": 368, + "name": "Anthony Patterson", + "gender": "male", + "age": 69, + "address": { + "state": "New Hampshire", + "city": "Weedville" + } + }, + { + "id": 369, + "name": "Roxie Rhodes", + "gender": "female", + "age": 58, + "address": { + "state": "Pennsylvania", + "city": "Buxton" + } + }, + { + "id": 370, + "name": "Maddox Marshall", + "gender": "male", + "age": 20, + "address": { + "state": "New Jersey", + "city": "Marshall" + } + }, + { + "id": 371, + "name": "Ashley Lawson", + "gender": "male", + "age": 60, + "address": { + "state": "Wisconsin", + "city": "Wanship" + } + }, + { + "id": 372, + "name": "Shelby Bray", + "gender": "female", + "age": 24, + "address": { + "state": "Kentucky", + "city": "Wakarusa" + } + }, + { + "id": 373, + "name": "Olive Hutchinson", + "gender": "female", + "age": 42, + "address": { + "state": "Texas", + "city": "Beaulieu" + } + }, + { + "id": 374, + "name": "Lora Summers", + "gender": "female", + "age": 18, + "address": { + "state": "Illinois", + "city": "Keyport" + } + }, + { + "id": 375, + "name": "Dixie Hogan", + "gender": "female", + "age": 64, + "address": { + "state": "Alaska", + "city": "Takilma" + } + }, + { + "id": 376, + "name": "Steele Sanford", + "gender": "male", + "age": 76, + "address": { + "state": "Ohio", + "city": "Kipp" + } + }, + { + "id": 377, + "name": "Josephine Todd", + "gender": "female", + "age": 33, + "address": { + "state": "West Virginia", + "city": "Durham" + } + }, + { + "id": 378, + "name": "George Blair", + "gender": "male", + "age": 61, + "address": { + "state": "Idaho", + "city": "Marne" + } + }, + { + "id": 379, + "name": "Ramirez Hansen", + "gender": "male", + "age": 62, + "address": { + "state": "Georgia", + "city": "Carrizo" + } + }, + { + "id": 380, + "name": "Weeks Murray", + "gender": "male", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Esmont" + } + }, + { + "id": 381, + "name": "Yang Trujillo", + "gender": "male", + "age": 66, + "address": { + "state": "Massachusetts", + "city": "Wanamie" + } + }, + { + "id": 382, + "name": "Clarissa Christian", + "gender": "female", + "age": 40, + "address": { + "state": "Connecticut", + "city": "Whipholt" + } + }, + { + "id": 383, + "name": "Milagros Gross", + "gender": "female", + "age": 22, + "address": { + "state": "Maryland", + "city": "Leroy" + } + }, + { + "id": 384, + "name": "Carlene Walter", + "gender": "female", + "age": 40, + "address": { + "state": "North Carolina", + "city": "Dellview" + } + }, + { + "id": 385, + "name": "Alexandra Rice", + "gender": "female", + "age": 81, + "address": { + "state": "New York", + "city": "Faxon" + } + }, + { + "id": 386, + "name": "Underwood Pratt", + "gender": "male", + "age": 61, + "address": { + "state": "Virginia", + "city": "Elizaville" + } + }, + { + "id": 387, + "name": "Moore Caldwell", + "gender": "male", + "age": 66, + "address": { + "state": "Hawaii", + "city": "Newkirk" + } + }, + { + "id": 388, + "name": "Simpson Flowers", + "gender": "male", + "age": 22, + "address": { + "state": "Vermont", + "city": "Levant" + } + }, + { + "id": 389, + "name": "Wilma Hawkins", + "gender": "female", + "age": 82, + "address": { + "state": "Florida", + "city": "Hasty" + } + }, + { + "id": 390, + "name": "Griffin Wolfe", + "gender": "male", + "age": 82, + "address": { + "state": "Kansas", + "city": "Caln" + } + }, + { + "id": 391, + "name": "Sallie Marquez", + "gender": "female", + "age": 58, + "address": { + "state": "Oregon", + "city": "Berwind" + } + }, + { + "id": 392, + "name": "Thelma Bolton", + "gender": "female", + "age": 34, + "address": { + "state": "Indiana", + "city": "Cumminsville" + } + }, + { + "id": 393, + "name": "Stacy Sherman", + "gender": "female", + "age": 70, + "address": { + "state": "Massachusetts", + "city": "Newry" + } + }, + { + "id": 394, + "name": "Lauren Rodriquez", + "gender": "female", + "age": 34, + "address": { + "state": "New York", + "city": "Springhill" + } + }, + { + "id": 395, + "name": "Nelson Duffy", + "gender": "male", + "age": 60, + "address": { + "state": "South Carolina", + "city": "Bawcomville" + } + }, + { + "id": 396, + "name": "James Mercado", + "gender": "female", + "age": 43, + "address": { + "state": "New Mexico", + "city": "Shindler" + } + }, + { + "id": 397, + "name": "Marguerite Nielsen", + "gender": "female", + "age": 57, + "address": { + "state": "Kansas", + "city": "Hillsboro" + } + }, + { + "id": 398, + "name": "Mindy Carver", + "gender": "female", + "age": 58, + "address": { + "state": "Minnesota", + "city": "Gratton" + } + }, + { + "id": 399, + "name": "Darla Page", + "gender": "female", + "age": 61, + "address": { + "state": "Illinois", + "city": "Ribera" + } + }, + { + "id": 400, + "name": "Willa Booker", + "gender": "female", + "age": 46, + "address": { + "state": "Oklahoma", + "city": "Gracey" + } + }, + { + "id": 401, + "name": "Dee Cantrell", + "gender": "female", + "age": 21, + "address": { + "state": "West Virginia", + "city": "Bodega" + } + }, + { + "id": 402, + "name": "Trudy Kinney", + "gender": "female", + "age": 82, + "address": { + "state": "Texas", + "city": "Axis" + } + }, + { + "id": 403, + "name": "Nguyen Mills", + "gender": "male", + "age": 51, + "address": { + "state": "Georgia", + "city": "Lawrence" + } + }, + { + "id": 404, + "name": "Williams Davidson", + "gender": "male", + "age": 19, + "address": { + "state": "Alabama", + "city": "Jacumba" + } + }, + { + "id": 405, + "name": "Banks Flores", + "gender": "male", + "age": 46, + "address": { + "state": "Delaware", + "city": "Emerald" + } + }, + { + "id": 406, + "name": "Polly Merritt", + "gender": "female", + "age": 46, + "address": { + "state": "Maine", + "city": "Cawood" + } + }, + { + "id": 407, + "name": "Gillespie Kemp", + "gender": "male", + "age": 75, + "address": { + "state": "Arkansas", + "city": "Oceola" + } + }, + { + "id": 408, + "name": "Velma Hobbs", + "gender": "female", + "age": 39, + "address": { + "state": "Louisiana", + "city": "Hollins" + } + }, + { + "id": 409, + "name": "Lena Rice", + "gender": "female", + "age": 66, + "address": { + "state": "Ohio", + "city": "Oretta" + } + }, + { + "id": 410, + "name": "Nieves Reeves", + "gender": "male", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Urbana" + } + }, + { + "id": 411, + "name": "Misty Barry", + "gender": "female", + "age": 45, + "address": { + "state": "Pennsylvania", + "city": "Shepardsville" + } + }, + { + "id": 412, + "name": "Jeanette Vang", + "gender": "female", + "age": 24, + "address": { + "state": "Tennessee", + "city": "Derwood" + } + }, + { + "id": 413, + "name": "Emily Berg", + "gender": "female", + "age": 43, + "address": { + "state": "New Hampshire", + "city": "Eagletown" + } + }, + { + "id": 414, + "name": "Esmeralda Foreman", + "gender": "female", + "age": 31, + "address": { + "state": "South Dakota", + "city": "Chamberino" + } + }, + { + "id": 415, + "name": "Downs Walter", + "gender": "male", + "age": 36, + "address": { + "state": "Nevada", + "city": "Newkirk" + } + }, + { + "id": 416, + "name": "Santos Morse", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Whitestone" + } + }, + { + "id": 417, + "name": "Nicole Martin", + "gender": "female", + "age": 68, + "address": { + "state": "Colorado", + "city": "Orick" + } + }, + { + "id": 418, + "name": "Jensen Snow", + "gender": "male", + "age": 49, + "address": { + "state": "Kentucky", + "city": "Coldiron" + } + }, + { + "id": 419, + "name": "Anna Patterson", + "gender": "female", + "age": 20, + "address": { + "state": "North Carolina", + "city": "Blandburg" + } + }, + { + "id": 420, + "name": "Newton Ware", + "gender": "male", + "age": 64, + "address": { + "state": "Wisconsin", + "city": "Mooresburg" + } + }, + { + "id": 421, + "name": "Farmer Kirby", + "gender": "male", + "age": 70, + "address": { + "state": "California", + "city": "Highland" + } + }, + { + "id": 422, + "name": "Morin Soto", + "gender": "male", + "age": 25, + "address": { + "state": "North Dakota", + "city": "Finderne" + } + }, + { + "id": 423, + "name": "Barrett Small", + "gender": "male", + "age": 34, + "address": { + "state": "Virginia", + "city": "Cassel" + } + }, + { + "id": 424, + "name": "Rutledge Suarez", + "gender": "male", + "age": 21, + "address": { + "state": "Arizona", + "city": "Defiance" + } + }, + { + "id": 425, + "name": "Harvey Salinas", + "gender": "male", + "age": 80, + "address": { + "state": "Montana", + "city": "Colton" + } + }, + { + "id": 426, + "name": "Norman Hansen", + "gender": "male", + "age": 33, + "address": { + "state": "Wyoming", + "city": "Chemung" + } + }, + { + "id": 427, + "name": "Alba Potter", + "gender": "female", + "age": 80, + "address": { + "state": "Utah", + "city": "Hachita" + } + }, + { + "id": 428, + "name": "Bates Petty", + "gender": "male", + "age": 68, + "address": { + "state": "Oregon", + "city": "Williamson" + } + }, + { + "id": 429, + "name": "Mays Shepherd", + "gender": "male", + "age": 63, + "address": { + "state": "Rhode Island", + "city": "Islandia" + } + }, + { + "id": 430, + "name": "Marisol Carr", + "gender": "female", + "age": 33, + "address": { + "state": "Iowa", + "city": "Imperial" + } + }, + { + "id": 431, + "name": "Michael Murphy", + "gender": "male", + "age": 71, + "address": { + "state": "Maryland", + "city": "Garberville" + } + }, + { + "id": 432, + "name": "Chan Mercer", + "gender": "male", + "age": 73, + "address": { + "state": "Idaho", + "city": "Kiskimere" + } + }, + { + "id": 433, + "name": "Ida Hunter", + "gender": "female", + "age": 50, + "address": { + "state": "Washington", + "city": "Warren" + } + }, + { + "id": 434, + "name": "Muriel Walsh", + "gender": "female", + "age": 48, + "address": { + "state": "New Jersey", + "city": "Mathews" + } + }, + { + "id": 435, + "name": "Navarro Case", + "gender": "male", + "age": 35, + "address": { + "state": "Missouri", + "city": "Kenwood" + } + }, + { + "id": 436, + "name": "Carlson Glover", + "gender": "male", + "age": 70, + "address": { + "state": "Alaska", + "city": "Alleghenyville" + } + }, + { + "id": 437, + "name": "Osborne Diaz", + "gender": "male", + "age": 62, + "address": { + "state": "Nebraska", + "city": "Gadsden" + } + }, + { + "id": 438, + "name": "Clare Pruitt", + "gender": "female", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Freelandville" + } + }, + { + "id": 439, + "name": "Miranda Chaney", + "gender": "female", + "age": 62, + "address": { + "state": "Mississippi", + "city": "Trail" + } + }, + { + "id": 440, + "name": "Emilia Hess", + "gender": "female", + "age": 62, + "address": { + "state": "Florida", + "city": "Cuylerville" + } + }, + { + "id": 441, + "name": "Monique Johnston", + "gender": "female", + "age": 65, + "address": { + "state": "Colorado", + "city": "Fillmore" + } + }, + { + "id": 442, + "name": "Sanford Golden", + "gender": "male", + "age": 31, + "address": { + "state": "Pennsylvania", + "city": "Belva" + } + }, + { + "id": 443, + "name": "Estrada Phelps", + "gender": "male", + "age": 34, + "address": { + "state": "Hawaii", + "city": "Emerald" + } + }, + { + "id": 444, + "name": "Ellen Heath", + "gender": "female", + "age": 50, + "address": { + "state": "Nevada", + "city": "Gorham" + } + }, + { + "id": 445, + "name": "Charles Floyd", + "gender": "male", + "age": 27, + "address": { + "state": "Minnesota", + "city": "Starks" + } + }, + { + "id": 446, + "name": "Vilma Tyler", + "gender": "female", + "age": 40, + "address": { + "state": "Louisiana", + "city": "Roland" + } + }, + { + "id": 447, + "name": "Stacy Melendez", + "gender": "female", + "age": 20, + "address": { + "state": "New York", + "city": "Blackgum" + } + }, + { + "id": 448, + "name": "Coffey Callahan", + "gender": "male", + "age": 63, + "address": { + "state": "North Dakota", + "city": "Carrsville" + } + }, + { + "id": 449, + "name": "Vicky Hood", + "gender": "female", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Brewster" + } + }, + { + "id": 450, + "name": "Maryann Harding", + "gender": "female", + "age": 33, + "address": { + "state": "New Jersey", + "city": "Heil" + } + }, + { + "id": 451, + "name": "Willis Pitts", + "gender": "male", + "age": 51, + "address": { + "state": "Kansas", + "city": "Winesburg" + } + }, + { + "id": 452, + "name": "Daphne Reilly", + "gender": "female", + "age": 68, + "address": { + "state": "Kentucky", + "city": "Wawona" + } + }, + { + "id": 453, + "name": "Morton English", + "gender": "male", + "age": 79, + "address": { + "state": "Iowa", + "city": "Cumberland" + } + }, + { + "id": 454, + "name": "Chavez Harper", + "gender": "male", + "age": 62, + "address": { + "state": "Arkansas", + "city": "Blanford" + } + }, + { + "id": 455, + "name": "Vicki Mosley", + "gender": "female", + "age": 38, + "address": { + "state": "Delaware", + "city": "Walland" + } + }, + { + "id": 456, + "name": "Love Sims", + "gender": "male", + "age": 26, + "address": { + "state": "South Dakota", + "city": "Kylertown" + } + }, + { + "id": 457, + "name": "Dickson Warren", + "gender": "male", + "age": 61, + "address": { + "state": "Oregon", + "city": "Dalton" + } + }, + { + "id": 458, + "name": "Mack Palmer", + "gender": "male", + "age": 79, + "address": { + "state": "Texas", + "city": "Lafferty" + } + }, + { + "id": 459, + "name": "Anna Bradshaw", + "gender": "female", + "age": 72, + "address": { + "state": "Alabama", + "city": "Saddlebrooke" + } + }, + { + "id": 460, + "name": "Petersen Butler", + "gender": "male", + "age": 78, + "address": { + "state": "Rhode Island", + "city": "Caspar" + } + }, + { + "id": 461, + "name": "Briana Tanner", + "gender": "female", + "age": 73, + "address": { + "state": "Illinois", + "city": "Cresaptown" + } + }, + { + "id": 462, + "name": "Mason England", + "gender": "male", + "age": 75, + "address": { + "state": "Maryland", + "city": "Romeville" + } + }, + { + "id": 463, + "name": "Cotton Bowman", + "gender": "male", + "age": 19, + "address": { + "state": "South Carolina", + "city": "Hemlock" + } + }, + { + "id": 464, + "name": "Morin Hayden", + "gender": "male", + "age": 40, + "address": { + "state": "Indiana", + "city": "Worcester" + } + }, + { + "id": 465, + "name": "Natasha Humphrey", + "gender": "female", + "age": 59, + "address": { + "state": "Virginia", + "city": "Weedville" + } + }, + { + "id": 466, + "name": "Joyner Velasquez", + "gender": "male", + "age": 22, + "address": { + "state": "Florida", + "city": "Greenwich" + } + }, + { + "id": 467, + "name": "Charlene Gutierrez", + "gender": "female", + "age": 70, + "address": { + "state": "Arizona", + "city": "Hiko" + } + }, + { + "id": 468, + "name": "Chan Hubbard", + "gender": "male", + "age": 39, + "address": { + "state": "Maine", + "city": "Boling" + } + }, + { + "id": 469, + "name": "Kristen Knapp", + "gender": "female", + "age": 49, + "address": { + "state": "Oklahoma", + "city": "Vale" + } + }, + { + "id": 470, + "name": "Preston Chapman", + "gender": "male", + "age": 73, + "address": { + "state": "Vermont", + "city": "Kenmar" + } + }, + { + "id": 471, + "name": "Aguilar Singleton", + "gender": "male", + "age": 40, + "address": { + "state": "New Mexico", + "city": "Gratton" + } + }, + { + "id": 472, + "name": "Berry Montoya", + "gender": "male", + "age": 36, + "address": { + "state": "Tennessee", + "city": "Dowling" + } + }, + { + "id": 473, + "name": "Terrie Rowland", + "gender": "female", + "age": 72, + "address": { + "state": "Connecticut", + "city": "Catherine" + } + }, + { + "id": 474, + "name": "Nichole Holland", + "gender": "female", + "age": 63, + "address": { + "state": "Nebraska", + "city": "Wintersburg" + } + }, + { + "id": 475, + "name": "Stevens Lee", + "gender": "male", + "age": 66, + "address": { + "state": "Georgia", + "city": "Berlin" + } + }, + { + "id": 476, + "name": "Florine Dunlap", + "gender": "female", + "age": 75, + "address": { + "state": "Montana", + "city": "Bancroft" + } + }, + { + "id": 477, + "name": "Bartlett Diaz", + "gender": "male", + "age": 78, + "address": { + "state": "Utah", + "city": "Ahwahnee" + } + }, + { + "id": 478, + "name": "Kasey Mendoza", + "gender": "female", + "age": 19, + "address": { + "state": "North Carolina", + "city": "Roulette" + } + }, + { + "id": 479, + "name": "Lakisha Eaton", + "gender": "female", + "age": 47, + "address": { + "state": "Ohio", + "city": "Statenville" + } + }, + { + "id": 480, + "name": "Flores Mills", + "gender": "male", + "age": 76, + "address": { + "state": "Missouri", + "city": "Adelino" + } + }, + { + "id": 481, + "name": "Pat Hardy", + "gender": "female", + "age": 20, + "address": { + "state": "California", + "city": "Somerset" + } + }, + { + "id": 482, + "name": "Esther Stafford", + "gender": "female", + "age": 45, + "address": { + "state": "Idaho", + "city": "Hackneyville" + } + }, + { + "id": 483, + "name": "Reeves Gonzales", + "gender": "male", + "age": 41, + "address": { + "state": "Alaska", + "city": "Boomer" + } + }, + { + "id": 484, + "name": "Pamela Abbott", + "gender": "female", + "age": 36, + "address": { + "state": "Michigan", + "city": "Cumminsville" + } + }, + { + "id": 485, + "name": "Tamra Cash", + "gender": "female", + "age": 32, + "address": { + "state": "Washington", + "city": "Norfolk" + } + }, + { + "id": 486, + "name": "Haley Park", + "gender": "female", + "age": 69, + "address": { + "state": "New Hampshire", + "city": "Holcombe" + } + }, + { + "id": 487, + "name": "Chapman Cook", + "gender": "male", + "age": 54, + "address": { + "state": "Wisconsin", + "city": "Brethren" + } + }, + { + "id": 488, + "name": "Mitchell Pugh", + "gender": "male", + "age": 71, + "address": { + "state": "West Virginia", + "city": "Ogema" + } + }, + { + "id": 489, + "name": "Hess Lynch", + "gender": "male", + "age": 20, + "address": { + "state": "Mississippi", + "city": "Wedgewood" + } + }, + { + "id": 490, + "name": "Dorthy Doyle", + "gender": "female", + "age": 31, + "address": { + "state": "Kansas", + "city": "Gwynn" + } + }, + { + "id": 491, + "name": "Cobb Merritt", + "gender": "male", + "age": 65, + "address": { + "state": "Nebraska", + "city": "Leeper" + } + }, + { + "id": 492, + "name": "Joy Horn", + "gender": "female", + "age": 56, + "address": { + "state": "Connecticut", + "city": "Turpin" + } + }, + { + "id": 493, + "name": "Earlene Castaneda", + "gender": "female", + "age": 36, + "address": { + "state": "Delaware", + "city": "Temperanceville" + } + }, + { + "id": 494, + "name": "Hodges Vang", + "gender": "male", + "age": 53, + "address": { + "state": "Florida", + "city": "Jessie" + } + }, + { + "id": 495, + "name": "Kenya Soto", + "gender": "female", + "age": 73, + "address": { + "state": "Colorado", + "city": "Eureka" + } + }, + { + "id": 496, + "name": "Lidia Santos", + "gender": "female", + "age": 52, + "address": { + "state": "Arkansas", + "city": "Stevens" + } + }, + { + "id": 497, + "name": "Suzanne Barrera", + "gender": "female", + "age": 73, + "address": { + "state": "New Jersey", + "city": "Advance" + } + }, + { + "id": 498, + "name": "Daniel Reyes", + "gender": "male", + "age": 57, + "address": { + "state": "Alaska", + "city": "Churchill" + } + }, + { + "id": 499, + "name": "Maura Osborn", + "gender": "female", + "age": 68, + "address": { + "state": "Tennessee", + "city": "Hartsville/Hartley" + } + }, + { + "id": 500, + "name": "Beryl Ball", + "gender": "female", + "age": 28, + "address": { + "state": "Michigan", + "city": "Savage" + } + }, + { + "id": 501, + "name": "Ada Pena", + "gender": "female", + "age": 68, + "address": { + "state": "New York", + "city": "Lynn" + } + }, + { + "id": 502, + "name": "Kris Mccoy", + "gender": "female", + "age": 40, + "address": { + "state": "Utah", + "city": "Centerville" + } + }, + { + "id": 503, + "name": "Juliet Orr", + "gender": "female", + "age": 45, + "address": { + "state": "Montana", + "city": "Richmond" + } + }, + { + "id": 504, + "name": "Bettye Mckay", + "gender": "female", + "age": 60, + "address": { + "state": "South Dakota", + "city": "Spokane" + } + }, + { + "id": 505, + "name": "Hardin Witt", + "gender": "male", + "age": 44, + "address": { + "state": "Arizona", + "city": "Devon" + } + }, + { + "id": 506, + "name": "Josefa Kaufman", + "gender": "female", + "age": 72, + "address": { + "state": "Missouri", + "city": "Villarreal" + } + }, + { + "id": 507, + "name": "Schwartz Dean", + "gender": "male", + "age": 58, + "address": { + "state": "Oklahoma", + "city": "Hendersonville" + } + }, + { + "id": 508, + "name": "Rose Mercado", + "gender": "female", + "age": 28, + "address": { + "state": "Pennsylvania", + "city": "Clara" + } + }, + { + "id": 509, + "name": "Lesa Pace", + "gender": "female", + "age": 24, + "address": { + "state": "Hawaii", + "city": "Wintersburg" + } + }, + { + "id": 510, + "name": "Wagner Dunlap", + "gender": "male", + "age": 55, + "address": { + "state": "Wyoming", + "city": "Oneida" + } + }, + { + "id": 511, + "name": "Arnold Dotson", + "gender": "male", + "age": 69, + "address": { + "state": "Kentucky", + "city": "Bonanza" + } + }, + { + "id": 512, + "name": "Michele Duke", + "gender": "female", + "age": 38, + "address": { + "state": "Washington", + "city": "Bend" + } + }, + { + "id": 513, + "name": "Floyd Walters", + "gender": "male", + "age": 41, + "address": { + "state": "New Mexico", + "city": "Hebron" + } + }, + { + "id": 514, + "name": "Pierce Hopkins", + "gender": "male", + "age": 36, + "address": { + "state": "New Hampshire", + "city": "Beechmont" + } + }, + { + "id": 515, + "name": "Delaney Perez", + "gender": "male", + "age": 74, + "address": { + "state": "North Carolina", + "city": "Crenshaw" + } + }, + { + "id": 516, + "name": "Romero Hester", + "gender": "male", + "age": 58, + "address": { + "state": "Iowa", + "city": "Abiquiu" + } + }, + { + "id": 517, + "name": "Brewer Heath", + "gender": "male", + "age": 53, + "address": { + "state": "West Virginia", + "city": "Sterling" + } + }, + { + "id": 518, + "name": "Shaw Carver", + "gender": "male", + "age": 81, + "address": { + "state": "Idaho", + "city": "Gorst" + } + }, + { + "id": 519, + "name": "Morgan Richards", + "gender": "female", + "age": 65, + "address": { + "state": "Louisiana", + "city": "Aurora" + } + }, + { + "id": 520, + "name": "Josephine Coleman", + "gender": "female", + "age": 57, + "address": { + "state": "California", + "city": "Kieler" + } + }, + { + "id": 521, + "name": "Pope Weber", + "gender": "male", + "age": 46, + "address": { + "state": "Vermont", + "city": "Cashtown" + } + }, + { + "id": 522, + "name": "Boyer Henderson", + "gender": "male", + "age": 37, + "address": { + "state": "Wisconsin", + "city": "Welda" + } + }, + { + "id": 523, + "name": "Naomi Osborne", + "gender": "female", + "age": 45, + "address": { + "state": "Maine", + "city": "Eastmont" + } + }, + { + "id": 524, + "name": "Lucille Riggs", + "gender": "female", + "age": 17, + "address": { + "state": "North Dakota", + "city": "Byrnedale" + } + }, + { + "id": 525, + "name": "Louisa Quinn", + "gender": "female", + "age": 23, + "address": { + "state": "Nevada", + "city": "Veguita" + } + }, + { + "id": 526, + "name": "Webster Oneill", + "gender": "male", + "age": 70, + "address": { + "state": "Maryland", + "city": "Baker" + } + }, + { + "id": 527, + "name": "Wilkins Summers", + "gender": "male", + "age": 35, + "address": { + "state": "Massachusetts", + "city": "Warren" + } + }, + { + "id": 528, + "name": "Tanya Savage", + "gender": "female", + "age": 57, + "address": { + "state": "Virginia", + "city": "Greenock" + } + }, + { + "id": 529, + "name": "Lenora May", + "gender": "female", + "age": 58, + "address": { + "state": "Minnesota", + "city": "Edinburg" + } + }, + { + "id": 530, + "name": "Beulah Holden", + "gender": "female", + "age": 31, + "address": { + "state": "Ohio", + "city": "Fostoria" + } + }, + { + "id": 531, + "name": "Leslie Boone", + "gender": "female", + "age": 29, + "address": { + "state": "Georgia", + "city": "Ivanhoe" + } + }, + { + "id": 532, + "name": "Yates Hartman", + "gender": "male", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Deputy" + } + }, + { + "id": 533, + "name": "Chelsea Hull", + "gender": "female", + "age": 42, + "address": { + "state": "Oregon", + "city": "Dale" + } + }, + { + "id": 534, + "name": "Benson Small", + "gender": "male", + "age": 74, + "address": { + "state": "Alabama", + "city": "Westboro" + } + }, + { + "id": 535, + "name": "Jacobs Lott", + "gender": "male", + "age": 64, + "address": { + "state": "Rhode Island", + "city": "Woodlands" + } + }, + { + "id": 536, + "name": "Selena Preston", + "gender": "female", + "age": 45, + "address": { + "state": "Illinois", + "city": "Westwood" + } + }, + { + "id": 537, + "name": "Gates Britt", + "gender": "male", + "age": 22, + "address": { + "state": "Texas", + "city": "Downsville" + } + }, + { + "id": 538, + "name": "Caroline Cabrera", + "gender": "female", + "age": 75, + "address": { + "state": "Indiana", + "city": "Makena" + } + }, + { + "id": 539, + "name": "Carmen Cooke", + "gender": "female", + "age": 51, + "address": { + "state": "Kentucky", + "city": "Dowling" + } + }, + { + "id": 540, + "name": "Jaime Webster", + "gender": "female", + "age": 23, + "address": { + "state": "Wyoming", + "city": "Ada" + } + }, + { + "id": 541, + "name": "Mary Porter", + "gender": "female", + "age": 30, + "address": { + "state": "North Dakota", + "city": "Gilgo" + } + }, + { + "id": 542, + "name": "Phillips Bell", + "gender": "male", + "age": 76, + "address": { + "state": "Nebraska", + "city": "Rowe" + } + }, + { + "id": 543, + "name": "Moss Foley", + "gender": "male", + "age": 18, + "address": { + "state": "Alaska", + "city": "Gallina" + } + }, + { + "id": 544, + "name": "Solomon Nicholson", + "gender": "male", + "age": 19, + "address": { + "state": "Delaware", + "city": "Rossmore" + } + }, + { + "id": 545, + "name": "Dianna Bennett", + "gender": "female", + "age": 63, + "address": { + "state": "Alabama", + "city": "Hampstead" + } + }, + { + "id": 546, + "name": "Maude King", + "gender": "female", + "age": 54, + "address": { + "state": "South Dakota", + "city": "Sunwest" + } + }, + { + "id": 547, + "name": "Anastasia Chaney", + "gender": "female", + "age": 57, + "address": { + "state": "New Hampshire", + "city": "Clara" + } + }, + { + "id": 548, + "name": "Virginia Allen", + "gender": "female", + "age": 28, + "address": { + "state": "New Jersey", + "city": "Kempton" + } + }, + { + "id": 549, + "name": "Conway Allison", + "gender": "male", + "age": 76, + "address": { + "state": "Florida", + "city": "Allensworth" + } + }, + { + "id": 550, + "name": "Shields Key", + "gender": "male", + "age": 29, + "address": { + "state": "Montana", + "city": "Sultana" + } + }, + { + "id": 551, + "name": "Sonia Brock", + "gender": "female", + "age": 39, + "address": { + "state": "Rhode Island", + "city": "Leroy" + } + }, + { + "id": 552, + "name": "Mitzi Klein", + "gender": "female", + "age": 65, + "address": { + "state": "North Carolina", + "city": "Waukeenah" + } + }, + { + "id": 553, + "name": "Torres Montoya", + "gender": "male", + "age": 59, + "address": { + "state": "Kansas", + "city": "Homeworth" + } + }, + { + "id": 554, + "name": "Estelle Butler", + "gender": "female", + "age": 42, + "address": { + "state": "Mississippi", + "city": "Woodlands" + } + }, + { + "id": 555, + "name": "Vargas Wise", + "gender": "male", + "age": 73, + "address": { + "state": "Pennsylvania", + "city": "Dargan" + } + }, + { + "id": 556, + "name": "Annabelle Mason", + "gender": "female", + "age": 53, + "address": { + "state": "Oklahoma", + "city": "Allamuchy" + } + }, + { + "id": 557, + "name": "Helene Frank", + "gender": "female", + "age": 38, + "address": { + "state": "Maine", + "city": "Iberia" + } + }, + { + "id": 558, + "name": "Susanne Travis", + "gender": "female", + "age": 77, + "address": { + "state": "Utah", + "city": "Fairfield" + } + }, + { + "id": 559, + "name": "Howell Mejia", + "gender": "male", + "age": 37, + "address": { + "state": "Washington", + "city": "Marion" + } + }, + { + "id": 560, + "name": "Melva Oneil", + "gender": "female", + "age": 18, + "address": { + "state": "Vermont", + "city": "Norvelt" + } + }, + { + "id": 561, + "name": "Bernice Romero", + "gender": "female", + "age": 41, + "address": { + "state": "Oregon", + "city": "Brantleyville" + } + }, + { + "id": 562, + "name": "Ana Duke", + "gender": "female", + "age": 25, + "address": { + "state": "South Carolina", + "city": "Nanafalia" + } + }, + { + "id": 563, + "name": "Mariana Pate", + "gender": "female", + "age": 18, + "address": { + "state": "Massachusetts", + "city": "Deltaville" + } + }, + { + "id": 564, + "name": "Holland Rogers", + "gender": "male", + "age": 46, + "address": { + "state": "Iowa", + "city": "Bodega" + } + }, + { + "id": 565, + "name": "Mullins Pacheco", + "gender": "male", + "age": 78, + "address": { + "state": "Minnesota", + "city": "Clarence" + } + }, + { + "id": 566, + "name": "Margaret Bolton", + "gender": "female", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Tyhee" + } + }, + { + "id": 567, + "name": "Vilma Lott", + "gender": "female", + "age": 30, + "address": { + "state": "Missouri", + "city": "Tetherow" + } + }, + { + "id": 568, + "name": "Deana Grant", + "gender": "female", + "age": 82, + "address": { + "state": "Idaho", + "city": "Jeff" + } + }, + { + "id": 569, + "name": "Francisca Thornton", + "gender": "female", + "age": 34, + "address": { + "state": "West Virginia", + "city": "Avalon" + } + }, + { + "id": 570, + "name": "Lauren Griffin", + "gender": "female", + "age": 60, + "address": { + "state": "Ohio", + "city": "Fingerville" + } + }, + { + "id": 571, + "name": "Bridget Strickland", + "gender": "female", + "age": 66, + "address": { + "state": "New York", + "city": "Nicholson" + } + }, + { + "id": 572, + "name": "Petra Pugh", + "gender": "female", + "age": 37, + "address": { + "state": "Indiana", + "city": "Stonybrook" + } + }, + { + "id": 573, + "name": "Ruby Burris", + "gender": "female", + "age": 64, + "address": { + "state": "Georgia", + "city": "Bergoo" + } + }, + { + "id": 574, + "name": "Whitney Yates", + "gender": "female", + "age": 28, + "address": { + "state": "New Mexico", + "city": "Bluffview" + } + }, + { + "id": 575, + "name": "Ellen Steele", + "gender": "female", + "age": 22, + "address": { + "state": "Colorado", + "city": "Windsor" + } + }, + { + "id": 576, + "name": "Lesa Ortega", + "gender": "female", + "age": 34, + "address": { + "state": "Tennessee", + "city": "Laurelton" + } + }, + { + "id": 577, + "name": "Aguirre Decker", + "gender": "male", + "age": 40, + "address": { + "state": "Virginia", + "city": "Eureka" + } + }, + { + "id": 578, + "name": "Ray Moss", + "gender": "male", + "age": 32, + "address": { + "state": "Maryland", + "city": "Cucumber" + } + }, + { + "id": 579, + "name": "Letha Head", + "gender": "female", + "age": 43, + "address": { + "state": "Arizona", + "city": "Mathews" + } + }, + { + "id": 580, + "name": "Davis Hahn", + "gender": "male", + "age": 67, + "address": { + "state": "Michigan", + "city": "Kilbourne" + } + }, + { + "id": 581, + "name": "Jeannette Velasquez", + "gender": "female", + "age": 20, + "address": { + "state": "Hawaii", + "city": "Hebron" + } + }, + { + "id": 582, + "name": "Lamb Jarvis", + "gender": "male", + "age": 17, + "address": { + "state": "Wisconsin", + "city": "Frizzleburg" + } + }, + { + "id": 583, + "name": "Keri Dunlap", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Marbury" + } + }, + { + "id": 584, + "name": "Sharpe Sharpe", + "gender": "male", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Stagecoach" + } + }, + { + "id": 585, + "name": "Olivia Garrett", + "gender": "female", + "age": 47, + "address": { + "state": "Arkansas", + "city": "Dexter" + } + }, + { + "id": 586, + "name": "Ava Graham", + "gender": "female", + "age": 61, + "address": { + "state": "Texas", + "city": "Calpine" + } + }, + { + "id": 587, + "name": "Doris Horton", + "gender": "female", + "age": 21, + "address": { + "state": "Nevada", + "city": "Goodville" + } + }, + { + "id": 588, + "name": "Jimenez Abbott", + "gender": "male", + "age": 45, + "address": { + "state": "California", + "city": "Tuskahoma" + } + }, + { + "id": 589, + "name": "Michele Branch", + "gender": "female", + "age": 30, + "address": { + "state": "Nebraska", + "city": "Lavalette" + } + }, + { + "id": 590, + "name": "Reva Parks", + "gender": "female", + "age": 74, + "address": { + "state": "Wisconsin", + "city": "Springville" + } + }, + { + "id": 591, + "name": "Burch Hewitt", + "gender": "male", + "age": 21, + "address": { + "state": "New Mexico", + "city": "Dunlo" + } + }, + { + "id": 592, + "name": "Small Haney", + "gender": "male", + "age": 33, + "address": { + "state": "Utah", + "city": "Groton" + } + }, + { + "id": 593, + "name": "Lee Nolan", + "gender": "female", + "age": 20, + "address": { + "state": "New Jersey", + "city": "Canoochee" + } + }, + { + "id": 594, + "name": "Montoya Suarez", + "gender": "male", + "age": 25, + "address": { + "state": "Texas", + "city": "Guilford" + } + }, + { + "id": 595, + "name": "Jolene Todd", + "gender": "female", + "age": 33, + "address": { + "state": "Delaware", + "city": "Witmer" + } + }, + { + "id": 596, + "name": "Robert Compton", + "gender": "female", + "age": 24, + "address": { + "state": "Minnesota", + "city": "Bynum" + } + }, + { + "id": 597, + "name": "Mueller Velez", + "gender": "male", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Walker" + } + }, + { + "id": 598, + "name": "Bruce Davidson", + "gender": "male", + "age": 18, + "address": { + "state": "Michigan", + "city": "Caln" + } + }, + { + "id": 599, + "name": "Yesenia Burnett", + "gender": "female", + "age": 80, + "address": { + "state": "Virginia", + "city": "Noblestown" + } + }, + { + "id": 600, + "name": "Vasquez Carson", + "gender": "male", + "age": 76, + "address": { + "state": "Indiana", + "city": "Lindisfarne" + } + }, + { + "id": 601, + "name": "Selena Newton", + "gender": "female", + "age": 41, + "address": { + "state": "Illinois", + "city": "Grenelefe" + } + }, + { + "id": 602, + "name": "Anne Molina", + "gender": "female", + "age": 20, + "address": { + "state": "Wyoming", + "city": "Greensburg" + } + }, + { + "id": 603, + "name": "Jacklyn Burris", + "gender": "female", + "age": 42, + "address": { + "state": "South Dakota", + "city": "Tooleville" + } + }, + { + "id": 604, + "name": "Guadalupe Cortez", + "gender": "female", + "age": 40, + "address": { + "state": "New Hampshire", + "city": "Moscow" + } + }, + { + "id": 605, + "name": "Marissa Howell", + "gender": "female", + "age": 68, + "address": { + "state": "South Carolina", + "city": "Matheny" + } + }, + { + "id": 606, + "name": "Sandy Mathews", + "gender": "female", + "age": 68, + "address": { + "state": "Oregon", + "city": "Marysville" + } + }, + { + "id": 607, + "name": "Chang Bowen", + "gender": "male", + "age": 45, + "address": { + "state": "New York", + "city": "Jacumba" + } + }, + { + "id": 608, + "name": "Concepcion Sexton", + "gender": "female", + "age": 60, + "address": { + "state": "Vermont", + "city": "Lydia" + } + }, + { + "id": 609, + "name": "Sophie Carlson", + "gender": "female", + "age": 35, + "address": { + "state": "Kansas", + "city": "Hannasville" + } + }, + { + "id": 610, + "name": "Henry Bean", + "gender": "male", + "age": 58, + "address": { + "state": "Oklahoma", + "city": "Kingstowne" + } + }, + { + "id": 611, + "name": "Teresa Figueroa", + "gender": "female", + "age": 52, + "address": { + "state": "Maine", + "city": "Canby" + } + }, + { + "id": 612, + "name": "Little Gates", + "gender": "male", + "age": 23, + "address": { + "state": "Mississippi", + "city": "Bartonsville" + } + }, + { + "id": 613, + "name": "Hamilton Barnett", + "gender": "male", + "age": 73, + "address": { + "state": "Kentucky", + "city": "Sunbury" + } + }, + { + "id": 614, + "name": "Marquez Durham", + "gender": "male", + "age": 67, + "address": { + "state": "Washington", + "city": "Barstow" + } + }, + { + "id": 615, + "name": "Gonzalez Glover", + "gender": "male", + "age": 31, + "address": { + "state": "North Dakota", + "city": "Elrama" + } + }, + { + "id": 616, + "name": "Campbell Dixon", + "gender": "male", + "age": 51, + "address": { + "state": "Colorado", + "city": "Succasunna" + } + }, + { + "id": 617, + "name": "Todd Oliver", + "gender": "male", + "age": 50, + "address": { + "state": "Pennsylvania", + "city": "Choctaw" + } + }, + { + "id": 618, + "name": "Middleton Landry", + "gender": "male", + "age": 57, + "address": { + "state": "Massachusetts", + "city": "Kenmar" + } + }, + { + "id": 619, + "name": "Mcguire Bender", + "gender": "male", + "age": 22, + "address": { + "state": "Arizona", + "city": "Camptown" + } + }, + { + "id": 620, + "name": "Reeves Terrell", + "gender": "male", + "age": 36, + "address": { + "state": "Maryland", + "city": "Why" + } + }, + { + "id": 621, + "name": "Jennings Townsend", + "gender": "male", + "age": 57, + "address": { + "state": "Rhode Island", + "city": "Fredericktown" + } + }, + { + "id": 622, + "name": "Nettie Shaw", + "gender": "female", + "age": 27, + "address": { + "state": "Georgia", + "city": "Robinson" + } + }, + { + "id": 623, + "name": "Phillips Sloan", + "gender": "male", + "age": 74, + "address": { + "state": "Iowa", + "city": "Nicholson" + } + }, + { + "id": 624, + "name": "Mona Webster", + "gender": "female", + "age": 75, + "address": { + "state": "Tennessee", + "city": "Kanauga" + } + }, + { + "id": 625, + "name": "Ball Powell", + "gender": "male", + "age": 59, + "address": { + "state": "Hawaii", + "city": "Sunriver" + } + }, + { + "id": 626, + "name": "Douglas Austin", + "gender": "male", + "age": 78, + "address": { + "state": "Arkansas", + "city": "Gratton" + } + }, + { + "id": 627, + "name": "Howe Murray", + "gender": "male", + "age": 57, + "address": { + "state": "Ohio", + "city": "Hemlock" + } + }, + { + "id": 628, + "name": "Wood Nielsen", + "gender": "male", + "age": 65, + "address": { + "state": "Alabama", + "city": "Blandburg" + } + }, + { + "id": 629, + "name": "Donna Frost", + "gender": "female", + "age": 33, + "address": { + "state": "Alaska", + "city": "Staples" + } + }, + { + "id": 630, + "name": "Louella Sullivan", + "gender": "female", + "age": 59, + "address": { + "state": "North Carolina", + "city": "Flintville" + } + }, + { + "id": 631, + "name": "Hilda Mayo", + "gender": "female", + "age": 18, + "address": { + "state": "Nevada", + "city": "Barrelville" + } + }, + { + "id": 632, + "name": "Rosario Perry", + "gender": "male", + "age": 69, + "address": { + "state": "Missouri", + "city": "Day" + } + }, + { + "id": 633, + "name": "Elliott Kane", + "gender": "male", + "age": 43, + "address": { + "state": "Idaho", + "city": "Stewart" + } + }, + { + "id": 634, + "name": "Sara Olsen", + "gender": "female", + "age": 79, + "address": { + "state": "Louisiana", + "city": "Nettie" + } + }, + { + "id": 635, + "name": "Lawrence Pickett", + "gender": "male", + "age": 45, + "address": { + "state": "Montana", + "city": "Fidelis" + } + }, + { + "id": 636, + "name": "Julia Price", + "gender": "female", + "age": 62, + "address": { + "state": "Florida", + "city": "Longoria" + } + }, + { + "id": 637, + "name": "Emily Williams", + "gender": "female", + "age": 18, + "address": { + "state": "Oregon", + "city": "Blende" + } + }, + { + "id": 638, + "name": "Mcfadden Williams", + "gender": "male", + "age": 73, + "address": { + "state": "Wyoming", + "city": "Bloomington" + } + }, + { + "id": 639, + "name": "Josefa Dyer", + "gender": "female", + "age": 41, + "address": { + "state": "Ohio", + "city": "Takilma" + } + }, + { + "id": 640, + "name": "Sharpe Charles", + "gender": "male", + "age": 36, + "address": { + "state": "Iowa", + "city": "Bennett" + } + }, + { + "id": 641, + "name": "Odom Steele", + "gender": "male", + "age": 22, + "address": { + "state": "Idaho", + "city": "Kennedyville" + } + }, + { + "id": 642, + "name": "Kristine Hopper", + "gender": "female", + "age": 24, + "address": { + "state": "Utah", + "city": "Indio" + } + }, + { + "id": 643, + "name": "Harris Norton", + "gender": "male", + "age": 62, + "address": { + "state": "California", + "city": "Grandview" + } + }, + { + "id": 644, + "name": "Wagner Ellison", + "gender": "male", + "age": 53, + "address": { + "state": "North Dakota", + "city": "Katonah" + } + }, + { + "id": 645, + "name": "Michael Dickson", + "gender": "male", + "age": 33, + "address": { + "state": "Oklahoma", + "city": "Grantville" + } + }, + { + "id": 646, + "name": "Celina Arnold", + "gender": "female", + "age": 26, + "address": { + "state": "Kansas", + "city": "Bakersville" + } + }, + { + "id": 647, + "name": "Bruce Stark", + "gender": "male", + "age": 79, + "address": { + "state": "Vermont", + "city": "Marion" + } + }, + { + "id": 648, + "name": "Collins Hudson", + "gender": "male", + "age": 36, + "address": { + "state": "Nebraska", + "city": "Wauhillau" + } + }, + { + "id": 649, + "name": "Mcgowan Leon", + "gender": "male", + "age": 34, + "address": { + "state": "Alaska", + "city": "Farmington" + } + }, + { + "id": 650, + "name": "Myrna Hodges", + "gender": "female", + "age": 32, + "address": { + "state": "Nevada", + "city": "Wollochet" + } + }, + { + "id": 651, + "name": "Thelma Koch", + "gender": "female", + "age": 52, + "address": { + "state": "Georgia", + "city": "Cassel" + } + }, + { + "id": 652, + "name": "Lucille Reynolds", + "gender": "female", + "age": 78, + "address": { + "state": "Maine", + "city": "Weedville" + } + }, + { + "id": 653, + "name": "Noemi Mcdaniel", + "gender": "female", + "age": 59, + "address": { + "state": "Mississippi", + "city": "Sunwest" + } + }, + { + "id": 654, + "name": "Morin Rojas", + "gender": "male", + "age": 61, + "address": { + "state": "Maryland", + "city": "Cleary" + } + }, + { + "id": 655, + "name": "Herring Price", + "gender": "male", + "age": 60, + "address": { + "state": "Indiana", + "city": "Orason" + } + }, + { + "id": 656, + "name": "Collier Santos", + "gender": "male", + "age": 51, + "address": { + "state": "West Virginia", + "city": "Alleghenyville" + } + }, + { + "id": 657, + "name": "Macdonald Jefferson", + "gender": "male", + "age": 81, + "address": { + "state": "Washington", + "city": "Falconaire" + } + }, + { + "id": 658, + "name": "Rich Gentry", + "gender": "male", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Ruckersville" + } + }, + { + "id": 659, + "name": "Frank Martin", + "gender": "male", + "age": 48, + "address": { + "state": "Wisconsin", + "city": "Trucksville" + } + }, + { + "id": 660, + "name": "Shelton Lamb", + "gender": "male", + "age": 33, + "address": { + "state": "Hawaii", + "city": "Somerset" + } + }, + { + "id": 661, + "name": "Todd Moore", + "gender": "male", + "age": 46, + "address": { + "state": "Florida", + "city": "Darrtown" + } + }, + { + "id": 662, + "name": "Conner Young", + "gender": "male", + "age": 72, + "address": { + "state": "Arizona", + "city": "Marienthal" + } + }, + { + "id": 663, + "name": "Rosie Macias", + "gender": "female", + "age": 64, + "address": { + "state": "South Carolina", + "city": "Graniteville" + } + }, + { + "id": 664, + "name": "Gross Schultz", + "gender": "male", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Bergoo" + } + }, + { + "id": 665, + "name": "Albert Santana", + "gender": "male", + "age": 30, + "address": { + "state": "Colorado", + "city": "Bladensburg" + } + }, + { + "id": 666, + "name": "Jewell Burt", + "gender": "female", + "age": 69, + "address": { + "state": "Michigan", + "city": "Callaghan" + } + }, + { + "id": 667, + "name": "Haley Bass", + "gender": "female", + "age": 70, + "address": { + "state": "Illinois", + "city": "Florence" + } + }, + { + "id": 668, + "name": "Elise Shepard", + "gender": "female", + "age": 64, + "address": { + "state": "Montana", + "city": "Lemoyne" + } + }, + { + "id": 669, + "name": "Marsha Everett", + "gender": "female", + "age": 50, + "address": { + "state": "Missouri", + "city": "Nord" + } + }, + { + "id": 670, + "name": "Bean Pace", + "gender": "male", + "age": 26, + "address": { + "state": "Tennessee", + "city": "Johnsonburg" + } + }, + { + "id": 671, + "name": "Daugherty Peterson", + "gender": "male", + "age": 71, + "address": { + "state": "New Mexico", + "city": "Dahlen" + } + }, + { + "id": 672, + "name": "Dorsey Anderson", + "gender": "male", + "age": 25, + "address": { + "state": "Texas", + "city": "Guthrie" + } + }, + { + "id": 673, + "name": "Ernestine Howell", + "gender": "female", + "age": 33, + "address": { + "state": "Virginia", + "city": "Summerset" + } + }, + { + "id": 674, + "name": "Gay Vargas", + "gender": "male", + "age": 57, + "address": { + "state": "Minnesota", + "city": "Hiseville" + } + }, + { + "id": 675, + "name": "Muriel Wynn", + "gender": "female", + "age": 32, + "address": { + "state": "Pennsylvania", + "city": "Healy" + } + }, + { + "id": 676, + "name": "Mckee Gallagher", + "gender": "male", + "age": 31, + "address": { + "state": "Delaware", + "city": "Camino" + } + }, + { + "id": 677, + "name": "Lelia Parrish", + "gender": "female", + "age": 75, + "address": { + "state": "New York", + "city": "Gadsden" + } + }, + { + "id": 678, + "name": "Julianne Kane", + "gender": "female", + "age": 54, + "address": { + "state": "Kentucky", + "city": "Ladera" + } + }, + { + "id": 679, + "name": "Travis Combs", + "gender": "male", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Cliffside" + } + }, + { + "id": 680, + "name": "Mary Huffman", + "gender": "female", + "age": 28, + "address": { + "state": "New Hampshire", + "city": "Ryderwood" + } + }, + { + "id": 681, + "name": "Charity Delacruz", + "gender": "female", + "age": 49, + "address": { + "state": "Alabama", + "city": "Salix" + } + }, + { + "id": 682, + "name": "Selena Mcleod", + "gender": "female", + "age": 17, + "address": { + "state": "Louisiana", + "city": "Harold" + } + }, + { + "id": 683, + "name": "Mallory Hoffman", + "gender": "female", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Graball" + } + }, + { + "id": 684, + "name": "Vanessa Rosario", + "gender": "female", + "age": 63, + "address": { + "state": "New Jersey", + "city": "Kenmar" + } + }, + { + "id": 685, + "name": "Blanche Jordan", + "gender": "female", + "age": 21, + "address": { + "state": "Arkansas", + "city": "Virgie" + } + }, + { + "id": 686, + "name": "Brandy Hardy", + "gender": "female", + "age": 66, + "address": { + "state": "Kansas", + "city": "Gibbsville" + } + }, + { + "id": 687, + "name": "Rosanne Walton", + "gender": "female", + "age": 44, + "address": { + "state": "South Carolina", + "city": "Turpin" + } + }, + { + "id": 688, + "name": "Aurora Hickman", + "gender": "female", + "age": 30, + "address": { + "state": "Maryland", + "city": "Rockingham" + } + }, + { + "id": 689, + "name": "Duke Cline", + "gender": "male", + "age": 71, + "address": { + "state": "New Mexico", + "city": "Imperial" + } + }, + { + "id": 690, + "name": "Madeline Slater", + "gender": "female", + "age": 51, + "address": { + "state": "Alaska", + "city": "Roulette" + } + }, + { + "id": 691, + "name": "Eddie Glenn", + "gender": "female", + "age": 33, + "address": { + "state": "New Jersey", + "city": "Roland" + } + }, + { + "id": 692, + "name": "Valentine Talley", + "gender": "male", + "age": 18, + "address": { + "state": "Georgia", + "city": "Waterloo" + } + }, + { + "id": 693, + "name": "Carney Morrison", + "gender": "male", + "age": 53, + "address": { + "state": "Pennsylvania", + "city": "Esmont" + } + }, + { + "id": 694, + "name": "Stout Lowe", + "gender": "male", + "age": 51, + "address": { + "state": "Wisconsin", + "city": "Brandywine" + } + }, + { + "id": 695, + "name": "Candy Lawrence", + "gender": "female", + "age": 73, + "address": { + "state": "Arkansas", + "city": "Morningside" + } + }, + { + "id": 696, + "name": "Curtis Sherman", + "gender": "male", + "age": 43, + "address": { + "state": "Connecticut", + "city": "Soudan" + } + }, + { + "id": 697, + "name": "Christensen Dickerson", + "gender": "male", + "age": 60, + "address": { + "state": "Mississippi", + "city": "Mammoth" + } + }, + { + "id": 698, + "name": "Hilary Yang", + "gender": "female", + "age": 69, + "address": { + "state": "Ohio", + "city": "Gouglersville" + } + }, + { + "id": 699, + "name": "Charlene Mclaughlin", + "gender": "female", + "age": 62, + "address": { + "state": "Delaware", + "city": "Romeville" + } + }, + { + "id": 700, + "name": "Massey Nash", + "gender": "male", + "age": 55, + "address": { + "state": "Tennessee", + "city": "Kylertown" + } + }, + { + "id": 701, + "name": "Randi Gay", + "gender": "female", + "age": 33, + "address": { + "state": "Illinois", + "city": "Silkworth" + } + }, + { + "id": 702, + "name": "Melva Mcgee", + "gender": "female", + "age": 72, + "address": { + "state": "Louisiana", + "city": "Conestoga" + } + }, + { + "id": 703, + "name": "Hyde Wilder", + "gender": "male", + "age": 34, + "address": { + "state": "Utah", + "city": "Rutherford" + } + }, + { + "id": 704, + "name": "Aisha Lane", + "gender": "female", + "age": 34, + "address": { + "state": "Michigan", + "city": "Frank" + } + }, + { + "id": 705, + "name": "Jan Kirk", + "gender": "female", + "age": 71, + "address": { + "state": "West Virginia", + "city": "Cavalero" + } + }, + { + "id": 706, + "name": "Dionne Becker", + "gender": "female", + "age": 82, + "address": { + "state": "Montana", + "city": "Brady" + } + }, + { + "id": 707, + "name": "Lorraine Hernandez", + "gender": "female", + "age": 53, + "address": { + "state": "Virginia", + "city": "Lydia" + } + }, + { + "id": 708, + "name": "Juana Gomez", + "gender": "female", + "age": 69, + "address": { + "state": "Colorado", + "city": "Ahwahnee" + } + }, + { + "id": 709, + "name": "Desiree King", + "gender": "female", + "age": 55, + "address": { + "state": "Texas", + "city": "Golconda" + } + }, + { + "id": 710, + "name": "Delaney Copeland", + "gender": "male", + "age": 34, + "address": { + "state": "Washington", + "city": "Ruffin" + } + }, + { + "id": 711, + "name": "Gabriela Hubbard", + "gender": "female", + "age": 33, + "address": { + "state": "Kentucky", + "city": "Fedora" + } + }, + { + "id": 712, + "name": "Kimberley Fernandez", + "gender": "female", + "age": 39, + "address": { + "state": "Minnesota", + "city": "Axis" + } + }, + { + "id": 713, + "name": "Warner Wong", + "gender": "male", + "age": 57, + "address": { + "state": "Nebraska", + "city": "Chesterfield" + } + }, + { + "id": 714, + "name": "Frances Goodwin", + "gender": "female", + "age": 20, + "address": { + "state": "North Carolina", + "city": "Albany" + } + }, + { + "id": 715, + "name": "Roth Harrell", + "gender": "male", + "age": 27, + "address": { + "state": "Missouri", + "city": "Cawood" + } + }, + { + "id": 716, + "name": "Ester Romero", + "gender": "female", + "age": 18, + "address": { + "state": "Arizona", + "city": "Martell" + } + }, + { + "id": 717, + "name": "Wood Brewer", + "gender": "male", + "age": 38, + "address": { + "state": "Oregon", + "city": "Topanga" + } + }, + { + "id": 718, + "name": "Becky Haley", + "gender": "female", + "age": 71, + "address": { + "state": "Vermont", + "city": "Kohatk" + } + }, + { + "id": 719, + "name": "Cecelia Reilly", + "gender": "female", + "age": 25, + "address": { + "state": "New Hampshire", + "city": "Orason" + } + }, + { + "id": 720, + "name": "Amparo Harris", + "gender": "female", + "age": 24, + "address": { + "state": "Alabama", + "city": "Indio" + } + }, + { + "id": 721, + "name": "Joan Lucas", + "gender": "female", + "age": 80, + "address": { + "state": "Florida", + "city": "Thermal" + } + }, + { + "id": 722, + "name": "Campos Farrell", + "gender": "male", + "age": 27, + "address": { + "state": "Iowa", + "city": "Forestburg" + } + }, + { + "id": 723, + "name": "Mabel Martin", + "gender": "female", + "age": 79, + "address": { + "state": "North Dakota", + "city": "Yardville" + } + }, + { + "id": 724, + "name": "Sheppard Battle", + "gender": "male", + "age": 74, + "address": { + "state": "Hawaii", + "city": "Harold" + } + }, + { + "id": 725, + "name": "Holcomb Chan", + "gender": "male", + "age": 36, + "address": { + "state": "South Dakota", + "city": "Gibsonia" + } + }, + { + "id": 726, + "name": "Madden Wade", + "gender": "male", + "age": 33, + "address": { + "state": "New York", + "city": "Retsof" + } + }, + { + "id": 727, + "name": "Sheree Pennington", + "gender": "female", + "age": 80, + "address": { + "state": "Massachusetts", + "city": "Guilford" + } + }, + { + "id": 728, + "name": "Bright Long", + "gender": "male", + "age": 52, + "address": { + "state": "Indiana", + "city": "Barronett" + } + }, + { + "id": 729, + "name": "Jerry Melton", + "gender": "female", + "age": 29, + "address": { + "state": "Idaho", + "city": "Oberlin" + } + }, + { + "id": 730, + "name": "Kent Lara", + "gender": "male", + "age": 44, + "address": { + "state": "California", + "city": "Germanton" + } + }, + { + "id": 731, + "name": "Randolph Tyson", + "gender": "male", + "age": 30, + "address": { + "state": "Rhode Island", + "city": "Sunbury" + } + }, + { + "id": 732, + "name": "Flores Gilliam", + "gender": "male", + "age": 23, + "address": { + "state": "Oklahoma", + "city": "Steinhatchee" + } + }, + { + "id": 733, + "name": "Hayden Delaney", + "gender": "male", + "age": 40, + "address": { + "state": "Wyoming", + "city": "Johnsonburg" + } + }, + { + "id": 734, + "name": "Nash Deleon", + "gender": "male", + "age": 64, + "address": { + "state": "Maine", + "city": "Wakarusa" + } + }, + { + "id": 735, + "name": "Paul Carpenter", + "gender": "male", + "age": 76, + "address": { + "state": "West Virginia", + "city": "Chicopee" + } + }, + { + "id": 736, + "name": "Kirk Knapp", + "gender": "male", + "age": 22, + "address": { + "state": "Alabama", + "city": "Tibbie" + } + }, + { + "id": 737, + "name": "Courtney Brown", + "gender": "female", + "age": 47, + "address": { + "state": "Pennsylvania", + "city": "Ernstville" + } + }, + { + "id": 738, + "name": "Merle Hickman", + "gender": "female", + "age": 73, + "address": { + "state": "Maine", + "city": "Eagleville" + } + }, + { + "id": 739, + "name": "Evangelina Maldonado", + "gender": "female", + "age": 79, + "address": { + "state": "Vermont", + "city": "Kilbourne" + } + }, + { + "id": 740, + "name": "Avery Cardenas", + "gender": "male", + "age": 17, + "address": { + "state": "South Carolina", + "city": "Strykersville" + } + }, + { + "id": 741, + "name": "Robertson Page", + "gender": "male", + "age": 52, + "address": { + "state": "Kentucky", + "city": "Chase" + } + }, + { + "id": 742, + "name": "Pollard Brennan", + "gender": "male", + "age": 34, + "address": { + "state": "Montana", + "city": "Ruffin" + } + }, + { + "id": 743, + "name": "Shana Blackburn", + "gender": "female", + "age": 76, + "address": { + "state": "Maryland", + "city": "Coral" + } + }, + { + "id": 744, + "name": "Althea Carney", + "gender": "female", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Chilton" + } + }, + { + "id": 745, + "name": "Whitley Tyler", + "gender": "male", + "age": 28, + "address": { + "state": "Delaware", + "city": "Wiscon" + } + }, + { + "id": 746, + "name": "Clark Wilkinson", + "gender": "male", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Marbury" + } + }, + { + "id": 747, + "name": "Hester Hardy", + "gender": "female", + "age": 28, + "address": { + "state": "Oklahoma", + "city": "Herald" + } + }, + { + "id": 748, + "name": "Rose Hogan", + "gender": "female", + "age": 62, + "address": { + "state": "Illinois", + "city": "Herlong" + } + }, + { + "id": 749, + "name": "Sadie Larson", + "gender": "female", + "age": 59, + "address": { + "state": "Georgia", + "city": "Tedrow" + } + }, + { + "id": 750, + "name": "Whitney Valdez", + "gender": "female", + "age": 18, + "address": { + "state": "Colorado", + "city": "Bradenville" + } + }, + { + "id": 751, + "name": "Christy Calhoun", + "gender": "female", + "age": 52, + "address": { + "state": "Ohio", + "city": "Hartsville/Hartley" + } + }, + { + "id": 752, + "name": "Warren Hopkins", + "gender": "male", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Lisco" + } + }, + { + "id": 753, + "name": "Manuela Ball", + "gender": "female", + "age": 81, + "address": { + "state": "Utah", + "city": "Adelino" + } + }, + { + "id": 754, + "name": "Dale Rosales", + "gender": "female", + "age": 72, + "address": { + "state": "New Hampshire", + "city": "Charco" + } + }, + { + "id": 755, + "name": "Melody Mcbride", + "gender": "female", + "age": 24, + "address": { + "state": "Michigan", + "city": "Williams" + } + }, + { + "id": 756, + "name": "Alba English", + "gender": "female", + "age": 60, + "address": { + "state": "New Mexico", + "city": "Trinway" + } + }, + { + "id": 757, + "name": "Sharpe Rush", + "gender": "male", + "age": 49, + "address": { + "state": "North Carolina", + "city": "Fedora" + } + }, + { + "id": 758, + "name": "Candice Leach", + "gender": "female", + "age": 71, + "address": { + "state": "Missouri", + "city": "Monument" + } + }, + { + "id": 759, + "name": "Hollie Woods", + "gender": "female", + "age": 52, + "address": { + "state": "Wisconsin", + "city": "Allendale" + } + }, + { + "id": 760, + "name": "Gray Ashley", + "gender": "male", + "age": 34, + "address": { + "state": "Alaska", + "city": "Worcester" + } + }, + { + "id": 761, + "name": "Kline Bartlett", + "gender": "male", + "age": 75, + "address": { + "state": "Iowa", + "city": "Beaulieu" + } + }, + { + "id": 762, + "name": "Cooke Mcclain", + "gender": "male", + "age": 45, + "address": { + "state": "Wyoming", + "city": "Brandywine" + } + }, + { + "id": 763, + "name": "Erica Stevenson", + "gender": "female", + "age": 43, + "address": { + "state": "Virginia", + "city": "Cliff" + } + }, + { + "id": 764, + "name": "Ophelia Richard", + "gender": "female", + "age": 31, + "address": { + "state": "New Jersey", + "city": "Nutrioso" + } + }, + { + "id": 765, + "name": "Hester Bonner", + "gender": "male", + "age": 28, + "address": { + "state": "Arkansas", + "city": "Churchill" + } + }, + { + "id": 766, + "name": "Richardson Mullen", + "gender": "male", + "age": 25, + "address": { + "state": "Nevada", + "city": "Elfrida" + } + }, + { + "id": 767, + "name": "Gayle Richmond", + "gender": "female", + "age": 78, + "address": { + "state": "Minnesota", + "city": "Valmy" + } + }, + { + "id": 768, + "name": "Claudine Burgess", + "gender": "female", + "age": 74, + "address": { + "state": "Tennessee", + "city": "Suitland" + } + }, + { + "id": 769, + "name": "Mavis Watson", + "gender": "female", + "age": 32, + "address": { + "state": "Connecticut", + "city": "Downsville" + } + }, + { + "id": 770, + "name": "Bowers Buchanan", + "gender": "male", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Bloomington" + } + }, + { + "id": 771, + "name": "Leah Ramsey", + "gender": "female", + "age": 82, + "address": { + "state": "Arizona", + "city": "Catherine" + } + }, + { + "id": 772, + "name": "Lenora Mcdaniel", + "gender": "female", + "age": 53, + "address": { + "state": "Kansas", + "city": "Cutter" + } + }, + { + "id": 773, + "name": "Burks Cole", + "gender": "male", + "age": 58, + "address": { + "state": "Massachusetts", + "city": "Hatteras" + } + }, + { + "id": 774, + "name": "Parrish Grimes", + "gender": "male", + "age": 28, + "address": { + "state": "Florida", + "city": "Oberlin" + } + }, + { + "id": 775, + "name": "Ramos Martinez", + "gender": "male", + "age": 32, + "address": { + "state": "Oregon", + "city": "Greensburg" + } + }, + { + "id": 776, + "name": "Stanton Jarvis", + "gender": "male", + "age": 18, + "address": { + "state": "California", + "city": "Wollochet" + } + }, + { + "id": 777, + "name": "Kaye Mosley", + "gender": "female", + "age": 71, + "address": { + "state": "Idaho", + "city": "Ferney" + } + }, + { + "id": 778, + "name": "Carlene Pugh", + "gender": "female", + "age": 43, + "address": { + "state": "New York", + "city": "Leola" + } + }, + { + "id": 779, + "name": "Malinda Webb", + "gender": "female", + "age": 21, + "address": { + "state": "Washington", + "city": "Wawona" + } + }, + { + "id": 780, + "name": "Lillian Short", + "gender": "female", + "age": 68, + "address": { + "state": "South Dakota", + "city": "Allentown" + } + }, + { + "id": 781, + "name": "Jordan Donaldson", + "gender": "male", + "age": 56, + "address": { + "state": "North Dakota", + "city": "Grill" + } + }, + { + "id": 782, + "name": "Aimee Turner", + "gender": "female", + "age": 67, + "address": { + "state": "Texas", + "city": "Fairlee" + } + }, + { + "id": 783, + "name": "Marci Robbins", + "gender": "female", + "age": 23, + "address": { + "state": "Indiana", + "city": "Blanco" + } + }, + { + "id": 784, + "name": "Gomez Hoover", + "gender": "male", + "age": 80, + "address": { + "state": "New Hampshire", + "city": "Gratton" + } + }, + { + "id": 785, + "name": "Osborn Long", + "gender": "male", + "age": 27, + "address": { + "state": "Georgia", + "city": "Chalfant" + } + }, + { + "id": 786, + "name": "Donaldson Day", + "gender": "male", + "age": 64, + "address": { + "state": "Montana", + "city": "Williamson" + } + }, + { + "id": 787, + "name": "Noreen Mcdaniel", + "gender": "female", + "age": 61, + "address": { + "state": "Indiana", + "city": "Gasquet" + } + }, + { + "id": 788, + "name": "Rose Woodward", + "gender": "female", + "age": 76, + "address": { + "state": "Oklahoma", + "city": "Tivoli" + } + }, + { + "id": 789, + "name": "Lewis Hooper", + "gender": "male", + "age": 56, + "address": { + "state": "Ohio", + "city": "Brantleyville" + } + }, + { + "id": 790, + "name": "Kathrine Simon", + "gender": "female", + "age": 64, + "address": { + "state": "Missouri", + "city": "Salvo" + } + }, + { + "id": 791, + "name": "Maggie Albert", + "gender": "female", + "age": 59, + "address": { + "state": "Delaware", + "city": "Kylertown" + } + }, + { + "id": 792, + "name": "Joanna Sears", + "gender": "female", + "age": 32, + "address": { + "state": "Washington", + "city": "Kirk" + } + }, + { + "id": 793, + "name": "Dora Holman", + "gender": "female", + "age": 22, + "address": { + "state": "Kentucky", + "city": "Bartonsville" + } + }, + { + "id": 794, + "name": "Lynch Cline", + "gender": "male", + "age": 38, + "address": { + "state": "Mississippi", + "city": "Balm" + } + }, + { + "id": 795, + "name": "Dale Mitchell", + "gender": "male", + "age": 64, + "address": { + "state": "Alaska", + "city": "Maybell" + } + }, + { + "id": 796, + "name": "Lizzie Juarez", + "gender": "female", + "age": 29, + "address": { + "state": "Oregon", + "city": "Snowville" + } + }, + { + "id": 797, + "name": "Fernandez Briggs", + "gender": "male", + "age": 69, + "address": { + "state": "Wisconsin", + "city": "Yardville" + } + }, + { + "id": 798, + "name": "Beatrice Macias", + "gender": "female", + "age": 35, + "address": { + "state": "Nevada", + "city": "Norwood" + } + }, + { + "id": 799, + "name": "Small Sharp", + "gender": "male", + "age": 50, + "address": { + "state": "Kansas", + "city": "Crucible" + } + }, + { + "id": 800, + "name": "Rosemary Ryan", + "gender": "female", + "age": 60, + "address": { + "state": "Hawaii", + "city": "Crawfordsville" + } + }, + { + "id": 801, + "name": "Sellers Bradford", + "gender": "male", + "age": 48, + "address": { + "state": "North Carolina", + "city": "Alfarata" + } + }, + { + "id": 802, + "name": "Collier Barron", + "gender": "male", + "age": 62, + "address": { + "state": "Tennessee", + "city": "Noblestown" + } + }, + { + "id": 803, + "name": "Baldwin Dominguez", + "gender": "male", + "age": 42, + "address": { + "state": "North Dakota", + "city": "Epworth" + } + }, + { + "id": 804, + "name": "Debora Mcbride", + "gender": "female", + "age": 21, + "address": { + "state": "Iowa", + "city": "Campo" + } + }, + { + "id": 805, + "name": "Sexton Farmer", + "gender": "male", + "age": 29, + "address": { + "state": "Louisiana", + "city": "Herald" + } + }, + { + "id": 806, + "name": "Gail Lynn", + "gender": "female", + "age": 29, + "address": { + "state": "West Virginia", + "city": "Herbster" + } + }, + { + "id": 807, + "name": "Pollard Foley", + "gender": "male", + "age": 26, + "address": { + "state": "Arizona", + "city": "Hackneyville" + } + }, + { + "id": 808, + "name": "Georgette Kline", + "gender": "female", + "age": 35, + "address": { + "state": "Nebraska", + "city": "Eden" + } + }, + { + "id": 809, + "name": "Imelda Lucas", + "gender": "female", + "age": 32, + "address": { + "state": "Texas", + "city": "Ilchester" + } + }, + { + "id": 810, + "name": "Jackson Michael", + "gender": "male", + "age": 33, + "address": { + "state": "Michigan", + "city": "Axis" + } + }, + { + "id": 811, + "name": "Stark Fernandez", + "gender": "male", + "age": 22, + "address": { + "state": "Utah", + "city": "Sugartown" + } + }, + { + "id": 812, + "name": "Marylou Townsend", + "gender": "female", + "age": 36, + "address": { + "state": "Arkansas", + "city": "Delwood" + } + }, + { + "id": 813, + "name": "Avis Mathews", + "gender": "female", + "age": 39, + "address": { + "state": "Maine", + "city": "Clarktown" + } + }, + { + "id": 814, + "name": "Faye Hall", + "gender": "female", + "age": 69, + "address": { + "state": "California", + "city": "Yonah" + } + }, + { + "id": 815, + "name": "Brigitte Stephens", + "gender": "female", + "age": 32, + "address": { + "state": "Vermont", + "city": "Brogan" + } + }, + { + "id": 816, + "name": "Lena Odom", + "gender": "female", + "age": 62, + "address": { + "state": "Rhode Island", + "city": "Wawona" + } + }, + { + "id": 817, + "name": "Noel Burke", + "gender": "male", + "age": 55, + "address": { + "state": "Connecticut", + "city": "Steinhatchee" + } + }, + { + "id": 818, + "name": "Norman Bradley", + "gender": "male", + "age": 52, + "address": { + "state": "New Mexico", + "city": "Noxen" + } + }, + { + "id": 819, + "name": "Marva Rivera", + "gender": "female", + "age": 68, + "address": { + "state": "Pennsylvania", + "city": "Clarksburg" + } + }, + { + "id": 820, + "name": "Lawrence Allen", + "gender": "male", + "age": 82, + "address": { + "state": "Massachusetts", + "city": "Cornfields" + } + }, + { + "id": 821, + "name": "Singleton Huff", + "gender": "male", + "age": 35, + "address": { + "state": "Virginia", + "city": "Morgandale" + } + }, + { + "id": 822, + "name": "Teresa Merrill", + "gender": "female", + "age": 42, + "address": { + "state": "New Jersey", + "city": "Waterview" + } + }, + { + "id": 823, + "name": "Berry Frank", + "gender": "male", + "age": 82, + "address": { + "state": "Alabama", + "city": "Rivers" + } + }, + { + "id": 824, + "name": "Alisha Cobb", + "gender": "female", + "age": 31, + "address": { + "state": "Colorado", + "city": "Odessa" + } + }, + { + "id": 825, + "name": "Clara Mccarty", + "gender": "female", + "age": 49, + "address": { + "state": "Idaho", + "city": "Alden" + } + }, + { + "id": 826, + "name": "Golden Barton", + "gender": "male", + "age": 40, + "address": { + "state": "South Dakota", + "city": "Hickory" + } + }, + { + "id": 827, + "name": "Leanna Glover", + "gender": "female", + "age": 26, + "address": { + "state": "Florida", + "city": "Rodman" + } + }, + { + "id": 828, + "name": "Drake Houston", + "gender": "male", + "age": 40, + "address": { + "state": "Minnesota", + "city": "Hoehne" + } + }, + { + "id": 829, + "name": "Woodard Valencia", + "gender": "male", + "age": 31, + "address": { + "state": "Maryland", + "city": "Hayden" + } + }, + { + "id": 830, + "name": "Jaclyn Jackson", + "gender": "female", + "age": 29, + "address": { + "state": "Illinois", + "city": "Farmers" + } + }, + { + "id": 831, + "name": "Erin Noel", + "gender": "female", + "age": 74, + "address": { + "state": "South Carolina", + "city": "Bergoo" + } + }, + { + "id": 832, + "name": "Anna Stein", + "gender": "female", + "age": 76, + "address": { + "state": "New York", + "city": "Biehle" + } + }, + { + "id": 833, + "name": "Daphne Hartman", + "gender": "female", + "age": 61, + "address": { + "state": "Alabama", + "city": "Tilden" + } + }, + { + "id": 834, + "name": "Tiffany Moore", + "gender": "female", + "age": 64, + "address": { + "state": "Utah", + "city": "Enoree" + } + }, + { + "id": 835, + "name": "May Rasmussen", + "gender": "female", + "age": 43, + "address": { + "state": "Connecticut", + "city": "Sultana" + } + }, + { + "id": 836, + "name": "Iris Delacruz", + "gender": "female", + "age": 23, + "address": { + "state": "Virginia", + "city": "Beechmont" + } + }, + { + "id": 837, + "name": "Luella Ward", + "gender": "female", + "age": 21, + "address": { + "state": "Missouri", + "city": "Madrid" + } + }, + { + "id": 838, + "name": "Riggs Sosa", + "gender": "male", + "age": 39, + "address": { + "state": "Oklahoma", + "city": "Harviell" + } + }, + { + "id": 839, + "name": "Kramer Brennan", + "gender": "male", + "age": 40, + "address": { + "state": "New York", + "city": "Baker" + } + }, + { + "id": 840, + "name": "Fowler Mays", + "gender": "male", + "age": 72, + "address": { + "state": "Colorado", + "city": "Hatteras" + } + }, + { + "id": 841, + "name": "Ernestine Moody", + "gender": "female", + "age": 63, + "address": { + "state": "Maine", + "city": "Rosine" + } + }, + { + "id": 842, + "name": "Fischer Gibbs", + "gender": "male", + "age": 67, + "address": { + "state": "Illinois", + "city": "Idamay" + } + }, + { + "id": 843, + "name": "Moran Pate", + "gender": "male", + "age": 34, + "address": { + "state": "Nebraska", + "city": "Condon" + } + }, + { + "id": 844, + "name": "Sophie Wilkerson", + "gender": "female", + "age": 21, + "address": { + "state": "Delaware", + "city": "Spelter" + } + }, + { + "id": 845, + "name": "Myrtle Murphy", + "gender": "female", + "age": 65, + "address": { + "state": "New Hampshire", + "city": "Bradenville" + } + }, + { + "id": 846, + "name": "Rosalind Tyler", + "gender": "female", + "age": 19, + "address": { + "state": "Iowa", + "city": "Floris" + } + }, + { + "id": 847, + "name": "Hanson French", + "gender": "male", + "age": 23, + "address": { + "state": "Pennsylvania", + "city": "Warren" + } + }, + { + "id": 848, + "name": "Karin Shepard", + "gender": "female", + "age": 73, + "address": { + "state": "New Jersey", + "city": "Glasgow" + } + }, + { + "id": 849, + "name": "Esther Burke", + "gender": "female", + "age": 39, + "address": { + "state": "Massachusetts", + "city": "Magnolia" + } + }, + { + "id": 850, + "name": "Ronda Copeland", + "gender": "female", + "age": 30, + "address": { + "state": "Idaho", + "city": "Dexter" + } + }, + { + "id": 851, + "name": "Brittney Walsh", + "gender": "female", + "age": 59, + "address": { + "state": "New Mexico", + "city": "Wilmington" + } + }, + { + "id": 852, + "name": "Strickland Lindsey", + "gender": "male", + "age": 49, + "address": { + "state": "Nevada", + "city": "Garberville" + } + }, + { + "id": 853, + "name": "Constance Weaver", + "gender": "female", + "age": 82, + "address": { + "state": "Louisiana", + "city": "Bodega" + } + }, + { + "id": 854, + "name": "Velez Johnston", + "gender": "male", + "age": 63, + "address": { + "state": "Texas", + "city": "Curtice" + } + }, + { + "id": 855, + "name": "Robles Lang", + "gender": "male", + "age": 33, + "address": { + "state": "West Virginia", + "city": "Rodman" + } + }, + { + "id": 856, + "name": "Estes Willis", + "gender": "male", + "age": 43, + "address": { + "state": "North Dakota", + "city": "Southmont" + } + }, + { + "id": 857, + "name": "Boyd Bolton", + "gender": "male", + "age": 72, + "address": { + "state": "Ohio", + "city": "Tyhee" + } + }, + { + "id": 858, + "name": "Rosetta Webster", + "gender": "female", + "age": 54, + "address": { + "state": "Tennessee", + "city": "Gardners" + } + }, + { + "id": 859, + "name": "Rosella Peck", + "gender": "female", + "age": 41, + "address": { + "state": "Arizona", + "city": "Retsof" + } + }, + { + "id": 860, + "name": "Dalton Gilliam", + "gender": "male", + "age": 70, + "address": { + "state": "Rhode Island", + "city": "Ezel" + } + }, + { + "id": 861, + "name": "Lucas Wolf", + "gender": "male", + "age": 24, + "address": { + "state": "Vermont", + "city": "Washington" + } + }, + { + "id": 862, + "name": "Merritt Petty", + "gender": "male", + "age": 29, + "address": { + "state": "Maryland", + "city": "Skyland" + } + }, + { + "id": 863, + "name": "Brewer Koch", + "gender": "male", + "age": 20, + "address": { + "state": "Minnesota", + "city": "Bellfountain" + } + }, + { + "id": 864, + "name": "Lily Winters", + "gender": "female", + "age": 42, + "address": { + "state": "Washington", + "city": "Kula" + } + }, + { + "id": 865, + "name": "Elena Valencia", + "gender": "female", + "age": 60, + "address": { + "state": "South Dakota", + "city": "Hegins" + } + }, + { + "id": 866, + "name": "Solis Mckinney", + "gender": "male", + "age": 29, + "address": { + "state": "Kansas", + "city": "Stagecoach" + } + }, + { + "id": 867, + "name": "Eddie Atkinson", + "gender": "female", + "age": 79, + "address": { + "state": "Florida", + "city": "Canby" + } + }, + { + "id": 868, + "name": "Madelyn Estrada", + "gender": "female", + "age": 17, + "address": { + "state": "Indiana", + "city": "Wells" + } + }, + { + "id": 869, + "name": "Merle Stewart", + "gender": "female", + "age": 18, + "address": { + "state": "Alaska", + "city": "Singer" + } + }, + { + "id": 870, + "name": "Vivian Tyson", + "gender": "female", + "age": 47, + "address": { + "state": "Michigan", + "city": "Abrams" + } + }, + { + "id": 871, + "name": "Allison Booker", + "gender": "female", + "age": 80, + "address": { + "state": "Wisconsin", + "city": "Inkerman" + } + }, + { + "id": 872, + "name": "Tucker Hutchinson", + "gender": "male", + "age": 47, + "address": { + "state": "Arkansas", + "city": "Sisquoc" + } + }, + { + "id": 873, + "name": "Herman Conway", + "gender": "male", + "age": 79, + "address": { + "state": "Georgia", + "city": "Oceola" + } + }, + { + "id": 874, + "name": "Singleton Bauer", + "gender": "male", + "age": 57, + "address": { + "state": "Wyoming", + "city": "Boomer" + } + }, + { + "id": 875, + "name": "Bass James", + "gender": "male", + "age": 81, + "address": { + "state": "Oregon", + "city": "Cornfields" + } + }, + { + "id": 876, + "name": "Hogan Garrett", + "gender": "male", + "age": 21, + "address": { + "state": "Montana", + "city": "Bainbridge" + } + }, + { + "id": 877, + "name": "Marcella Cardenas", + "gender": "female", + "age": 45, + "address": { + "state": "Kentucky", + "city": "Darrtown" + } + }, + { + "id": 878, + "name": "Robyn Wall", + "gender": "female", + "age": 53, + "address": { + "state": "North Carolina", + "city": "Fairacres" + } + }, + { + "id": 879, + "name": "Rosales Meyers", + "gender": "male", + "age": 42, + "address": { + "state": "South Carolina", + "city": "Brady" + } + }, + { + "id": 880, + "name": "Baird Rodgers", + "gender": "male", + "age": 74, + "address": { + "state": "Hawaii", + "city": "Hiseville" + } + }, + { + "id": 881, + "name": "Angelica Chase", + "gender": "female", + "age": 76, + "address": { + "state": "California", + "city": "Siglerville" + } + }, + { + "id": 882, + "name": "Lorrie Rich", + "gender": "female", + "age": 21, + "address": { + "state": "Vermont", + "city": "Riceville" + } + }, + { + "id": 883, + "name": "Cherie Alvarado", + "gender": "female", + "age": 72, + "address": { + "state": "Indiana", + "city": "Groveville" + } + }, + { + "id": 884, + "name": "Kemp Gonzalez", + "gender": "male", + "age": 58, + "address": { + "state": "Arizona", + "city": "Hanover" + } + }, + { + "id": 885, + "name": "Thomas Lawrence", + "gender": "male", + "age": 73, + "address": { + "state": "Mississippi", + "city": "Coldiron" + } + }, + { + "id": 886, + "name": "Leila Barrera", + "gender": "female", + "age": 81, + "address": { + "state": "New Jersey", + "city": "Kansas" + } + }, + { + "id": 887, + "name": "Sandoval Bass", + "gender": "male", + "age": 28, + "address": { + "state": "Idaho", + "city": "Elrama" + } + }, + { + "id": 888, + "name": "Kari Reyes", + "gender": "female", + "age": 45, + "address": { + "state": "Delaware", + "city": "Moraida" + } + }, + { + "id": 889, + "name": "Candace Bush", + "gender": "female", + "age": 64, + "address": { + "state": "New Hampshire", + "city": "Whitmer" + } + }, + { + "id": 890, + "name": "Mona Benson", + "gender": "female", + "age": 57, + "address": { + "state": "South Dakota", + "city": "Silkworth" + } + }, + { + "id": 891, + "name": "Santiago Vincent", + "gender": "male", + "age": 76, + "address": { + "state": "Kentucky", + "city": "Fidelis" + } + }, + { + "id": 892, + "name": "Elvia Richardson", + "gender": "female", + "age": 38, + "address": { + "state": "Alabama", + "city": "Devon" + } + }, + { + "id": 893, + "name": "Meghan King", + "gender": "female", + "age": 45, + "address": { + "state": "Wisconsin", + "city": "Enetai" + } + }, + { + "id": 894, + "name": "Prince Crane", + "gender": "male", + "age": 81, + "address": { + "state": "California", + "city": "Rockingham" + } + }, + { + "id": 895, + "name": "Catherine Lewis", + "gender": "female", + "age": 42, + "address": { + "state": "Michigan", + "city": "Spelter" + } + }, + { + "id": 896, + "name": "Mandy Mckee", + "gender": "female", + "age": 59, + "address": { + "state": "Arkansas", + "city": "Carlos" + } + }, + { + "id": 897, + "name": "Lewis Hale", + "gender": "male", + "age": 45, + "address": { + "state": "Wyoming", + "city": "Zortman" + } + }, + { + "id": 898, + "name": "Willie Doyle", + "gender": "female", + "age": 50, + "address": { + "state": "Kansas", + "city": "Avoca" + } + }, + { + "id": 899, + "name": "Eula Carver", + "gender": "female", + "age": 59, + "address": { + "state": "Oklahoma", + "city": "Cavalero" + } + }, + { + "id": 900, + "name": "Patty Mcclure", + "gender": "female", + "age": 52, + "address": { + "state": "Nebraska", + "city": "Guthrie" + } + }, + { + "id": 901, + "name": "Goodwin Wade", + "gender": "male", + "age": 43, + "address": { + "state": "Virginia", + "city": "Venice" + } + }, + { + "id": 902, + "name": "Allen Cole", + "gender": "male", + "age": 51, + "address": { + "state": "Montana", + "city": "Dodge" + } + }, + { + "id": 903, + "name": "Nancy Bishop", + "gender": "female", + "age": 80, + "address": { + "state": "North Dakota", + "city": "Darlington" + } + }, + { + "id": 904, + "name": "Georgia Acosta", + "gender": "female", + "age": 21, + "address": { + "state": "New Mexico", + "city": "Tilleda" + } + }, + { + "id": 905, + "name": "Maritza Osborn", + "gender": "female", + "age": 78, + "address": { + "state": "Pennsylvania", + "city": "Wedgewood" + } + }, + { + "id": 906, + "name": "Mavis Fulton", + "gender": "female", + "age": 40, + "address": { + "state": "Maryland", + "city": "Rew" + } + }, + { + "id": 907, + "name": "Millie Mcintosh", + "gender": "female", + "age": 32, + "address": { + "state": "Missouri", + "city": "Kenmar" + } + }, + { + "id": 908, + "name": "Audrey Houston", + "gender": "female", + "age": 69, + "address": { + "state": "Florida", + "city": "Hall" + } + }, + { + "id": 909, + "name": "Frederick Vasquez", + "gender": "male", + "age": 48, + "address": { + "state": "Louisiana", + "city": "Wildwood" + } + }, + { + "id": 910, + "name": "Erica Shepard", + "gender": "female", + "age": 75, + "address": { + "state": "Massachusetts", + "city": "Lupton" + } + }, + { + "id": 911, + "name": "Ruby Castaneda", + "gender": "female", + "age": 37, + "address": { + "state": "Oregon", + "city": "Cuylerville" + } + }, + { + "id": 912, + "name": "Snyder Fischer", + "gender": "male", + "age": 62, + "address": { + "state": "Colorado", + "city": "Hasty" + } + }, + { + "id": 913, + "name": "Rose Sweet", + "gender": "female", + "age": 71, + "address": { + "state": "North Carolina", + "city": "Crenshaw" + } + }, + { + "id": 914, + "name": "Walker Benton", + "gender": "male", + "age": 45, + "address": { + "state": "Nevada", + "city": "Deercroft" + } + }, + { + "id": 915, + "name": "Bianca Jacobs", + "gender": "female", + "age": 28, + "address": { + "state": "Connecticut", + "city": "Kanauga" + } + }, + { + "id": 916, + "name": "Bridgett Hamilton", + "gender": "female", + "age": 21, + "address": { + "state": "Rhode Island", + "city": "Caron" + } + }, + { + "id": 917, + "name": "Edwards Goodman", + "gender": "male", + "age": 78, + "address": { + "state": "Minnesota", + "city": "Edneyville" + } + }, + { + "id": 918, + "name": "Perkins Black", + "gender": "male", + "age": 33, + "address": { + "state": "Alaska", + "city": "Tilden" + } + }, + { + "id": 919, + "name": "Hickman Hickman", + "gender": "male", + "age": 76, + "address": { + "state": "Maine", + "city": "Chilton" + } + }, + { + "id": 920, + "name": "Lakisha Valencia", + "gender": "female", + "age": 61, + "address": { + "state": "South Carolina", + "city": "Rockbridge" + } + }, + { + "id": 921, + "name": "Schneider Wilkinson", + "gender": "male", + "age": 60, + "address": { + "state": "Georgia", + "city": "Glenbrook" + } + }, + { + "id": 922, + "name": "Marjorie Hoffman", + "gender": "female", + "age": 70, + "address": { + "state": "Ohio", + "city": "Conestoga" + } + }, + { + "id": 923, + "name": "Madge Hunt", + "gender": "female", + "age": 33, + "address": { + "state": "Texas", + "city": "Marbury" + } + }, + { + "id": 924, + "name": "Joyce Gordon", + "gender": "male", + "age": 24, + "address": { + "state": "Washington", + "city": "Ellerslie" + } + }, + { + "id": 925, + "name": "Rena Lott", + "gender": "female", + "age": 46, + "address": { + "state": "West Virginia", + "city": "Greenwich" + } + }, + { + "id": 926, + "name": "Mathis Hicks", + "gender": "male", + "age": 66, + "address": { + "state": "New York", + "city": "Grandview" + } + }, + { + "id": 927, + "name": "Yvonne Torres", + "gender": "female", + "age": 42, + "address": { + "state": "Tennessee", + "city": "Bergoo" + } + }, + { + "id": 928, + "name": "Manning Kidd", + "gender": "male", + "age": 72, + "address": { + "state": "Iowa", + "city": "Marne" + } + }, + { + "id": 929, + "name": "Freda Marsh", + "gender": "female", + "age": 45, + "address": { + "state": "Illinois", + "city": "Belmont" + } + }, + { + "id": 930, + "name": "Teresa Guzman", + "gender": "female", + "age": 67, + "address": { + "state": "Hawaii", + "city": "Jacksonburg" + } + }, + { + "id": 931, + "name": "Stanley Nieves", + "gender": "male", + "age": 40, + "address": { + "state": "Connecticut", + "city": "Worton" + } + }, + { + "id": 932, + "name": "Dora Copeland", + "gender": "female", + "age": 63, + "address": { + "state": "Ohio", + "city": "Hickory" + } + }, + { + "id": 933, + "name": "Lessie Rice", + "gender": "female", + "age": 50, + "address": { + "state": "Indiana", + "city": "Benson" + } + }, + { + "id": 934, + "name": "Stephanie Taylor", + "gender": "female", + "age": 55, + "address": { + "state": "Colorado", + "city": "Talpa" + } + }, + { + "id": 935, + "name": "Bowman Howard", + "gender": "male", + "age": 24, + "address": { + "state": "Iowa", + "city": "Norris" + } + }, + { + "id": 936, + "name": "Cherie Reid", + "gender": "female", + "age": 35, + "address": { + "state": "Arizona", + "city": "Keyport" + } + }, + { + "id": 937, + "name": "Maude Wallace", + "gender": "female", + "age": 60, + "address": { + "state": "Texas", + "city": "Cashtown" + } + }, + { + "id": 938, + "name": "Yesenia Shaffer", + "gender": "female", + "age": 53, + "address": { + "state": "Montana", + "city": "Valle" + } + }, + { + "id": 939, + "name": "Battle Boyle", + "gender": "male", + "age": 29, + "address": { + "state": "Oregon", + "city": "Chautauqua" + } + }, + { + "id": 940, + "name": "Sharron Greene", + "gender": "female", + "age": 29, + "address": { + "state": "Maryland", + "city": "Herbster" + } + }, + { + "id": 941, + "name": "Estrada Hull", + "gender": "male", + "age": 47, + "address": { + "state": "Nebraska", + "city": "Clara" + } + }, + { + "id": 942, + "name": "Grace Cervantes", + "gender": "female", + "age": 78, + "address": { + "state": "Arkansas", + "city": "Coalmont" + } + }, + { + "id": 943, + "name": "Velazquez Lucas", + "gender": "male", + "age": 57, + "address": { + "state": "New Jersey", + "city": "Mulberry" + } + }, + { + "id": 944, + "name": "Porter Rowland", + "gender": "male", + "age": 75, + "address": { + "state": "Wisconsin", + "city": "Wikieup" + } + }, + { + "id": 945, + "name": "Fulton Jacobson", + "gender": "male", + "age": 57, + "address": { + "state": "Kansas", + "city": "Forbestown" + } + }, + { + "id": 946, + "name": "Gina Sanders", + "gender": "female", + "age": 17, + "address": { + "state": "Michigan", + "city": "Gratton" + } + }, + { + "id": 947, + "name": "Horton Cox", + "gender": "male", + "age": 57, + "address": { + "state": "West Virginia", + "city": "Concho" + } + }, + { + "id": 948, + "name": "Brittany Harding", + "gender": "female", + "age": 72, + "address": { + "state": "North Dakota", + "city": "Reinerton" + } + }, + { + "id": 949, + "name": "Jayne Castillo", + "gender": "female", + "age": 35, + "address": { + "state": "Alabama", + "city": "Rockbridge" + } + }, + { + "id": 950, + "name": "Collins West", + "gender": "male", + "age": 49, + "address": { + "state": "North Carolina", + "city": "Walland" + } + }, + { + "id": 951, + "name": "Krista Waters", + "gender": "female", + "age": 71, + "address": { + "state": "Maine", + "city": "Vallonia" + } + }, + { + "id": 952, + "name": "Boyle Sargent", + "gender": "male", + "age": 82, + "address": { + "state": "Mississippi", + "city": "Wakarusa" + } + }, + { + "id": 953, + "name": "Sabrina Clayton", + "gender": "female", + "age": 41, + "address": { + "state": "Rhode Island", + "city": "Klondike" + } + }, + { + "id": 954, + "name": "Beulah Cameron", + "gender": "female", + "age": 78, + "address": { + "state": "Tennessee", + "city": "Graball" + } + }, + { + "id": 955, + "name": "Lynda Solis", + "gender": "female", + "age": 76, + "address": { + "state": "Vermont", + "city": "Matthews" + } + }, + { + "id": 956, + "name": "Marta Owen", + "gender": "female", + "age": 62, + "address": { + "state": "Massachusetts", + "city": "Garberville" + } + }, + { + "id": 957, + "name": "Duffy Lawrence", + "gender": "male", + "age": 28, + "address": { + "state": "New York", + "city": "Gulf" + } + }, + { + "id": 958, + "name": "Turner Schmidt", + "gender": "male", + "age": 71, + "address": { + "state": "Oklahoma", + "city": "Mahtowa" + } + }, + { + "id": 959, + "name": "Lynch Foreman", + "gender": "male", + "age": 73, + "address": { + "state": "Kentucky", + "city": "Callaghan" + } + }, + { + "id": 960, + "name": "Hendricks Kidd", + "gender": "male", + "age": 43, + "address": { + "state": "Idaho", + "city": "Virgie" + } + }, + { + "id": 961, + "name": "Gomez Lara", + "gender": "male", + "age": 42, + "address": { + "state": "Nevada", + "city": "Idamay" + } + }, + { + "id": 962, + "name": "Alexandra Church", + "gender": "female", + "age": 54, + "address": { + "state": "Georgia", + "city": "Hatteras" + } + }, + { + "id": 963, + "name": "Day Bass", + "gender": "male", + "age": 46, + "address": { + "state": "California", + "city": "Caspar" + } + }, + { + "id": 964, + "name": "Marisa Montoya", + "gender": "female", + "age": 81, + "address": { + "state": "New Mexico", + "city": "Robbins" + } + }, + { + "id": 965, + "name": "Beasley Rosa", + "gender": "male", + "age": 41, + "address": { + "state": "Wyoming", + "city": "Farmington" + } + }, + { + "id": 966, + "name": "Acevedo Strickland", + "gender": "male", + "age": 62, + "address": { + "state": "South Carolina", + "city": "Gardiner" + } + }, + { + "id": 967, + "name": "Ochoa Gamble", + "gender": "male", + "age": 48, + "address": { + "state": "Alaska", + "city": "Catharine" + } + }, + { + "id": 968, + "name": "Dalton Rush", + "gender": "male", + "age": 32, + "address": { + "state": "South Dakota", + "city": "Mappsville" + } + }, + { + "id": 969, + "name": "Patrica Spears", + "gender": "female", + "age": 70, + "address": { + "state": "New Hampshire", + "city": "Bagtown" + } + }, + { + "id": 970, + "name": "Sherrie Ellis", + "gender": "female", + "age": 73, + "address": { + "state": "Illinois", + "city": "Belgreen" + } + }, + { + "id": 971, + "name": "Franks Brady", + "gender": "male", + "age": 25, + "address": { + "state": "Utah", + "city": "Ripley" + } + }, + { + "id": 972, + "name": "Rita Wise", + "gender": "female", + "age": 52, + "address": { + "state": "Minnesota", + "city": "Tedrow" + } + }, + { + "id": 973, + "name": "Theresa Harrell", + "gender": "female", + "age": 34, + "address": { + "state": "Washington", + "city": "Morriston" + } + }, + { + "id": 974, + "name": "Savage Chambers", + "gender": "male", + "age": 64, + "address": { + "state": "Hawaii", + "city": "Roeville" + } + }, + { + "id": 975, + "name": "Eliza Miranda", + "gender": "female", + "age": 26, + "address": { + "state": "Delaware", + "city": "Maybell" + } + }, + { + "id": 976, + "name": "Pugh Mcintosh", + "gender": "male", + "age": 20, + "address": { + "state": "Virginia", + "city": "Kimmell" + } + }, + { + "id": 977, + "name": "Stacey Roach", + "gender": "female", + "age": 21, + "address": { + "state": "Pennsylvania", + "city": "Draper" + } + }, + { + "id": 978, + "name": "Rosanna Herman", + "gender": "female", + "age": 72, + "address": { + "state": "Missouri", + "city": "Fairmount" + } + }, + { + "id": 979, + "name": "Enid Snow", + "gender": "female", + "age": 49, + "address": { + "state": "Louisiana", + "city": "Wilmington" + } + }, + { + "id": 980, + "name": "Aurelia Lloyd", + "gender": "female", + "age": 60, + "address": { + "state": "New York", + "city": "Gordon" + } + }, + { + "id": 981, + "name": "Mcfadden Puckett", + "gender": "male", + "age": 51, + "address": { + "state": "West Virginia", + "city": "Tilleda" + } + }, + { + "id": 982, + "name": "Snider Hall", + "gender": "male", + "age": 58, + "address": { + "state": "Illinois", + "city": "Romeville" + } + }, + { + "id": 983, + "name": "Hansen Hunt", + "gender": "male", + "age": 38, + "address": { + "state": "New Hampshire", + "city": "Lorraine" + } + }, + { + "id": 984, + "name": "Hebert Dyer", + "gender": "male", + "age": 80, + "address": { + "state": "Delaware", + "city": "Wanship" + } + }, + { + "id": 985, + "name": "Bowen Barron", + "gender": "male", + "age": 67, + "address": { + "state": "Oklahoma", + "city": "Tolu" + } + }, + { + "id": 986, + "name": "Holly Porter", + "gender": "female", + "age": 39, + "address": { + "state": "Iowa", + "city": "Munjor" + } + }, + { + "id": 987, + "name": "Sanford Hayden", + "gender": "male", + "age": 79, + "address": { + "state": "Missouri", + "city": "Kilbourne" + } + }, + { + "id": 988, + "name": "Byers Perez", + "gender": "male", + "age": 66, + "address": { + "state": "Louisiana", + "city": "Chicopee" + } + }, + { + "id": 989, + "name": "Valerie Reilly", + "gender": "female", + "age": 39, + "address": { + "state": "Montana", + "city": "Worcester" + } + }, + { + "id": 990, + "name": "Renee Barnes", + "gender": "female", + "age": 46, + "address": { + "state": "Idaho", + "city": "Brantleyville" + } + }, + { + "id": 991, + "name": "Deanne Rios", + "gender": "female", + "age": 54, + "address": { + "state": "Ohio", + "city": "Cumminsville" + } + }, + { + "id": 992, + "name": "Alfreda Adkins", + "gender": "female", + "age": 81, + "address": { + "state": "Alabama", + "city": "Gilgo" + } + }, + { + "id": 993, + "name": "Bradford Cline", + "gender": "male", + "age": 20, + "address": { + "state": "South Dakota", + "city": "Juarez" + } + }, + { + "id": 994, + "name": "Sharpe Grant", + "gender": "male", + "age": 38, + "address": { + "state": "Maryland", + "city": "Santel" + } + }, + { + "id": 995, + "name": "Amelia Carpenter", + "gender": "female", + "age": 17, + "address": { + "state": "Minnesota", + "city": "Advance" + } + }, + { + "id": 996, + "name": "Fox Ayers", + "gender": "male", + "age": 71, + "address": { + "state": "Arizona", + "city": "Enlow" + } + }, + { + "id": 997, + "name": "Kerry Raymond", + "gender": "female", + "age": 34, + "address": { + "state": "Nevada", + "city": "Fredericktown" + } + }, + { + "id": 998, + "name": "Valentine Roman", + "gender": "male", + "age": 59, + "address": { + "state": "New Mexico", + "city": "Terlingua" + } + }, + { + "id": 999, + "name": "Macias Collier", + "gender": "male", + "age": 30, + "address": { + "state": "North Carolina", + "city": "Shepardsville" + } + }, + { + "id": 1000, + "name": "Delia Gaines", + "gender": "female", + "age": 82, + "address": { + "state": "Florida", + "city": "Malott" + } + }, + { + "id": 1001, + "name": "Julie Ware", + "gender": "female", + "age": 27, + "address": { + "state": "Washington", + "city": "Trail" + } + }, + { + "id": 1002, + "name": "Newman Ross", + "gender": "male", + "age": 70, + "address": { + "state": "Mississippi", + "city": "Curtice" + } + }, + { + "id": 1003, + "name": "Nona Kirkland", + "gender": "female", + "age": 48, + "address": { + "state": "Massachusetts", + "city": "Innsbrook" + } + }, + { + "id": 1004, + "name": "Vicky Dickerson", + "gender": "female", + "age": 48, + "address": { + "state": "Rhode Island", + "city": "Roderfield" + } + }, + { + "id": 1005, + "name": "Kaitlin Sharpe", + "gender": "female", + "age": 81, + "address": { + "state": "Indiana", + "city": "Efland" + } + }, + { + "id": 1006, + "name": "Figueroa George", + "gender": "male", + "age": 24, + "address": { + "state": "New Jersey", + "city": "Noxen" + } + }, + { + "id": 1007, + "name": "Bullock Dunlap", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Hickory" + } + }, + { + "id": 1008, + "name": "Everett Washington", + "gender": "male", + "age": 64, + "address": { + "state": "Pennsylvania", + "city": "Freelandville" + } + }, + { + "id": 1009, + "name": "Tamra Allen", + "gender": "female", + "age": 44, + "address": { + "state": "Nebraska", + "city": "Jenkinsville" + } + }, + { + "id": 1010, + "name": "Gretchen Solis", + "gender": "female", + "age": 44, + "address": { + "state": "Wyoming", + "city": "Cochranville" + } + }, + { + "id": 1011, + "name": "Sherri Craft", + "gender": "female", + "age": 52, + "address": { + "state": "California", + "city": "Dexter" + } + }, + { + "id": 1012, + "name": "Kendra Durham", + "gender": "female", + "age": 26, + "address": { + "state": "Hawaii", + "city": "Winston" + } + }, + { + "id": 1013, + "name": "Nunez Holcomb", + "gender": "male", + "age": 21, + "address": { + "state": "South Carolina", + "city": "Glasgow" + } + }, + { + "id": 1014, + "name": "Eileen Park", + "gender": "female", + "age": 48, + "address": { + "state": "Kentucky", + "city": "Cliff" + } + }, + { + "id": 1015, + "name": "Katheryn Duncan", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Dellview" + } + }, + { + "id": 1016, + "name": "Becky Church", + "gender": "female", + "age": 62, + "address": { + "state": "Connecticut", + "city": "Aberdeen" + } + }, + { + "id": 1017, + "name": "David Fletcher", + "gender": "male", + "age": 51, + "address": { + "state": "North Dakota", + "city": "Coyote" + } + }, + { + "id": 1018, + "name": "Rowland Rogers", + "gender": "male", + "age": 57, + "address": { + "state": "Kansas", + "city": "Montura" + } + }, + { + "id": 1019, + "name": "Crystal Kane", + "gender": "female", + "age": 52, + "address": { + "state": "Virginia", + "city": "Rosedale" + } + }, + { + "id": 1020, + "name": "Rodriquez Mercer", + "gender": "male", + "age": 51, + "address": { + "state": "Tennessee", + "city": "Brambleton" + } + }, + { + "id": 1021, + "name": "Laverne Larson", + "gender": "female", + "age": 36, + "address": { + "state": "Wisconsin", + "city": "Roberts" + } + }, + { + "id": 1022, + "name": "Oliver Lowery", + "gender": "male", + "age": 70, + "address": { + "state": "Colorado", + "city": "Tedrow" + } + }, + { + "id": 1023, + "name": "Herring Newton", + "gender": "male", + "age": 25, + "address": { + "state": "Oregon", + "city": "Frank" + } + }, + { + "id": 1024, + "name": "Cross Whitney", + "gender": "male", + "age": 73, + "address": { + "state": "Alaska", + "city": "Inkerman" + } + }, + { + "id": 1025, + "name": "Mcneil Barber", + "gender": "male", + "age": 45, + "address": { + "state": "Texas", + "city": "Colton" + } + }, + { + "id": 1026, + "name": "Barbra Morton", + "gender": "female", + "age": 31, + "address": { + "state": "Arkansas", + "city": "Holcombe" + } + }, + { + "id": 1027, + "name": "Jasmine Lee", + "gender": "female", + "age": 28, + "address": { + "state": "Vermont", + "city": "Broadlands" + } + }, + { + "id": 1028, + "name": "Cooke Key", + "gender": "male", + "age": 64, + "address": { + "state": "Maine", + "city": "Sunbury" + } + }, + { + "id": 1029, + "name": "Holcomb Tate", + "gender": "male", + "age": 48, + "address": { + "state": "Vermont", + "city": "Sussex" + } + }, + { + "id": 1030, + "name": "Saundra Richards", + "gender": "female", + "age": 49, + "address": { + "state": "Tennessee", + "city": "Zarephath" + } + }, + { + "id": 1031, + "name": "Tania Snyder", + "gender": "female", + "age": 36, + "address": { + "state": "Maryland", + "city": "Avalon" + } + }, + { + "id": 1032, + "name": "Dalton Tate", + "gender": "male", + "age": 32, + "address": { + "state": "Delaware", + "city": "Greenock" + } + }, + { + "id": 1033, + "name": "Holcomb Castillo", + "gender": "male", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Leyner" + } + }, + { + "id": 1034, + "name": "Figueroa Santiago", + "gender": "male", + "age": 32, + "address": { + "state": "Massachusetts", + "city": "Leroy" + } + }, + { + "id": 1035, + "name": "Steele Copeland", + "gender": "male", + "age": 43, + "address": { + "state": "Montana", + "city": "Dargan" + } + }, + { + "id": 1036, + "name": "Eleanor Hernandez", + "gender": "female", + "age": 62, + "address": { + "state": "Arkansas", + "city": "Dundee" + } + }, + { + "id": 1037, + "name": "Leah Hurley", + "gender": "female", + "age": 81, + "address": { + "state": "Texas", + "city": "Oley" + } + }, + { + "id": 1038, + "name": "Mccray Franks", + "gender": "male", + "age": 55, + "address": { + "state": "California", + "city": "Gorham" + } + }, + { + "id": 1039, + "name": "Sanders Osborne", + "gender": "male", + "age": 27, + "address": { + "state": "Wisconsin", + "city": "Sabillasville" + } + }, + { + "id": 1040, + "name": "Gabrielle Landry", + "gender": "female", + "age": 29, + "address": { + "state": "Alaska", + "city": "Ladera" + } + }, + { + "id": 1041, + "name": "Garrett Morrison", + "gender": "male", + "age": 75, + "address": { + "state": "South Carolina", + "city": "Leola" + } + }, + { + "id": 1042, + "name": "Christy Watts", + "gender": "female", + "age": 40, + "address": { + "state": "South Dakota", + "city": "Dixie" + } + }, + { + "id": 1043, + "name": "Atkins Clarke", + "gender": "male", + "age": 57, + "address": { + "state": "Kentucky", + "city": "Fairmount" + } + }, + { + "id": 1044, + "name": "Wiley Odonnell", + "gender": "male", + "age": 54, + "address": { + "state": "Georgia", + "city": "Snelling" + } + }, + { + "id": 1045, + "name": "Thomas Carney", + "gender": "male", + "age": 30, + "address": { + "state": "New York", + "city": "Forestburg" + } + }, + { + "id": 1046, + "name": "Barker Rowland", + "gender": "male", + "age": 44, + "address": { + "state": "Arizona", + "city": "Kiskimere" + } + }, + { + "id": 1047, + "name": "Campos Deleon", + "gender": "male", + "age": 63, + "address": { + "state": "Connecticut", + "city": "Brutus" + } + }, + { + "id": 1048, + "name": "Marisol Fuller", + "gender": "female", + "age": 80, + "address": { + "state": "Virginia", + "city": "Munjor" + } + }, + { + "id": 1049, + "name": "Barrera Morgan", + "gender": "male", + "age": 27, + "address": { + "state": "Alabama", + "city": "Vicksburg" + } + }, + { + "id": 1050, + "name": "Trudy Baird", + "gender": "female", + "age": 80, + "address": { + "state": "West Virginia", + "city": "Allamuchy" + } + }, + { + "id": 1051, + "name": "Carney Richmond", + "gender": "male", + "age": 62, + "address": { + "state": "Missouri", + "city": "Cumminsville" + } + }, + { + "id": 1052, + "name": "Brooke Garrison", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Matheny" + } + }, + { + "id": 1053, + "name": "Jacquelyn Raymond", + "gender": "female", + "age": 43, + "address": { + "state": "Minnesota", + "city": "Hollymead" + } + }, + { + "id": 1054, + "name": "Doyle Hoffman", + "gender": "male", + "age": 73, + "address": { + "state": "Mississippi", + "city": "Murillo" + } + }, + { + "id": 1055, + "name": "Summer Bright", + "gender": "female", + "age": 18, + "address": { + "state": "Rhode Island", + "city": "Trexlertown" + } + }, + { + "id": 1056, + "name": "Burch Vincent", + "gender": "male", + "age": 66, + "address": { + "state": "Oklahoma", + "city": "Edgewater" + } + }, + { + "id": 1057, + "name": "Viola Kirby", + "gender": "female", + "age": 72, + "address": { + "state": "Florida", + "city": "Jardine" + } + }, + { + "id": 1058, + "name": "Traci Wolfe", + "gender": "female", + "age": 24, + "address": { + "state": "Michigan", + "city": "Highland" + } + }, + { + "id": 1059, + "name": "Cobb Bruce", + "gender": "male", + "age": 82, + "address": { + "state": "Washington", + "city": "Clay" + } + }, + { + "id": 1060, + "name": "Esperanza Robles", + "gender": "female", + "age": 33, + "address": { + "state": "Colorado", + "city": "Shepardsville" + } + }, + { + "id": 1061, + "name": "Willis Barnes", + "gender": "male", + "age": 50, + "address": { + "state": "Illinois", + "city": "Beyerville" + } + }, + { + "id": 1062, + "name": "Susan Santana", + "gender": "female", + "age": 77, + "address": { + "state": "Utah", + "city": "Coaldale" + } + }, + { + "id": 1063, + "name": "Guadalupe Frederick", + "gender": "female", + "age": 39, + "address": { + "state": "Hawaii", + "city": "Takilma" + } + }, + { + "id": 1064, + "name": "Anne Giles", + "gender": "female", + "age": 25, + "address": { + "state": "North Carolina", + "city": "Osmond" + } + }, + { + "id": 1065, + "name": "Jennifer Frye", + "gender": "female", + "age": 58, + "address": { + "state": "Louisiana", + "city": "Ilchester" + } + }, + { + "id": 1066, + "name": "Pugh Roberson", + "gender": "male", + "age": 61, + "address": { + "state": "Iowa", + "city": "Siglerville" + } + }, + { + "id": 1067, + "name": "Sandra Pace", + "gender": "female", + "age": 49, + "address": { + "state": "Pennsylvania", + "city": "Kipp" + } + }, + { + "id": 1068, + "name": "Jeannine Kaufman", + "gender": "female", + "age": 61, + "address": { + "state": "New Jersey", + "city": "Elliott" + } + }, + { + "id": 1069, + "name": "Lenore Lamb", + "gender": "female", + "age": 67, + "address": { + "state": "Wyoming", + "city": "Loretto" + } + }, + { + "id": 1070, + "name": "Ida Dotson", + "gender": "female", + "age": 21, + "address": { + "state": "Ohio", + "city": "Manitou" + } + }, + { + "id": 1071, + "name": "Cannon Dale", + "gender": "male", + "age": 37, + "address": { + "state": "Indiana", + "city": "Hayden" + } + }, + { + "id": 1072, + "name": "Reese Simmons", + "gender": "male", + "age": 54, + "address": { + "state": "Maine", + "city": "Haring" + } + }, + { + "id": 1073, + "name": "Trujillo Owens", + "gender": "male", + "age": 63, + "address": { + "state": "Kansas", + "city": "Ivanhoe" + } + }, + { + "id": 1074, + "name": "Sloan Travis", + "gender": "male", + "age": 20, + "address": { + "state": "New Mexico", + "city": "Swartzville" + } + }, + { + "id": 1075, + "name": "Jacklyn Pacheco", + "gender": "female", + "age": 38, + "address": { + "state": "Idaho", + "city": "Bainbridge" + } + }, + { + "id": 1076, + "name": "Sofia Meyer", + "gender": "female", + "age": 45, + "address": { + "state": "Oregon", + "city": "Newkirk" + } + }, + { + "id": 1077, + "name": "Mavis Olsen", + "gender": "female", + "age": 67, + "address": { + "state": "Nevada", + "city": "Websterville" + } + }, + { + "id": 1078, + "name": "Estes Murray", + "gender": "male", + "age": 20, + "address": { + "state": "New York", + "city": "Kylertown" + } + }, + { + "id": 1079, + "name": "Bates Dixon", + "gender": "male", + "age": 50, + "address": { + "state": "Vermont", + "city": "Virgie" + } + }, + { + "id": 1080, + "name": "Nielsen Haynes", + "gender": "male", + "age": 49, + "address": { + "state": "Mississippi", + "city": "Castleton" + } + }, + { + "id": 1081, + "name": "Alana Nixon", + "gender": "female", + "age": 64, + "address": { + "state": "New Hampshire", + "city": "Chestnut" + } + }, + { + "id": 1082, + "name": "Delacruz Beard", + "gender": "male", + "age": 66, + "address": { + "state": "New Jersey", + "city": "Conway" + } + }, + { + "id": 1083, + "name": "Dickson Rios", + "gender": "male", + "age": 68, + "address": { + "state": "Connecticut", + "city": "Sutton" + } + }, + { + "id": 1084, + "name": "Meagan Hicks", + "gender": "female", + "age": 47, + "address": { + "state": "Kansas", + "city": "Aberdeen" + } + }, + { + "id": 1085, + "name": "Hampton Clemons", + "gender": "male", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Mulino" + } + }, + { + "id": 1086, + "name": "Glover Bush", + "gender": "male", + "age": 79, + "address": { + "state": "Delaware", + "city": "Lynn" + } + }, + { + "id": 1087, + "name": "Caitlin Hooper", + "gender": "female", + "age": 31, + "address": { + "state": "Texas", + "city": "Ferney" + } + }, + { + "id": 1088, + "name": "Kelly Byrd", + "gender": "male", + "age": 35, + "address": { + "state": "Tennessee", + "city": "Gloucester" + } + }, + { + "id": 1089, + "name": "Carmela Gentry", + "gender": "female", + "age": 81, + "address": { + "state": "Colorado", + "city": "Bennett" + } + }, + { + "id": 1090, + "name": "Bobbi Jimenez", + "gender": "female", + "age": 21, + "address": { + "state": "Rhode Island", + "city": "Kennedyville" + } + }, + { + "id": 1091, + "name": "Rice Herrera", + "gender": "male", + "age": 48, + "address": { + "state": "Massachusetts", + "city": "Smeltertown" + } + }, + { + "id": 1092, + "name": "Karin Haney", + "gender": "female", + "age": 44, + "address": { + "state": "Iowa", + "city": "Wakarusa" + } + }, + { + "id": 1093, + "name": "Elvia Harper", + "gender": "female", + "age": 24, + "address": { + "state": "Arkansas", + "city": "Sunriver" + } + }, + { + "id": 1094, + "name": "Maggie Mcclure", + "gender": "female", + "age": 55, + "address": { + "state": "Idaho", + "city": "Nicholson" + } + }, + { + "id": 1095, + "name": "Hyde Smith", + "gender": "male", + "age": 31, + "address": { + "state": "Nebraska", + "city": "Cornucopia" + } + }, + { + "id": 1096, + "name": "Meyer Emerson", + "gender": "male", + "age": 20, + "address": { + "state": "South Carolina", + "city": "Wescosville" + } + }, + { + "id": 1097, + "name": "Jill Moses", + "gender": "female", + "age": 55, + "address": { + "state": "Montana", + "city": "Alleghenyville" + } + }, + { + "id": 1098, + "name": "Morrow Boone", + "gender": "male", + "age": 37, + "address": { + "state": "Oklahoma", + "city": "Onton" + } + }, + { + "id": 1099, + "name": "Michael Bowman", + "gender": "female", + "age": 32, + "address": { + "state": "Indiana", + "city": "Eastvale" + } + }, + { + "id": 1100, + "name": "Lott Walker", + "gender": "male", + "age": 55, + "address": { + "state": "Minnesota", + "city": "Garnet" + } + }, + { + "id": 1101, + "name": "Robles Oneal", + "gender": "male", + "age": 59, + "address": { + "state": "Arizona", + "city": "Riegelwood" + } + }, + { + "id": 1102, + "name": "Cathleen Coffey", + "gender": "female", + "age": 38, + "address": { + "state": "New Mexico", + "city": "Wyoming" + } + }, + { + "id": 1103, + "name": "Eileen Wooten", + "gender": "female", + "age": 23, + "address": { + "state": "Michigan", + "city": "Macdona" + } + }, + { + "id": 1104, + "name": "Barry Stein", + "gender": "male", + "age": 30, + "address": { + "state": "Pennsylvania", + "city": "Roeville" + } + }, + { + "id": 1105, + "name": "Harriet Sandoval", + "gender": "female", + "age": 75, + "address": { + "state": "California", + "city": "Rodanthe" + } + }, + { + "id": 1106, + "name": "Ward Stout", + "gender": "male", + "age": 67, + "address": { + "state": "Missouri", + "city": "Brady" + } + }, + { + "id": 1107, + "name": "Helga Mays", + "gender": "female", + "age": 43, + "address": { + "state": "Georgia", + "city": "Wanamie" + } + }, + { + "id": 1108, + "name": "Lena Solis", + "gender": "female", + "age": 23, + "address": { + "state": "Illinois", + "city": "Floriston" + } + }, + { + "id": 1109, + "name": "Farrell Yates", + "gender": "male", + "age": 82, + "address": { + "state": "Hawaii", + "city": "Belfair" + } + }, + { + "id": 1110, + "name": "Hogan Ewing", + "gender": "male", + "age": 25, + "address": { + "state": "Nevada", + "city": "Day" + } + }, + { + "id": 1111, + "name": "Zimmerman Morales", + "gender": "male", + "age": 67, + "address": { + "state": "Maine", + "city": "Brantleyville" + } + }, + { + "id": 1112, + "name": "Kristy Hayden", + "gender": "female", + "age": 64, + "address": { + "state": "Maryland", + "city": "Germanton" + } + }, + { + "id": 1113, + "name": "Jennifer Nielsen", + "gender": "female", + "age": 23, + "address": { + "state": "North Carolina", + "city": "Silkworth" + } + }, + { + "id": 1114, + "name": "Clare Finch", + "gender": "female", + "age": 17, + "address": { + "state": "Wisconsin", + "city": "Stagecoach" + } + }, + { + "id": 1115, + "name": "Cox Vang", + "gender": "male", + "age": 25, + "address": { + "state": "Virginia", + "city": "Ballico" + } + }, + { + "id": 1116, + "name": "Dona Trevino", + "gender": "female", + "age": 46, + "address": { + "state": "Ohio", + "city": "Finzel" + } + }, + { + "id": 1117, + "name": "Tina Chang", + "gender": "female", + "age": 22, + "address": { + "state": "Florida", + "city": "Loveland" + } + }, + { + "id": 1118, + "name": "Felecia Roth", + "gender": "female", + "age": 51, + "address": { + "state": "Wyoming", + "city": "Noblestown" + } + }, + { + "id": 1119, + "name": "Hall Warren", + "gender": "male", + "age": 21, + "address": { + "state": "Utah", + "city": "Foxworth" + } + }, + { + "id": 1120, + "name": "Odonnell Scott", + "gender": "male", + "age": 24, + "address": { + "state": "Kentucky", + "city": "Mayfair" + } + }, + { + "id": 1121, + "name": "Turner Vinson", + "gender": "male", + "age": 30, + "address": { + "state": "South Dakota", + "city": "Remington" + } + }, + { + "id": 1122, + "name": "Wright Powell", + "gender": "male", + "age": 24, + "address": { + "state": "Alaska", + "city": "Oberlin" + } + }, + { + "id": 1123, + "name": "White Adkins", + "gender": "male", + "age": 17, + "address": { + "state": "Oregon", + "city": "Allentown" + } + }, + { + "id": 1124, + "name": "Edwards Glover", + "gender": "male", + "age": 53, + "address": { + "state": "Alabama", + "city": "Jeff" + } + }, + { + "id": 1125, + "name": "Camille Goodwin", + "gender": "female", + "age": 76, + "address": { + "state": "Louisiana", + "city": "Brazos" + } + }, + { + "id": 1126, + "name": "Agnes Sargent", + "gender": "female", + "age": 34, + "address": { + "state": "North Dakota", + "city": "Stollings" + } + }, + { + "id": 1127, + "name": "Chapman Mcconnell", + "gender": "male", + "age": 60, + "address": { + "state": "Kansas", + "city": "Canby" + } + }, + { + "id": 1128, + "name": "Tate Freeman", + "gender": "male", + "age": 58, + "address": { + "state": "Iowa", + "city": "Fidelis" + } + }, + { + "id": 1129, + "name": "Kate Crane", + "gender": "female", + "age": 49, + "address": { + "state": "Virginia", + "city": "Alafaya" + } + }, + { + "id": 1130, + "name": "Effie Campbell", + "gender": "female", + "age": 17, + "address": { + "state": "Oregon", + "city": "Oasis" + } + }, + { + "id": 1131, + "name": "Duran Walls", + "gender": "male", + "age": 40, + "address": { + "state": "Nebraska", + "city": "Shawmut" + } + }, + { + "id": 1132, + "name": "Mckay Burke", + "gender": "male", + "age": 52, + "address": { + "state": "New York", + "city": "Frank" + } + }, + { + "id": 1133, + "name": "Tina Houston", + "gender": "female", + "age": 53, + "address": { + "state": "Delaware", + "city": "Needmore" + } + }, + { + "id": 1134, + "name": "Underwood Roy", + "gender": "male", + "age": 20, + "address": { + "state": "New Mexico", + "city": "Starks" + } + }, + { + "id": 1135, + "name": "Abby Sanders", + "gender": "female", + "age": 45, + "address": { + "state": "Oklahoma", + "city": "Somerset" + } + }, + { + "id": 1136, + "name": "Mcdaniel Hays", + "gender": "male", + "age": 22, + "address": { + "state": "Maine", + "city": "Tecolotito" + } + }, + { + "id": 1137, + "name": "Levine Larsen", + "gender": "male", + "age": 38, + "address": { + "state": "Arkansas", + "city": "Adamstown" + } + }, + { + "id": 1138, + "name": "Pickett Stein", + "gender": "male", + "age": 49, + "address": { + "state": "Maryland", + "city": "Movico" + } + }, + { + "id": 1139, + "name": "Charlene Fletcher", + "gender": "female", + "age": 52, + "address": { + "state": "Mississippi", + "city": "Fulford" + } + }, + { + "id": 1140, + "name": "Florine Jones", + "gender": "female", + "age": 34, + "address": { + "state": "New Hampshire", + "city": "Bowmansville" + } + }, + { + "id": 1141, + "name": "Vivian Greer", + "gender": "female", + "age": 53, + "address": { + "state": "Connecticut", + "city": "Cumminsville" + } + }, + { + "id": 1142, + "name": "Myers Ramsey", + "gender": "male", + "age": 73, + "address": { + "state": "Indiana", + "city": "Wanamie" + } + }, + { + "id": 1143, + "name": "Rocha Hammond", + "gender": "male", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Byrnedale" + } + }, + { + "id": 1144, + "name": "Magdalena Blair", + "gender": "female", + "age": 57, + "address": { + "state": "Louisiana", + "city": "Orason" + } + }, + { + "id": 1145, + "name": "Cantu Gordon", + "gender": "male", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Chapin" + } + }, + { + "id": 1146, + "name": "Booth Morton", + "gender": "male", + "age": 46, + "address": { + "state": "New Jersey", + "city": "Boyd" + } + }, + { + "id": 1147, + "name": "Sharlene Shepherd", + "gender": "female", + "age": 59, + "address": { + "state": "Tennessee", + "city": "Matheny" + } + }, + { + "id": 1148, + "name": "Merle Wilkins", + "gender": "female", + "age": 26, + "address": { + "state": "Michigan", + "city": "Lafferty" + } + }, + { + "id": 1149, + "name": "Krista Moody", + "gender": "female", + "age": 34, + "address": { + "state": "Florida", + "city": "Bayview" + } + }, + { + "id": 1150, + "name": "Peggy Eaton", + "gender": "female", + "age": 82, + "address": { + "state": "Georgia", + "city": "Twilight" + } + }, + { + "id": 1151, + "name": "Tameka Patrick", + "gender": "female", + "age": 46, + "address": { + "state": "Hawaii", + "city": "Sena" + } + }, + { + "id": 1152, + "name": "Claudia Berry", + "gender": "female", + "age": 34, + "address": { + "state": "Ohio", + "city": "Fowlerville" + } + }, + { + "id": 1153, + "name": "Snider Mckinney", + "gender": "male", + "age": 32, + "address": { + "state": "Washington", + "city": "Noblestown" + } + }, + { + "id": 1154, + "name": "Horton Glover", + "gender": "male", + "age": 60, + "address": { + "state": "Vermont", + "city": "Nash" + } + }, + { + "id": 1155, + "name": "Mae Vinson", + "gender": "female", + "age": 47, + "address": { + "state": "Rhode Island", + "city": "Foxworth" + } + }, + { + "id": 1156, + "name": "Faith Palmer", + "gender": "female", + "age": 66, + "address": { + "state": "Alabama", + "city": "Groton" + } + }, + { + "id": 1157, + "name": "Savage Brady", + "gender": "male", + "age": 24, + "address": { + "state": "West Virginia", + "city": "Lewis" + } + }, + { + "id": 1158, + "name": "Belinda Moss", + "gender": "female", + "age": 66, + "address": { + "state": "Texas", + "city": "Curtice" + } + }, + { + "id": 1159, + "name": "Durham Thomas", + "gender": "male", + "age": 34, + "address": { + "state": "South Dakota", + "city": "Felt" + } + }, + { + "id": 1160, + "name": "Ginger Bowen", + "gender": "female", + "age": 60, + "address": { + "state": "Montana", + "city": "Deltaville" + } + }, + { + "id": 1161, + "name": "Maxwell Wyatt", + "gender": "male", + "age": 63, + "address": { + "state": "Arizona", + "city": "Mulberry" + } + }, + { + "id": 1162, + "name": "Campos Levy", + "gender": "male", + "age": 44, + "address": { + "state": "Wisconsin", + "city": "Turah" + } + }, + { + "id": 1163, + "name": "Elizabeth Copeland", + "gender": "female", + "age": 54, + "address": { + "state": "Utah", + "city": "Carrsville" + } + }, + { + "id": 1164, + "name": "Herminia Hartman", + "gender": "female", + "age": 28, + "address": { + "state": "Massachusetts", + "city": "Cobbtown" + } + }, + { + "id": 1165, + "name": "Beth Marshall", + "gender": "female", + "age": 17, + "address": { + "state": "Nevada", + "city": "Morriston" + } + }, + { + "id": 1166, + "name": "Lorna Burnett", + "gender": "female", + "age": 34, + "address": { + "state": "Illinois", + "city": "Bartonsville" + } + }, + { + "id": 1167, + "name": "Mable Hull", + "gender": "female", + "age": 33, + "address": { + "state": "North Carolina", + "city": "Forestburg" + } + }, + { + "id": 1168, + "name": "Kayla Mcbride", + "gender": "female", + "age": 58, + "address": { + "state": "Wyoming", + "city": "Stewart" + } + }, + { + "id": 1169, + "name": "Skinner Barlow", + "gender": "male", + "age": 58, + "address": { + "state": "Colorado", + "city": "Rockingham" + } + }, + { + "id": 1170, + "name": "Bass Brennan", + "gender": "male", + "age": 37, + "address": { + "state": "Kentucky", + "city": "Healy" + } + }, + { + "id": 1171, + "name": "Esther Patton", + "gender": "female", + "age": 61, + "address": { + "state": "Alaska", + "city": "Gilgo" + } + }, + { + "id": 1172, + "name": "Edwards Cabrera", + "gender": "male", + "age": 34, + "address": { + "state": "Missouri", + "city": "Teasdale" + } + }, + { + "id": 1173, + "name": "Moody Morrison", + "gender": "male", + "age": 36, + "address": { + "state": "Idaho", + "city": "Croom" + } + }, + { + "id": 1174, + "name": "Castillo Gray", + "gender": "male", + "age": 62, + "address": { + "state": "Pennsylvania", + "city": "Roland" + } + }, + { + "id": 1175, + "name": "Evans Pitts", + "gender": "male", + "age": 39, + "address": { + "state": "North Dakota", + "city": "Leeper" + } + }, + { + "id": 1176, + "name": "Kaufman Kirby", + "gender": "male", + "age": 25, + "address": { + "state": "Vermont", + "city": "Brenton" + } + }, + { + "id": 1177, + "name": "Wallace Justice", + "gender": "male", + "age": 73, + "address": { + "state": "New York", + "city": "Hasty" + } + }, + { + "id": 1178, + "name": "Robertson Merrill", + "gender": "male", + "age": 30, + "address": { + "state": "Iowa", + "city": "Rodanthe" + } + }, + { + "id": 1179, + "name": "Patterson Holman", + "gender": "male", + "age": 54, + "address": { + "state": "Wisconsin", + "city": "Leola" + } + }, + { + "id": 1180, + "name": "Garcia Delacruz", + "gender": "male", + "age": 18, + "address": { + "state": "Colorado", + "city": "Homeworth" + } + }, + { + "id": 1181, + "name": "Valeria Compton", + "gender": "female", + "age": 42, + "address": { + "state": "New Mexico", + "city": "Oretta" + } + }, + { + "id": 1182, + "name": "Renee Landry", + "gender": "female", + "age": 43, + "address": { + "state": "New Hampshire", + "city": "Bergoo" + } + }, + { + "id": 1183, + "name": "Noel Thompson", + "gender": "male", + "age": 20, + "address": { + "state": "Mississippi", + "city": "Ebro" + } + }, + { + "id": 1184, + "name": "Elisabeth Johnston", + "gender": "female", + "age": 31, + "address": { + "state": "Virginia", + "city": "Graniteville" + } + }, + { + "id": 1185, + "name": "Wagner Holder", + "gender": "male", + "age": 28, + "address": { + "state": "West Virginia", + "city": "Hannasville" + } + }, + { + "id": 1186, + "name": "Molina Holt", + "gender": "male", + "age": 69, + "address": { + "state": "Massachusetts", + "city": "Hayes" + } + }, + { + "id": 1187, + "name": "Payne Deleon", + "gender": "male", + "age": 66, + "address": { + "state": "Minnesota", + "city": "Klondike" + } + }, + { + "id": 1188, + "name": "Curry Sherman", + "gender": "male", + "age": 39, + "address": { + "state": "Illinois", + "city": "Trinway" + } + }, + { + "id": 1189, + "name": "Velasquez Valdez", + "gender": "male", + "age": 28, + "address": { + "state": "Utah", + "city": "Hillsboro" + } + }, + { + "id": 1190, + "name": "Hilda Chapman", + "gender": "female", + "age": 32, + "address": { + "state": "Oregon", + "city": "Edgewater" + } + }, + { + "id": 1191, + "name": "Evans Adkins", + "gender": "male", + "age": 67, + "address": { + "state": "South Dakota", + "city": "Darlington" + } + }, + { + "id": 1192, + "name": "Lois Woodward", + "gender": "female", + "age": 68, + "address": { + "state": "Missouri", + "city": "Oberlin" + } + }, + { + "id": 1193, + "name": "Lily Meadows", + "gender": "female", + "age": 66, + "address": { + "state": "Maryland", + "city": "Centerville" + } + }, + { + "id": 1194, + "name": "Carney Lambert", + "gender": "male", + "age": 20, + "address": { + "state": "Florida", + "city": "Klagetoh" + } + }, + { + "id": 1195, + "name": "Gross Hebert", + "gender": "male", + "age": 69, + "address": { + "state": "Maine", + "city": "Chalfant" + } + }, + { + "id": 1196, + "name": "Nola Page", + "gender": "female", + "age": 43, + "address": { + "state": "California", + "city": "Brazos" + } + }, + { + "id": 1197, + "name": "Cleveland Fletcher", + "gender": "male", + "age": 24, + "address": { + "state": "Indiana", + "city": "Rivers" + } + }, + { + "id": 1198, + "name": "Rasmussen Gallagher", + "gender": "male", + "age": 33, + "address": { + "state": "Michigan", + "city": "Retsof" + } + }, + { + "id": 1199, + "name": "Nelda Terry", + "gender": "female", + "age": 19, + "address": { + "state": "Washington", + "city": "Waumandee" + } + }, + { + "id": 1200, + "name": "Maria Lindsay", + "gender": "female", + "age": 65, + "address": { + "state": "Montana", + "city": "Sheatown" + } + }, + { + "id": 1201, + "name": "Deirdre Washington", + "gender": "female", + "age": 42, + "address": { + "state": "Pennsylvania", + "city": "Shindler" + } + }, + { + "id": 1202, + "name": "Shelly Beasley", + "gender": "female", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Lowell" + } + }, + { + "id": 1203, + "name": "Porter Schmidt", + "gender": "male", + "age": 75, + "address": { + "state": "Nevada", + "city": "Carbonville" + } + }, + { + "id": 1204, + "name": "Consuelo Shepard", + "gender": "female", + "age": 61, + "address": { + "state": "Idaho", + "city": "Sunnyside" + } + }, + { + "id": 1205, + "name": "Carey Lopez", + "gender": "female", + "age": 19, + "address": { + "state": "North Dakota", + "city": "Utting" + } + }, + { + "id": 1206, + "name": "Bush Ellis", + "gender": "male", + "age": 59, + "address": { + "state": "Arkansas", + "city": "Groveville" + } + }, + { + "id": 1207, + "name": "June Schwartz", + "gender": "female", + "age": 52, + "address": { + "state": "Louisiana", + "city": "Drytown" + } + }, + { + "id": 1208, + "name": "Wilkinson Baldwin", + "gender": "male", + "age": 36, + "address": { + "state": "Texas", + "city": "Clarksburg" + } + }, + { + "id": 1209, + "name": "Kim Bailey", + "gender": "male", + "age": 27, + "address": { + "state": "Nebraska", + "city": "Munjor" + } + }, + { + "id": 1210, + "name": "Katie Parsons", + "gender": "female", + "age": 68, + "address": { + "state": "North Carolina", + "city": "Coloma" + } + }, + { + "id": 1211, + "name": "Velez Barlow", + "gender": "male", + "age": 23, + "address": { + "state": "Alaska", + "city": "Robbins" + } + }, + { + "id": 1212, + "name": "Schmidt Rojas", + "gender": "male", + "age": 31, + "address": { + "state": "Tennessee", + "city": "Hoagland" + } + }, + { + "id": 1213, + "name": "Duffy Gill", + "gender": "male", + "age": 27, + "address": { + "state": "South Carolina", + "city": "Bluffview" + } + }, + { + "id": 1214, + "name": "Noble Cunningham", + "gender": "male", + "age": 45, + "address": { + "state": "Oklahoma", + "city": "Florence" + } + }, + { + "id": 1215, + "name": "Vang Figueroa", + "gender": "male", + "age": 81, + "address": { + "state": "Georgia", + "city": "Zarephath" + } + }, + { + "id": 1216, + "name": "West Velazquez", + "gender": "male", + "age": 66, + "address": { + "state": "Delaware", + "city": "Springville" + } + }, + { + "id": 1217, + "name": "Key Sexton", + "gender": "male", + "age": 65, + "address": { + "state": "Alabama", + "city": "Caledonia" + } + }, + { + "id": 1218, + "name": "Cassandra Rios", + "gender": "female", + "age": 79, + "address": { + "state": "Wyoming", + "city": "Whitehaven" + } + }, + { + "id": 1219, + "name": "Kayla Slater", + "gender": "female", + "age": 67, + "address": { + "state": "Kentucky", + "city": "Lutsen" + } + }, + { + "id": 1220, + "name": "Booker Davidson", + "gender": "male", + "age": 34, + "address": { + "state": "Hawaii", + "city": "Wacissa" + } + }, + { + "id": 1221, + "name": "Beard Melton", + "gender": "male", + "age": 47, + "address": { + "state": "Ohio", + "city": "Jeff" + } + }, + { + "id": 1222, + "name": "Dona Rush", + "gender": "female", + "age": 17, + "address": { + "state": "Kansas", + "city": "Joppa" + } + }, + { + "id": 1223, + "name": "Maggie Waller", + "gender": "female", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Clarktown" + } + }, + { + "id": 1224, + "name": "Rene Thornton", + "gender": "female", + "age": 32, + "address": { + "state": "New Jersey", + "city": "Vale" + } + }, + { + "id": 1225, + "name": "Hudson Holloway", + "gender": "male", + "age": 62, + "address": { + "state": "Alaska", + "city": "Glendale" + } + }, + { + "id": 1226, + "name": "Kristin Bryant", + "gender": "female", + "age": 31, + "address": { + "state": "Indiana", + "city": "Tuttle" + } + }, + { + "id": 1227, + "name": "Jeanette Shaffer", + "gender": "female", + "age": 22, + "address": { + "state": "Virginia", + "city": "Tooleville" + } + }, + { + "id": 1228, + "name": "Katelyn Boyd", + "gender": "female", + "age": 44, + "address": { + "state": "Illinois", + "city": "Allison" + } + }, + { + "id": 1229, + "name": "Latoya Odonnell", + "gender": "female", + "age": 41, + "address": { + "state": "Missouri", + "city": "Grahamtown" + } + }, + { + "id": 1230, + "name": "Acosta Barlow", + "gender": "male", + "age": 30, + "address": { + "state": "Arkansas", + "city": "Greenfields" + } + }, + { + "id": 1231, + "name": "Catherine Campbell", + "gender": "female", + "age": 40, + "address": { + "state": "South Carolina", + "city": "Darrtown" + } + }, + { + "id": 1232, + "name": "Hunt Delacruz", + "gender": "male", + "age": 49, + "address": { + "state": "Nebraska", + "city": "Stonybrook" + } + }, + { + "id": 1233, + "name": "Duran Strickland", + "gender": "male", + "age": 51, + "address": { + "state": "Massachusetts", + "city": "Sunnyside" + } + }, + { + "id": 1234, + "name": "Boyle Rogers", + "gender": "male", + "age": 51, + "address": { + "state": "New Hampshire", + "city": "Efland" + } + }, + { + "id": 1235, + "name": "Horton Ray", + "gender": "male", + "age": 82, + "address": { + "state": "Alabama", + "city": "Tampico" + } + }, + { + "id": 1236, + "name": "Christian Nelson", + "gender": "female", + "age": 17, + "address": { + "state": "Utah", + "city": "Bayview" + } + }, + { + "id": 1237, + "name": "Leola Michael", + "gender": "female", + "age": 71, + "address": { + "state": "Arizona", + "city": "Barclay" + } + }, + { + "id": 1238, + "name": "Katherine Middleton", + "gender": "female", + "age": 35, + "address": { + "state": "Connecticut", + "city": "Healy" + } + }, + { + "id": 1239, + "name": "Sara Gilliam", + "gender": "female", + "age": 80, + "address": { + "state": "Mississippi", + "city": "Bergoo" + } + }, + { + "id": 1240, + "name": "Fleming Page", + "gender": "male", + "age": 64, + "address": { + "state": "Texas", + "city": "Mayfair" + } + }, + { + "id": 1241, + "name": "Ochoa Koch", + "gender": "male", + "age": 79, + "address": { + "state": "Vermont", + "city": "Osmond" + } + }, + { + "id": 1242, + "name": "Pollard Frye", + "gender": "male", + "age": 31, + "address": { + "state": "Florida", + "city": "Klondike" + } + }, + { + "id": 1243, + "name": "Rosalyn Glass", + "gender": "female", + "age": 71, + "address": { + "state": "Louisiana", + "city": "Maxville" + } + }, + { + "id": 1244, + "name": "Stein Hanson", + "gender": "male", + "age": 64, + "address": { + "state": "Oklahoma", + "city": "Nelson" + } + }, + { + "id": 1245, + "name": "Bauer Solomon", + "gender": "male", + "age": 60, + "address": { + "state": "Montana", + "city": "Nadine" + } + }, + { + "id": 1246, + "name": "Morton Alexander", + "gender": "male", + "age": 46, + "address": { + "state": "California", + "city": "Robinson" + } + }, + { + "id": 1247, + "name": "Mullen Ware", + "gender": "male", + "age": 31, + "address": { + "state": "Maryland", + "city": "Kenvil" + } + }, + { + "id": 1248, + "name": "Hammond Albert", + "gender": "male", + "age": 55, + "address": { + "state": "Oregon", + "city": "Garberville" + } + }, + { + "id": 1249, + "name": "Rogers Parrish", + "gender": "male", + "age": 61, + "address": { + "state": "Delaware", + "city": "Edneyville" + } + }, + { + "id": 1250, + "name": "Hewitt Case", + "gender": "male", + "age": 44, + "address": { + "state": "South Dakota", + "city": "Leland" + } + }, + { + "id": 1251, + "name": "Brooke Phelps", + "gender": "female", + "age": 30, + "address": { + "state": "Colorado", + "city": "Santel" + } + }, + { + "id": 1252, + "name": "Kimberley Coffey", + "gender": "female", + "age": 45, + "address": { + "state": "West Virginia", + "city": "Haena" + } + }, + { + "id": 1253, + "name": "Buckley Schmidt", + "gender": "male", + "age": 55, + "address": { + "state": "Maine", + "city": "Graball" + } + }, + { + "id": 1254, + "name": "Christa Foster", + "gender": "female", + "age": 22, + "address": { + "state": "Hawaii", + "city": "Belfair" + } + }, + { + "id": 1255, + "name": "Lola Sears", + "gender": "female", + "age": 81, + "address": { + "state": "Kansas", + "city": "Florence" + } + }, + { + "id": 1256, + "name": "Hobbs Tyson", + "gender": "male", + "age": 32, + "address": { + "state": "New York", + "city": "Kingstowne" + } + }, + { + "id": 1257, + "name": "Young Greene", + "gender": "male", + "age": 44, + "address": { + "state": "North Dakota", + "city": "Crisman" + } + }, + { + "id": 1258, + "name": "Christian Schneider", + "gender": "male", + "age": 39, + "address": { + "state": "New Jersey", + "city": "Salvo" + } + }, + { + "id": 1259, + "name": "Lakisha Gill", + "gender": "female", + "age": 52, + "address": { + "state": "Minnesota", + "city": "Enetai" + } + }, + { + "id": 1260, + "name": "Susana Ross", + "gender": "female", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Calvary" + } + }, + { + "id": 1261, + "name": "Shelton Hernandez", + "gender": "male", + "age": 59, + "address": { + "state": "Nevada", + "city": "Drummond" + } + }, + { + "id": 1262, + "name": "Sheppard Murphy", + "gender": "male", + "age": 20, + "address": { + "state": "Iowa", + "city": "Elliston" + } + }, + { + "id": 1263, + "name": "Bettie Vaughan", + "gender": "female", + "age": 70, + "address": { + "state": "North Carolina", + "city": "Washington" + } + }, + { + "id": 1264, + "name": "Casandra Whitehead", + "gender": "female", + "age": 49, + "address": { + "state": "Ohio", + "city": "Twilight" + } + }, + { + "id": 1265, + "name": "Booker Jennings", + "gender": "male", + "age": 18, + "address": { + "state": "Georgia", + "city": "Swartzville" + } + }, + { + "id": 1266, + "name": "Morse Mueller", + "gender": "male", + "age": 58, + "address": { + "state": "Michigan", + "city": "Caberfae" + } + }, + { + "id": 1267, + "name": "Joyce Franklin", + "gender": "male", + "age": 75, + "address": { + "state": "Tennessee", + "city": "Newcastle" + } + }, + { + "id": 1268, + "name": "Kate Chang", + "gender": "female", + "age": 53, + "address": { + "state": "Kentucky", + "city": "Leeper" + } + }, + { + "id": 1269, + "name": "Stephens Powell", + "gender": "male", + "age": 28, + "address": { + "state": "Idaho", + "city": "Elliott" + } + }, + { + "id": 1270, + "name": "Milagros Cooke", + "gender": "female", + "age": 82, + "address": { + "state": "Wyoming", + "city": "Greenbackville" + } + }, + { + "id": 1271, + "name": "Humphrey Conner", + "gender": "male", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Graniteville" + } + }, + { + "id": 1272, + "name": "Bertie Cote", + "gender": "female", + "age": 48, + "address": { + "state": "Rhode Island", + "city": "Vienna" + } + }, + { + "id": 1273, + "name": "Bell Mooney", + "gender": "male", + "age": 29, + "address": { + "state": "Wisconsin", + "city": "Jamestown" + } + }, + { + "id": 1274, + "name": "Whitehead Johnston", + "gender": "male", + "age": 41, + "address": { + "state": "Alabama", + "city": "Bayview" + } + }, + { + "id": 1275, + "name": "Cobb Hays", + "gender": "male", + "age": 75, + "address": { + "state": "Michigan", + "city": "Wells" + } + }, + { + "id": 1276, + "name": "Fern Buchanan", + "gender": "female", + "age": 61, + "address": { + "state": "North Carolina", + "city": "Accoville" + } + }, + { + "id": 1277, + "name": "Tracey Meadows", + "gender": "female", + "age": 72, + "address": { + "state": "Tennessee", + "city": "Longoria" + } + }, + { + "id": 1278, + "name": "Stevenson Talley", + "gender": "male", + "age": 35, + "address": { + "state": "Wyoming", + "city": "Murillo" + } + }, + { + "id": 1279, + "name": "Cherry Kirby", + "gender": "male", + "age": 60, + "address": { + "state": "West Virginia", + "city": "Belva" + } + }, + { + "id": 1280, + "name": "Howell Maynard", + "gender": "male", + "age": 56, + "address": { + "state": "Minnesota", + "city": "Hebron" + } + }, + { + "id": 1281, + "name": "Ethel Richards", + "gender": "female", + "age": 19, + "address": { + "state": "Massachusetts", + "city": "Felt" + } + }, + { + "id": 1282, + "name": "Ida Holt", + "gender": "female", + "age": 46, + "address": { + "state": "Mississippi", + "city": "Wright" + } + }, + { + "id": 1283, + "name": "Heather Chaney", + "gender": "female", + "age": 38, + "address": { + "state": "New Mexico", + "city": "Fairlee" + } + }, + { + "id": 1284, + "name": "Erickson Terrell", + "gender": "male", + "age": 25, + "address": { + "state": "Kentucky", + "city": "Rodman" + } + }, + { + "id": 1285, + "name": "Nora Hurley", + "gender": "female", + "age": 63, + "address": { + "state": "Indiana", + "city": "Takilma" + } + }, + { + "id": 1286, + "name": "Stephenson Guy", + "gender": "male", + "age": 57, + "address": { + "state": "Iowa", + "city": "Northchase" + } + }, + { + "id": 1287, + "name": "Johnnie Schmidt", + "gender": "female", + "age": 29, + "address": { + "state": "South Carolina", + "city": "Davenport" + } + }, + { + "id": 1288, + "name": "Terry Schneider", + "gender": "male", + "age": 17, + "address": { + "state": "Oregon", + "city": "Savage" + } + }, + { + "id": 1289, + "name": "Daniel Mcbride", + "gender": "male", + "age": 49, + "address": { + "state": "Oklahoma", + "city": "Fidelis" + } + }, + { + "id": 1290, + "name": "Conrad Finley", + "gender": "male", + "age": 67, + "address": { + "state": "Maine", + "city": "Sutton" + } + }, + { + "id": 1291, + "name": "Iris Delacruz", + "gender": "female", + "age": 80, + "address": { + "state": "Florida", + "city": "Utting" + } + }, + { + "id": 1292, + "name": "Amie Franklin", + "gender": "female", + "age": 79, + "address": { + "state": "New Jersey", + "city": "Lemoyne" + } + }, + { + "id": 1293, + "name": "Wall Walter", + "gender": "male", + "age": 80, + "address": { + "state": "New York", + "city": "Sharon" + } + }, + { + "id": 1294, + "name": "Trujillo Davidson", + "gender": "male", + "age": 67, + "address": { + "state": "Colorado", + "city": "Motley" + } + }, + { + "id": 1295, + "name": "Kara Cox", + "gender": "female", + "age": 41, + "address": { + "state": "Washington", + "city": "Wanamie" + } + }, + { + "id": 1296, + "name": "Shelley Nash", + "gender": "female", + "age": 41, + "address": { + "state": "Illinois", + "city": "Chase" + } + }, + { + "id": 1297, + "name": "Kaitlin Cherry", + "gender": "female", + "age": 40, + "address": { + "state": "Ohio", + "city": "Springdale" + } + }, + { + "id": 1298, + "name": "Hannah Anderson", + "gender": "female", + "age": 55, + "address": { + "state": "Pennsylvania", + "city": "Crown" + } + }, + { + "id": 1299, + "name": "Mack Huff", + "gender": "male", + "age": 76, + "address": { + "state": "Maryland", + "city": "Rew" + } + }, + { + "id": 1300, + "name": "Rhodes Shepherd", + "gender": "male", + "age": 58, + "address": { + "state": "Kansas", + "city": "Lafferty" + } + }, + { + "id": 1301, + "name": "Kathleen Marks", + "gender": "female", + "age": 35, + "address": { + "state": "Alaska", + "city": "Faxon" + } + }, + { + "id": 1302, + "name": "Elena Hood", + "gender": "female", + "age": 46, + "address": { + "state": "Arkansas", + "city": "Waukeenah" + } + }, + { + "id": 1303, + "name": "Dana Mcgee", + "gender": "female", + "age": 34, + "address": { + "state": "Virginia", + "city": "Forestburg" + } + }, + { + "id": 1304, + "name": "Frances Rivers", + "gender": "female", + "age": 45, + "address": { + "state": "Missouri", + "city": "Cobbtown" + } + }, + { + "id": 1305, + "name": "Essie Ford", + "gender": "female", + "age": 65, + "address": { + "state": "Georgia", + "city": "Bodega" + } + }, + { + "id": 1306, + "name": "Priscilla Bean", + "gender": "female", + "age": 67, + "address": { + "state": "Connecticut", + "city": "Libertytown" + } + }, + { + "id": 1307, + "name": "Brenda Walker", + "gender": "female", + "age": 49, + "address": { + "state": "California", + "city": "Yorklyn" + } + }, + { + "id": 1308, + "name": "Levine William", + "gender": "male", + "age": 17, + "address": { + "state": "Texas", + "city": "Katonah" + } + }, + { + "id": 1309, + "name": "Mattie Hopper", + "gender": "female", + "age": 49, + "address": { + "state": "North Dakota", + "city": "Guilford" + } + }, + { + "id": 1310, + "name": "Opal Becker", + "gender": "female", + "age": 75, + "address": { + "state": "Nebraska", + "city": "Hillsboro" + } + }, + { + "id": 1311, + "name": "Katina King", + "gender": "female", + "age": 24, + "address": { + "state": "New Hampshire", + "city": "Orviston" + } + }, + { + "id": 1312, + "name": "Clay Nunez", + "gender": "male", + "age": 48, + "address": { + "state": "Hawaii", + "city": "Buxton" + } + }, + { + "id": 1313, + "name": "Eloise Mclaughlin", + "gender": "female", + "age": 37, + "address": { + "state": "Utah", + "city": "Devon" + } + }, + { + "id": 1314, + "name": "Gail Ramos", + "gender": "female", + "age": 23, + "address": { + "state": "Idaho", + "city": "Chaparrito" + } + }, + { + "id": 1315, + "name": "Ruth Campbell", + "gender": "female", + "age": 19, + "address": { + "state": "Louisiana", + "city": "Nord" + } + }, + { + "id": 1316, + "name": "Yvonne Finch", + "gender": "female", + "age": 47, + "address": { + "state": "Nevada", + "city": "Hollymead" + } + }, + { + "id": 1317, + "name": "Pena Little", + "gender": "male", + "age": 18, + "address": { + "state": "Wisconsin", + "city": "Oretta" + } + }, + { + "id": 1318, + "name": "Munoz Shelton", + "gender": "male", + "age": 20, + "address": { + "state": "Rhode Island", + "city": "Holtville" + } + }, + { + "id": 1319, + "name": "Wong Sargent", + "gender": "male", + "age": 79, + "address": { + "state": "Delaware", + "city": "Umapine" + } + }, + { + "id": 1320, + "name": "Hoover Moss", + "gender": "male", + "age": 77, + "address": { + "state": "Montana", + "city": "Bartley" + } + }, + { + "id": 1321, + "name": "Jones Baldwin", + "gender": "male", + "age": 72, + "address": { + "state": "South Dakota", + "city": "Winfred" + } + }, + { + "id": 1322, + "name": "Nina Rich", + "gender": "female", + "age": 56, + "address": { + "state": "Arizona", + "city": "Dixonville" + } + }, + { + "id": 1323, + "name": "Meyers Wilcox", + "gender": "male", + "age": 35, + "address": { + "state": "Alaska", + "city": "Juntura" + } + }, + { + "id": 1324, + "name": "Haney Randall", + "gender": "male", + "age": 22, + "address": { + "state": "Ohio", + "city": "Urbana" + } + }, + { + "id": 1325, + "name": "Durham Alford", + "gender": "male", + "age": 21, + "address": { + "state": "Michigan", + "city": "Worcester" + } + }, + { + "id": 1326, + "name": "Stefanie Becker", + "gender": "female", + "age": 54, + "address": { + "state": "Minnesota", + "city": "Stockdale" + } + }, + { + "id": 1327, + "name": "Gutierrez Allison", + "gender": "male", + "age": 18, + "address": { + "state": "Vermont", + "city": "Rosewood" + } + }, + { + "id": 1328, + "name": "Georgina Hunter", + "gender": "female", + "age": 33, + "address": { + "state": "Washington", + "city": "Teasdale" + } + }, + { + "id": 1329, + "name": "Strong Garrett", + "gender": "male", + "age": 76, + "address": { + "state": "Arkansas", + "city": "Fairview" + } + }, + { + "id": 1330, + "name": "Watson Richard", + "gender": "male", + "age": 54, + "address": { + "state": "Nebraska", + "city": "Sattley" + } + }, + { + "id": 1331, + "name": "Maritza Singleton", + "gender": "female", + "age": 76, + "address": { + "state": "South Dakota", + "city": "Waterford" + } + }, + { + "id": 1332, + "name": "Felecia Simon", + "gender": "female", + "age": 20, + "address": { + "state": "Virginia", + "city": "Cedarville" + } + }, + { + "id": 1333, + "name": "Brandi Dunn", + "gender": "female", + "age": 58, + "address": { + "state": "Wyoming", + "city": "Garfield" + } + }, + { + "id": 1334, + "name": "Dianna Hutchinson", + "gender": "female", + "age": 57, + "address": { + "state": "Indiana", + "city": "Falconaire" + } + }, + { + "id": 1335, + "name": "Kathy Downs", + "gender": "female", + "age": 20, + "address": { + "state": "Louisiana", + "city": "Alamo" + } + }, + { + "id": 1336, + "name": "Holder Ochoa", + "gender": "male", + "age": 25, + "address": { + "state": "Illinois", + "city": "Dorneyville" + } + }, + { + "id": 1337, + "name": "Molly Crawford", + "gender": "female", + "age": 29, + "address": { + "state": "Oklahoma", + "city": "Keyport" + } + }, + { + "id": 1338, + "name": "Mccarthy Savage", + "gender": "male", + "age": 29, + "address": { + "state": "Rhode Island", + "city": "Romeville" + } + }, + { + "id": 1339, + "name": "Snyder Rocha", + "gender": "male", + "age": 36, + "address": { + "state": "Colorado", + "city": "Cotopaxi" + } + }, + { + "id": 1340, + "name": "Lang Serrano", + "gender": "male", + "age": 73, + "address": { + "state": "New Mexico", + "city": "Homeworth" + } + }, + { + "id": 1341, + "name": "Lilly Mann", + "gender": "female", + "age": 36, + "address": { + "state": "Arizona", + "city": "Denio" + } + }, + { + "id": 1342, + "name": "Rojas Finch", + "gender": "male", + "age": 47, + "address": { + "state": "New York", + "city": "Brenton" + } + }, + { + "id": 1343, + "name": "Walls Lindsey", + "gender": "male", + "age": 34, + "address": { + "state": "South Carolina", + "city": "Wilmington" + } + }, + { + "id": 1344, + "name": "Suzette Tate", + "gender": "female", + "age": 36, + "address": { + "state": "Maryland", + "city": "Aurora" + } + }, + { + "id": 1345, + "name": "Salinas Mathis", + "gender": "male", + "age": 58, + "address": { + "state": "North Dakota", + "city": "Deercroft" + } + }, + { + "id": 1346, + "name": "Tricia Bennett", + "gender": "female", + "age": 52, + "address": { + "state": "Idaho", + "city": "Longoria" + } + }, + { + "id": 1347, + "name": "Maxine Hyde", + "gender": "female", + "age": 39, + "address": { + "state": "Nevada", + "city": "Kenmar" + } + }, + { + "id": 1348, + "name": "Marcia Shaw", + "gender": "female", + "age": 49, + "address": { + "state": "Pennsylvania", + "city": "Cade" + } + }, + { + "id": 1349, + "name": "Craft Carey", + "gender": "male", + "age": 56, + "address": { + "state": "New Jersey", + "city": "Rowe" + } + }, + { + "id": 1350, + "name": "Caitlin Hobbs", + "gender": "female", + "age": 24, + "address": { + "state": "Missouri", + "city": "Hampstead" + } + }, + { + "id": 1351, + "name": "Castillo Riley", + "gender": "male", + "age": 81, + "address": { + "state": "Wisconsin", + "city": "Babb" + } + }, + { + "id": 1352, + "name": "Hutchinson Crane", + "gender": "male", + "age": 21, + "address": { + "state": "Iowa", + "city": "Dola" + } + }, + { + "id": 1353, + "name": "April Caldwell", + "gender": "female", + "age": 50, + "address": { + "state": "Montana", + "city": "Worton" + } + }, + { + "id": 1354, + "name": "Love Silva", + "gender": "male", + "age": 52, + "address": { + "state": "Maine", + "city": "Joes" + } + }, + { + "id": 1355, + "name": "Betty Nielsen", + "gender": "female", + "age": 30, + "address": { + "state": "North Carolina", + "city": "Hackneyville" + } + }, + { + "id": 1356, + "name": "Lynette Dillon", + "gender": "female", + "age": 20, + "address": { + "state": "Kentucky", + "city": "Lopezo" + } + }, + { + "id": 1357, + "name": "Melisa Freeman", + "gender": "female", + "age": 35, + "address": { + "state": "Tennessee", + "city": "Tolu" + } + }, + { + "id": 1358, + "name": "Stark Davis", + "gender": "male", + "age": 27, + "address": { + "state": "Alabama", + "city": "Rivereno" + } + }, + { + "id": 1359, + "name": "John Dillard", + "gender": "female", + "age": 39, + "address": { + "state": "Hawaii", + "city": "Marysville" + } + }, + { + "id": 1360, + "name": "Clements Solis", + "gender": "male", + "age": 75, + "address": { + "state": "Connecticut", + "city": "Derwood" + } + }, + { + "id": 1361, + "name": "Fletcher Sims", + "gender": "male", + "age": 58, + "address": { + "state": "Kansas", + "city": "Ticonderoga" + } + }, + { + "id": 1362, + "name": "Hopper Shepherd", + "gender": "male", + "age": 20, + "address": { + "state": "West Virginia", + "city": "Boonville" + } + }, + { + "id": 1363, + "name": "Holden Santana", + "gender": "male", + "age": 34, + "address": { + "state": "Utah", + "city": "Marshall" + } + }, + { + "id": 1364, + "name": "Lambert Gay", + "gender": "male", + "age": 27, + "address": { + "state": "New Hampshire", + "city": "Fairhaven" + } + }, + { + "id": 1365, + "name": "Lacey Dean", + "gender": "female", + "age": 59, + "address": { + "state": "Delaware", + "city": "Limestone" + } + }, + { + "id": 1366, + "name": "Adrian Roman", + "gender": "female", + "age": 27, + "address": { + "state": "Massachusetts", + "city": "Norvelt" + } + }, + { + "id": 1367, + "name": "Faye Boyle", + "gender": "female", + "age": 31, + "address": { + "state": "Mississippi", + "city": "Utting" + } + }, + { + "id": 1368, + "name": "Howell Gonzales", + "gender": "male", + "age": 18, + "address": { + "state": "Oregon", + "city": "Whipholt" + } + }, + { + "id": 1369, + "name": "Phelps Hardin", + "gender": "male", + "age": 73, + "address": { + "state": "Georgia", + "city": "Shaft" + } + }, + { + "id": 1370, + "name": "Weaver Wilkinson", + "gender": "male", + "age": 56, + "address": { + "state": "California", + "city": "Rehrersburg" + } + }, + { + "id": 1371, + "name": "Berry Mendoza", + "gender": "male", + "age": 46, + "address": { + "state": "Texas", + "city": "Noblestown" + } + }, + { + "id": 1372, + "name": "Katina Mason", + "gender": "female", + "age": 62, + "address": { + "state": "Utah", + "city": "Freelandville" + } + }, + { + "id": 1373, + "name": "Gabrielle Martinez", + "gender": "female", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Chamberino" + } + }, + { + "id": 1374, + "name": "Meredith Carey", + "gender": "female", + "age": 63, + "address": { + "state": "Maryland", + "city": "Delco" + } + }, + { + "id": 1375, + "name": "Tucker Wilder", + "gender": "male", + "age": 57, + "address": { + "state": "Florida", + "city": "Kenwood" + } + }, + { + "id": 1376, + "name": "Cruz Wallace", + "gender": "male", + "age": 63, + "address": { + "state": "New York", + "city": "Vandiver" + } + }, + { + "id": 1377, + "name": "Banks Hayes", + "gender": "male", + "age": 81, + "address": { + "state": "Alabama", + "city": "Tilden" + } + }, + { + "id": 1378, + "name": "Amparo Dotson", + "gender": "female", + "age": 32, + "address": { + "state": "Montana", + "city": "Wescosville" + } + }, + { + "id": 1379, + "name": "Guthrie Sears", + "gender": "male", + "age": 74, + "address": { + "state": "Ohio", + "city": "Rivereno" + } + }, + { + "id": 1380, + "name": "Boyle Ramos", + "gender": "male", + "age": 26, + "address": { + "state": "Arkansas", + "city": "Jugtown" + } + }, + { + "id": 1381, + "name": "Sharon Conley", + "gender": "female", + "age": 18, + "address": { + "state": "Michigan", + "city": "Delshire" + } + }, + { + "id": 1382, + "name": "Branch Ball", + "gender": "male", + "age": 49, + "address": { + "state": "Kentucky", + "city": "Greenbush" + } + }, + { + "id": 1383, + "name": "Mildred Rodriguez", + "gender": "female", + "age": 77, + "address": { + "state": "Mississippi", + "city": "Calvary" + } + }, + { + "id": 1384, + "name": "Isabel Preston", + "gender": "female", + "age": 20, + "address": { + "state": "North Dakota", + "city": "Bascom" + } + }, + { + "id": 1385, + "name": "Erica Castillo", + "gender": "female", + "age": 30, + "address": { + "state": "Washington", + "city": "Bethany" + } + }, + { + "id": 1386, + "name": "Lindsey Burgess", + "gender": "female", + "age": 22, + "address": { + "state": "New Mexico", + "city": "Broadlands" + } + }, + { + "id": 1387, + "name": "Forbes Ferrell", + "gender": "male", + "age": 40, + "address": { + "state": "New Jersey", + "city": "Greenfields" + } + }, + { + "id": 1388, + "name": "Campos Walsh", + "gender": "male", + "age": 67, + "address": { + "state": "South Dakota", + "city": "Lydia" + } + }, + { + "id": 1389, + "name": "Debra Justice", + "gender": "female", + "age": 23, + "address": { + "state": "Nebraska", + "city": "Canoochee" + } + }, + { + "id": 1390, + "name": "Blevins Gibbs", + "gender": "male", + "age": 19, + "address": { + "state": "Texas", + "city": "Kapowsin" + } + }, + { + "id": 1391, + "name": "Odessa Bowers", + "gender": "female", + "age": 18, + "address": { + "state": "Connecticut", + "city": "Loretto" + } + }, + { + "id": 1392, + "name": "Ola Vaughan", + "gender": "female", + "age": 63, + "address": { + "state": "Nevada", + "city": "Soudan" + } + }, + { + "id": 1393, + "name": "Josephine Hines", + "gender": "female", + "age": 20, + "address": { + "state": "Delaware", + "city": "Mulberry" + } + }, + { + "id": 1394, + "name": "Weiss Leonard", + "gender": "male", + "age": 58, + "address": { + "state": "North Carolina", + "city": "Konterra" + } + }, + { + "id": 1395, + "name": "Spencer Vazquez", + "gender": "male", + "age": 50, + "address": { + "state": "Idaho", + "city": "Como" + } + }, + { + "id": 1396, + "name": "Sharpe Leon", + "gender": "male", + "age": 65, + "address": { + "state": "Arizona", + "city": "Fannett" + } + }, + { + "id": 1397, + "name": "Cole Baxter", + "gender": "male", + "age": 53, + "address": { + "state": "Minnesota", + "city": "Florence" + } + }, + { + "id": 1398, + "name": "Nichols Mclean", + "gender": "male", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Lowell" + } + }, + { + "id": 1399, + "name": "Holland Bowman", + "gender": "male", + "age": 73, + "address": { + "state": "Rhode Island", + "city": "Belmont" + } + }, + { + "id": 1400, + "name": "Burch Duke", + "gender": "male", + "age": 17, + "address": { + "state": "Indiana", + "city": "Trona" + } + }, + { + "id": 1401, + "name": "Crystal Dean", + "gender": "female", + "age": 67, + "address": { + "state": "Oregon", + "city": "Shindler" + } + }, + { + "id": 1402, + "name": "Juliana Griffith", + "gender": "female", + "age": 69, + "address": { + "state": "California", + "city": "Gadsden" + } + }, + { + "id": 1403, + "name": "Webb Marquez", + "gender": "male", + "age": 62, + "address": { + "state": "Colorado", + "city": "Waumandee" + } + }, + { + "id": 1404, + "name": "Myrtle Gross", + "gender": "female", + "age": 19, + "address": { + "state": "Iowa", + "city": "Knowlton" + } + }, + { + "id": 1405, + "name": "Jana House", + "gender": "female", + "age": 69, + "address": { + "state": "Illinois", + "city": "Navarre" + } + }, + { + "id": 1406, + "name": "Graciela Kerr", + "gender": "female", + "age": 34, + "address": { + "state": "Massachusetts", + "city": "Cliffside" + } + }, + { + "id": 1407, + "name": "Carrie Fox", + "gender": "female", + "age": 57, + "address": { + "state": "Maine", + "city": "Boykin" + } + }, + { + "id": 1408, + "name": "Gallegos Snyder", + "gender": "male", + "age": 22, + "address": { + "state": "Hawaii", + "city": "Manchester" + } + }, + { + "id": 1409, + "name": "Sargent Ware", + "gender": "male", + "age": 20, + "address": { + "state": "Wisconsin", + "city": "Verdi" + } + }, + { + "id": 1410, + "name": "Gena Mason", + "gender": "female", + "age": 24, + "address": { + "state": "Oklahoma", + "city": "Leming" + } + }, + { + "id": 1411, + "name": "Marian Cooke", + "gender": "female", + "age": 37, + "address": { + "state": "Alaska", + "city": "Clinton" + } + }, + { + "id": 1412, + "name": "Hayden Norris", + "gender": "male", + "age": 65, + "address": { + "state": "Virginia", + "city": "Fedora" + } + }, + { + "id": 1413, + "name": "Roberts Gillespie", + "gender": "male", + "age": 57, + "address": { + "state": "Georgia", + "city": "Limestone" + } + }, + { + "id": 1414, + "name": "Walters Nolan", + "gender": "male", + "age": 46, + "address": { + "state": "South Carolina", + "city": "Bowmansville" + } + }, + { + "id": 1415, + "name": "Dunn Raymond", + "gender": "male", + "age": 48, + "address": { + "state": "West Virginia", + "city": "Ventress" + } + }, + { + "id": 1416, + "name": "Faith Fuentes", + "gender": "female", + "age": 72, + "address": { + "state": "New Hampshire", + "city": "Waterview" + } + }, + { + "id": 1417, + "name": "Walker Leach", + "gender": "male", + "age": 37, + "address": { + "state": "Louisiana", + "city": "Madrid" + } + }, + { + "id": 1418, + "name": "Allen Nicholson", + "gender": "male", + "age": 19, + "address": { + "state": "Missouri", + "city": "Zortman" + } + }, + { + "id": 1419, + "name": "Belinda Nguyen", + "gender": "female", + "age": 66, + "address": { + "state": "Pennsylvania", + "city": "Fingerville" + } + }, + { + "id": 1420, + "name": "Koch Lott", + "gender": "male", + "age": 73, + "address": { + "state": "Kansas", + "city": "Cetronia" + } + }, + { + "id": 1421, + "name": "Rosetta Chapman", + "gender": "female", + "age": 25, + "address": { + "state": "Florida", + "city": "Saddlebrooke" + } + }, + { + "id": 1422, + "name": "Maude Ayala", + "gender": "female", + "age": 64, + "address": { + "state": "Idaho", + "city": "Goochland" + } + }, + { + "id": 1423, + "name": "Josefa Holcomb", + "gender": "female", + "age": 46, + "address": { + "state": "Vermont", + "city": "Bloomington" + } + }, + { + "id": 1424, + "name": "Angie Carson", + "gender": "female", + "age": 70, + "address": { + "state": "Mississippi", + "city": "Lafferty" + } + }, + { + "id": 1425, + "name": "Ruthie Conner", + "gender": "female", + "age": 24, + "address": { + "state": "Iowa", + "city": "Maury" + } + }, + { + "id": 1426, + "name": "Annie Castro", + "gender": "female", + "age": 18, + "address": { + "state": "New Jersey", + "city": "Conway" + } + }, + { + "id": 1427, + "name": "Gibbs Sandoval", + "gender": "male", + "age": 67, + "address": { + "state": "Utah", + "city": "Ivanhoe" + } + }, + { + "id": 1428, + "name": "Carolyn Shelton", + "gender": "female", + "age": 56, + "address": { + "state": "Hawaii", + "city": "Makena" + } + }, + { + "id": 1429, + "name": "Helena Reed", + "gender": "female", + "age": 20, + "address": { + "state": "Wyoming", + "city": "Elrama" + } + }, + { + "id": 1430, + "name": "Melinda Guthrie", + "gender": "female", + "age": 76, + "address": { + "state": "Kansas", + "city": "Guthrie" + } + }, + { + "id": 1431, + "name": "Short Dickson", + "gender": "male", + "age": 58, + "address": { + "state": "Nevada", + "city": "Fostoria" + } + }, + { + "id": 1432, + "name": "Montoya Parsons", + "gender": "male", + "age": 51, + "address": { + "state": "Connecticut", + "city": "Ahwahnee" + } + }, + { + "id": 1433, + "name": "Stefanie Mcdonald", + "gender": "female", + "age": 66, + "address": { + "state": "Illinois", + "city": "Westphalia" + } + }, + { + "id": 1434, + "name": "Heidi Craft", + "gender": "female", + "age": 28, + "address": { + "state": "Oklahoma", + "city": "Chalfant" + } + }, + { + "id": 1435, + "name": "Munoz Pitts", + "gender": "male", + "age": 68, + "address": { + "state": "South Carolina", + "city": "Lithium" + } + }, + { + "id": 1436, + "name": "Bauer Caldwell", + "gender": "male", + "age": 61, + "address": { + "state": "Delaware", + "city": "Yettem" + } + }, + { + "id": 1437, + "name": "Griffin Douglas", + "gender": "male", + "age": 23, + "address": { + "state": "Michigan", + "city": "Chloride" + } + }, + { + "id": 1438, + "name": "Marsha Estrada", + "gender": "female", + "age": 71, + "address": { + "state": "Louisiana", + "city": "Norvelt" + } + }, + { + "id": 1439, + "name": "Rene Hammond", + "gender": "female", + "age": 42, + "address": { + "state": "California", + "city": "Celeryville" + } + }, + { + "id": 1440, + "name": "Buck Berg", + "gender": "male", + "age": 31, + "address": { + "state": "Washington", + "city": "Dixonville" + } + }, + { + "id": 1441, + "name": "Tucker Mcfarland", + "gender": "male", + "age": 70, + "address": { + "state": "Arizona", + "city": "Belfair" + } + }, + { + "id": 1442, + "name": "Morton Mcintyre", + "gender": "male", + "age": 53, + "address": { + "state": "Alaska", + "city": "Dupuyer" + } + }, + { + "id": 1443, + "name": "Robbins Woods", + "gender": "male", + "age": 39, + "address": { + "state": "Ohio", + "city": "Hailesboro" + } + }, + { + "id": 1444, + "name": "Ivy Blevins", + "gender": "female", + "age": 73, + "address": { + "state": "Montana", + "city": "Chelsea" + } + }, + { + "id": 1445, + "name": "Stone Colon", + "gender": "male", + "age": 68, + "address": { + "state": "Alabama", + "city": "Campo" + } + }, + { + "id": 1446, + "name": "Tamika Hensley", + "gender": "female", + "age": 22, + "address": { + "state": "Missouri", + "city": "Idamay" + } + }, + { + "id": 1447, + "name": "Ortega Roy", + "gender": "male", + "age": 74, + "address": { + "state": "Tennessee", + "city": "Winesburg" + } + }, + { + "id": 1448, + "name": "Norton Ferrell", + "gender": "male", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Sunbury" + } + }, + { + "id": 1449, + "name": "Sellers Hewitt", + "gender": "male", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Bowmansville" + } + }, + { + "id": 1450, + "name": "Hayes Kennedy", + "gender": "male", + "age": 21, + "address": { + "state": "Rhode Island", + "city": "Weedville" + } + }, + { + "id": 1451, + "name": "Lopez Ortega", + "gender": "male", + "age": 33, + "address": { + "state": "South Dakota", + "city": "Collins" + } + }, + { + "id": 1452, + "name": "Sexton Everett", + "gender": "male", + "age": 40, + "address": { + "state": "Maine", + "city": "Elizaville" + } + }, + { + "id": 1453, + "name": "Marie Watts", + "gender": "female", + "age": 81, + "address": { + "state": "Georgia", + "city": "Kiskimere" + } + }, + { + "id": 1454, + "name": "Melva Whitley", + "gender": "female", + "age": 75, + "address": { + "state": "Minnesota", + "city": "Aberdeen" + } + }, + { + "id": 1455, + "name": "Rosella Peck", + "gender": "female", + "age": 43, + "address": { + "state": "Indiana", + "city": "Dowling" + } + }, + { + "id": 1456, + "name": "Brigitte Mcbride", + "gender": "female", + "age": 69, + "address": { + "state": "Arkansas", + "city": "Avoca" + } + }, + { + "id": 1457, + "name": "Collier Patton", + "gender": "male", + "age": 52, + "address": { + "state": "Kentucky", + "city": "Dixie" + } + }, + { + "id": 1458, + "name": "Janna Decker", + "gender": "female", + "age": 23, + "address": { + "state": "Wisconsin", + "city": "Kenvil" + } + }, + { + "id": 1459, + "name": "Billie Kramer", + "gender": "female", + "age": 26, + "address": { + "state": "North Dakota", + "city": "Vallonia" + } + }, + { + "id": 1460, + "name": "Dorothea Spence", + "gender": "female", + "age": 45, + "address": { + "state": "West Virginia", + "city": "Deercroft" + } + }, + { + "id": 1461, + "name": "Robertson Mercado", + "gender": "male", + "age": 50, + "address": { + "state": "Maryland", + "city": "Toftrees" + } + }, + { + "id": 1462, + "name": "Bethany Merritt", + "gender": "female", + "age": 37, + "address": { + "state": "Colorado", + "city": "Elliott" + } + }, + { + "id": 1463, + "name": "Cathy Sampson", + "gender": "female", + "age": 40, + "address": { + "state": "Nebraska", + "city": "Nescatunga" + } + }, + { + "id": 1464, + "name": "Trisha Adkins", + "gender": "female", + "age": 41, + "address": { + "state": "Texas", + "city": "Grenelefe" + } + }, + { + "id": 1465, + "name": "Sophia Navarro", + "gender": "female", + "age": 42, + "address": { + "state": "Oregon", + "city": "Ada" + } + }, + { + "id": 1466, + "name": "Franks Austin", + "gender": "male", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Waterford" + } + }, + { + "id": 1467, + "name": "Johanna Thompson", + "gender": "female", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Richford" + } + }, + { + "id": 1468, + "name": "Hendricks Nicholson", + "gender": "male", + "age": 48, + "address": { + "state": "New York", + "city": "Templeton" + } + }, + { + "id": 1469, + "name": "Chrystal Cruz", + "gender": "female", + "age": 62, + "address": { + "state": "New Hampshire", + "city": "Eureka" + } + }, + { + "id": 1470, + "name": "Clarissa Snider", + "gender": "female", + "age": 54, + "address": { + "state": "Oregon", + "city": "Seymour" + } + }, + { + "id": 1471, + "name": "Warren Waller", + "gender": "male", + "age": 71, + "address": { + "state": "Kansas", + "city": "Bartley" + } + }, + { + "id": 1472, + "name": "Milagros Parrish", + "gender": "female", + "age": 77, + "address": { + "state": "Utah", + "city": "Crawfordsville" + } + }, + { + "id": 1473, + "name": "Madden Holmes", + "gender": "male", + "age": 39, + "address": { + "state": "West Virginia", + "city": "Brookfield" + } + }, + { + "id": 1474, + "name": "Elsie Armstrong", + "gender": "female", + "age": 58, + "address": { + "state": "Maryland", + "city": "Turah" + } + }, + { + "id": 1475, + "name": "Rowland Hyde", + "gender": "male", + "age": 40, + "address": { + "state": "Missouri", + "city": "Coral" + } + }, + { + "id": 1476, + "name": "Solis Cummings", + "gender": "male", + "age": 64, + "address": { + "state": "Arkansas", + "city": "Lemoyne" + } + }, + { + "id": 1477, + "name": "Mindy Steele", + "gender": "female", + "age": 79, + "address": { + "state": "Wisconsin", + "city": "Deputy" + } + }, + { + "id": 1478, + "name": "Emerson Valentine", + "gender": "male", + "age": 73, + "address": { + "state": "Colorado", + "city": "Rodanthe" + } + }, + { + "id": 1479, + "name": "Wallace Roman", + "gender": "male", + "age": 75, + "address": { + "state": "Texas", + "city": "Crisman" + } + }, + { + "id": 1480, + "name": "Carey Hopkins", + "gender": "male", + "age": 17, + "address": { + "state": "Nebraska", + "city": "Genoa" + } + }, + { + "id": 1481, + "name": "Boyer Russell", + "gender": "male", + "age": 33, + "address": { + "state": "Massachusetts", + "city": "Bartonsville" + } + }, + { + "id": 1482, + "name": "Cooke Mckay", + "gender": "male", + "age": 54, + "address": { + "state": "North Dakota", + "city": "Kenvil" + } + }, + { + "id": 1483, + "name": "Janis Stanton", + "gender": "female", + "age": 64, + "address": { + "state": "Oklahoma", + "city": "Walker" + } + }, + { + "id": 1484, + "name": "Bobbie Mayer", + "gender": "female", + "age": 49, + "address": { + "state": "Iowa", + "city": "Joppa" + } + }, + { + "id": 1485, + "name": "April Lawrence", + "gender": "female", + "age": 71, + "address": { + "state": "Illinois", + "city": "Dubois" + } + }, + { + "id": 1486, + "name": "Dionne Day", + "gender": "female", + "age": 53, + "address": { + "state": "Georgia", + "city": "Riegelwood" + } + }, + { + "id": 1487, + "name": "Roman Hayden", + "gender": "male", + "age": 81, + "address": { + "state": "Hawaii", + "city": "Datil" + } + }, + { + "id": 1488, + "name": "Yvonne Casey", + "gender": "female", + "age": 40, + "address": { + "state": "New Jersey", + "city": "Dowling" + } + }, + { + "id": 1489, + "name": "Graciela Kerr", + "gender": "female", + "age": 27, + "address": { + "state": "Washington", + "city": "Rutherford" + } + }, + { + "id": 1490, + "name": "Margie Everett", + "gender": "female", + "age": 39, + "address": { + "state": "Montana", + "city": "Tetherow" + } + }, + { + "id": 1491, + "name": "Ramirez Williams", + "gender": "male", + "age": 51, + "address": { + "state": "New Hampshire", + "city": "Ironton" + } + }, + { + "id": 1492, + "name": "Jordan Blanchard", + "gender": "male", + "age": 81, + "address": { + "state": "Rhode Island", + "city": "Gasquet" + } + }, + { + "id": 1493, + "name": "Sanchez Rosa", + "gender": "male", + "age": 56, + "address": { + "state": "Michigan", + "city": "Fidelis" + } + }, + { + "id": 1494, + "name": "Bridges Jordan", + "gender": "male", + "age": 32, + "address": { + "state": "Alaska", + "city": "Elbert" + } + }, + { + "id": 1495, + "name": "Kari Martinez", + "gender": "female", + "age": 21, + "address": { + "state": "Ohio", + "city": "Grahamtown" + } + }, + { + "id": 1496, + "name": "Fran Wynn", + "gender": "female", + "age": 52, + "address": { + "state": "Louisiana", + "city": "Machias" + } + }, + { + "id": 1497, + "name": "Evans Nicholson", + "gender": "male", + "age": 26, + "address": { + "state": "Mississippi", + "city": "Windsor" + } + }, + { + "id": 1498, + "name": "Mabel Gardner", + "gender": "female", + "age": 58, + "address": { + "state": "Wyoming", + "city": "Golconda" + } + }, + { + "id": 1499, + "name": "Sheppard Delacruz", + "gender": "male", + "age": 41, + "address": { + "state": "Alabama", + "city": "Topanga" + } + }, + { + "id": 1500, + "name": "Chavez Warren", + "gender": "male", + "age": 59, + "address": { + "state": "Idaho", + "city": "Nadine" + } + }, + { + "id": 1501, + "name": "Cummings Witt", + "gender": "male", + "age": 18, + "address": { + "state": "New York", + "city": "Durham" + } + }, + { + "id": 1502, + "name": "Odom Oneil", + "gender": "male", + "age": 70, + "address": { + "state": "Florida", + "city": "Driftwood" + } + }, + { + "id": 1503, + "name": "Robertson Moon", + "gender": "male", + "age": 40, + "address": { + "state": "Connecticut", + "city": "Bangor" + } + }, + { + "id": 1504, + "name": "Townsend Foster", + "gender": "male", + "age": 65, + "address": { + "state": "Delaware", + "city": "Urie" + } + }, + { + "id": 1505, + "name": "Bender Adams", + "gender": "male", + "age": 61, + "address": { + "state": "Vermont", + "city": "Valmy" + } + }, + { + "id": 1506, + "name": "Sonia Ingram", + "gender": "female", + "age": 77, + "address": { + "state": "Nevada", + "city": "Forestburg" + } + }, + { + "id": 1507, + "name": "Mccall Woodward", + "gender": "male", + "age": 38, + "address": { + "state": "California", + "city": "Marion" + } + }, + { + "id": 1508, + "name": "Bridgett Lynn", + "gender": "female", + "age": 28, + "address": { + "state": "Arizona", + "city": "Churchill" + } + }, + { + "id": 1509, + "name": "Arnold Gamble", + "gender": "male", + "age": 61, + "address": { + "state": "Indiana", + "city": "Hampstead" + } + }, + { + "id": 1510, + "name": "Maddox Frost", + "gender": "male", + "age": 31, + "address": { + "state": "North Carolina", + "city": "Hilltop" + } + }, + { + "id": 1511, + "name": "Loraine Diaz", + "gender": "female", + "age": 44, + "address": { + "state": "Minnesota", + "city": "Ronco" + } + }, + { + "id": 1512, + "name": "Bernice Alexander", + "gender": "female", + "age": 79, + "address": { + "state": "Kentucky", + "city": "Valle" + } + }, + { + "id": 1513, + "name": "Atkins Frank", + "gender": "male", + "age": 57, + "address": { + "state": "Maine", + "city": "Twilight" + } + }, + { + "id": 1514, + "name": "Lorie Olson", + "gender": "female", + "age": 38, + "address": { + "state": "Virginia", + "city": "Broadlands" + } + }, + { + "id": 1515, + "name": "Ewing Myers", + "gender": "male", + "age": 24, + "address": { + "state": "Tennessee", + "city": "Gerber" + } + }, + { + "id": 1516, + "name": "Chaney Perkins", + "gender": "male", + "age": 78, + "address": { + "state": "Pennsylvania", + "city": "Cartwright" + } + }, + { + "id": 1517, + "name": "Nita Franco", + "gender": "female", + "age": 54, + "address": { + "state": "New Mexico", + "city": "Bascom" + } + }, + { + "id": 1518, + "name": "Doyle Golden", + "gender": "male", + "age": 52, + "address": { + "state": "South Dakota", + "city": "Bellamy" + } + }, + { + "id": 1519, + "name": "Vonda Boone", + "gender": "female", + "age": 49, + "address": { + "state": "Washington", + "city": "Wyano" + } + }, + { + "id": 1520, + "name": "Gena Solomon", + "gender": "female", + "age": 61, + "address": { + "state": "Oklahoma", + "city": "Wakulla" + } + }, + { + "id": 1521, + "name": "Colon Bruce", + "gender": "male", + "age": 78, + "address": { + "state": "Michigan", + "city": "Oneida" + } + }, + { + "id": 1522, + "name": "Boyd Sampson", + "gender": "male", + "age": 25, + "address": { + "state": "Wisconsin", + "city": "Brewster" + } + }, + { + "id": 1523, + "name": "Mckee Potter", + "gender": "male", + "age": 70, + "address": { + "state": "Minnesota", + "city": "Barronett" + } + }, + { + "id": 1524, + "name": "Hoover Weeks", + "gender": "male", + "age": 30, + "address": { + "state": "South Dakota", + "city": "Belmont" + } + }, + { + "id": 1525, + "name": "Brennan Christensen", + "gender": "male", + "age": 45, + "address": { + "state": "Tennessee", + "city": "Fairmount" + } + }, + { + "id": 1526, + "name": "Corina Hurley", + "gender": "female", + "age": 68, + "address": { + "state": "North Dakota", + "city": "Belva" + } + }, + { + "id": 1527, + "name": "Lucia Yang", + "gender": "female", + "age": 20, + "address": { + "state": "South Carolina", + "city": "Ernstville" + } + }, + { + "id": 1528, + "name": "Angie Young", + "gender": "female", + "age": 44, + "address": { + "state": "Kansas", + "city": "Columbus" + } + }, + { + "id": 1529, + "name": "Loretta Frye", + "gender": "female", + "age": 44, + "address": { + "state": "Arizona", + "city": "Camptown" + } + }, + { + "id": 1530, + "name": "Mildred Browning", + "gender": "female", + "age": 44, + "address": { + "state": "Alaska", + "city": "Murillo" + } + }, + { + "id": 1531, + "name": "Riddle Lynch", + "gender": "male", + "age": 43, + "address": { + "state": "Illinois", + "city": "Flintville" + } + }, + { + "id": 1532, + "name": "Cohen Mercer", + "gender": "male", + "age": 35, + "address": { + "state": "Wyoming", + "city": "Chemung" + } + }, + { + "id": 1533, + "name": "Bernice Wolfe", + "gender": "female", + "age": 75, + "address": { + "state": "Iowa", + "city": "Bison" + } + }, + { + "id": 1534, + "name": "Cobb Sheppard", + "gender": "male", + "age": 43, + "address": { + "state": "Texas", + "city": "Cartwright" + } + }, + { + "id": 1535, + "name": "Rosalie Hines", + "gender": "female", + "age": 79, + "address": { + "state": "New Hampshire", + "city": "Rivers" + } + }, + { + "id": 1536, + "name": "Norma Copeland", + "gender": "female", + "age": 28, + "address": { + "state": "New York", + "city": "Babb" + } + }, + { + "id": 1537, + "name": "Roslyn Quinn", + "gender": "female", + "age": 47, + "address": { + "state": "Virginia", + "city": "Devon" + } + }, + { + "id": 1538, + "name": "Ramirez Jacobs", + "gender": "male", + "age": 42, + "address": { + "state": "Ohio", + "city": "Roderfield" + } + }, + { + "id": 1539, + "name": "Yvonne Lara", + "gender": "female", + "age": 76, + "address": { + "state": "Florida", + "city": "Springhill" + } + }, + { + "id": 1540, + "name": "Carey Carr", + "gender": "male", + "age": 80, + "address": { + "state": "Montana", + "city": "Calpine" + } + }, + { + "id": 1541, + "name": "Nona Leblanc", + "gender": "female", + "age": 23, + "address": { + "state": "Pennsylvania", + "city": "Leland" + } + }, + { + "id": 1542, + "name": "Neva Brennan", + "gender": "female", + "age": 31, + "address": { + "state": "Delaware", + "city": "Calverton" + } + }, + { + "id": 1543, + "name": "Brandy Schwartz", + "gender": "female", + "age": 48, + "address": { + "state": "North Carolina", + "city": "Sheatown" + } + }, + { + "id": 1544, + "name": "Amalia Stein", + "gender": "female", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Graniteville" + } + }, + { + "id": 1545, + "name": "Daniel Schroeder", + "gender": "male", + "age": 50, + "address": { + "state": "California", + "city": "Topanga" + } + }, + { + "id": 1546, + "name": "Torres Dickerson", + "gender": "male", + "age": 79, + "address": { + "state": "West Virginia", + "city": "Newcastle" + } + }, + { + "id": 1547, + "name": "Norris Park", + "gender": "male", + "age": 73, + "address": { + "state": "Vermont", + "city": "Villarreal" + } + }, + { + "id": 1548, + "name": "Julia Battle", + "gender": "female", + "age": 61, + "address": { + "state": "Mississippi", + "city": "Lorraine" + } + }, + { + "id": 1549, + "name": "Pat Diaz", + "gender": "female", + "age": 61, + "address": { + "state": "New Jersey", + "city": "Harrison" + } + }, + { + "id": 1550, + "name": "Rutledge Strickland", + "gender": "male", + "age": 42, + "address": { + "state": "New Mexico", + "city": "Concho" + } + }, + { + "id": 1551, + "name": "Tia Mckinney", + "gender": "female", + "age": 42, + "address": { + "state": "Nebraska", + "city": "Wilmington" + } + }, + { + "id": 1552, + "name": "Sherman Watson", + "gender": "male", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Rehrersburg" + } + }, + { + "id": 1553, + "name": "Mcconnell Rutledge", + "gender": "male", + "age": 75, + "address": { + "state": "Kentucky", + "city": "Deseret" + } + }, + { + "id": 1554, + "name": "Jackie Pruitt", + "gender": "female", + "age": 46, + "address": { + "state": "Hawaii", + "city": "Sehili" + } + }, + { + "id": 1555, + "name": "Benjamin Hensley", + "gender": "male", + "age": 19, + "address": { + "state": "Alabama", + "city": "Finderne" + } + }, + { + "id": 1556, + "name": "Sharon Klein", + "gender": "female", + "age": 52, + "address": { + "state": "Maine", + "city": "Drytown" + } + }, + { + "id": 1557, + "name": "Hunt Moss", + "gender": "male", + "age": 67, + "address": { + "state": "Utah", + "city": "Rockbridge" + } + }, + { + "id": 1558, + "name": "Fuentes Morton", + "gender": "male", + "age": 75, + "address": { + "state": "Georgia", + "city": "Hollins" + } + }, + { + "id": 1559, + "name": "Vaughan Wilkinson", + "gender": "male", + "age": 52, + "address": { + "state": "Nevada", + "city": "Manila" + } + }, + { + "id": 1560, + "name": "Emily Leon", + "gender": "female", + "age": 42, + "address": { + "state": "Colorado", + "city": "Dellview" + } + }, + { + "id": 1561, + "name": "Gill Mccall", + "gender": "male", + "age": 56, + "address": { + "state": "Maryland", + "city": "Delco" + } + }, + { + "id": 1562, + "name": "Cathryn Mcintosh", + "gender": "female", + "age": 27, + "address": { + "state": "Connecticut", + "city": "Austinburg" + } + }, + { + "id": 1563, + "name": "Carson Pacheco", + "gender": "male", + "age": 69, + "address": { + "state": "Indiana", + "city": "Derwood" + } + }, + { + "id": 1564, + "name": "Harrison Roberts", + "gender": "male", + "age": 28, + "address": { + "state": "Rhode Island", + "city": "Rodman" + } + }, + { + "id": 1565, + "name": "Tamera Duke", + "gender": "female", + "age": 36, + "address": { + "state": "Arkansas", + "city": "Beason" + } + }, + { + "id": 1566, + "name": "Carlene Waters", + "gender": "female", + "age": 80, + "address": { + "state": "Oregon", + "city": "Wanship" + } + }, + { + "id": 1567, + "name": "Miranda Barnes", + "gender": "female", + "age": 63, + "address": { + "state": "Missouri", + "city": "Heil" + } + }, + { + "id": 1568, + "name": "Whitfield Matthews", + "gender": "male", + "age": 36, + "address": { + "state": "Arizona", + "city": "Sunbury" + } + }, + { + "id": 1569, + "name": "Hays Hendrix", + "gender": "male", + "age": 72, + "address": { + "state": "Kansas", + "city": "Chilton" + } + }, + { + "id": 1570, + "name": "Joy Fitzgerald", + "gender": "female", + "age": 48, + "address": { + "state": "Iowa", + "city": "Bloomington" + } + }, + { + "id": 1571, + "name": "Goff Vincent", + "gender": "male", + "age": 30, + "address": { + "state": "Nebraska", + "city": "Bluffview" + } + }, + { + "id": 1572, + "name": "Gordon Bryan", + "gender": "male", + "age": 59, + "address": { + "state": "Louisiana", + "city": "Alden" + } + }, + { + "id": 1573, + "name": "Hood Mccoy", + "gender": "male", + "age": 59, + "address": { + "state": "Rhode Island", + "city": "Seymour" + } + }, + { + "id": 1574, + "name": "Franklin Whitley", + "gender": "male", + "age": 73, + "address": { + "state": "Utah", + "city": "Eastvale" + } + }, + { + "id": 1575, + "name": "Alyson Kaufman", + "gender": "female", + "age": 43, + "address": { + "state": "North Dakota", + "city": "Farmington" + } + }, + { + "id": 1576, + "name": "Summer Hughes", + "gender": "female", + "age": 82, + "address": { + "state": "Colorado", + "city": "Ezel" + } + }, + { + "id": 1577, + "name": "Allison Page", + "gender": "male", + "age": 79, + "address": { + "state": "Ohio", + "city": "Templeton" + } + }, + { + "id": 1578, + "name": "Latisha Ortiz", + "gender": "female", + "age": 29, + "address": { + "state": "Wisconsin", + "city": "Levant" + } + }, + { + "id": 1579, + "name": "Frank Ferrell", + "gender": "male", + "age": 66, + "address": { + "state": "Vermont", + "city": "Cotopaxi" + } + }, + { + "id": 1580, + "name": "Beck Knapp", + "gender": "male", + "age": 64, + "address": { + "state": "Delaware", + "city": "Brogan" + } + }, + { + "id": 1581, + "name": "Kenya Callahan", + "gender": "female", + "age": 75, + "address": { + "state": "New Hampshire", + "city": "Glenshaw" + } + }, + { + "id": 1582, + "name": "Marian Herman", + "gender": "female", + "age": 64, + "address": { + "state": "Maryland", + "city": "Wells" + } + }, + { + "id": 1583, + "name": "Olson Neal", + "gender": "male", + "age": 47, + "address": { + "state": "Oklahoma", + "city": "Iberia" + } + }, + { + "id": 1584, + "name": "Macias Hyde", + "gender": "male", + "age": 29, + "address": { + "state": "Oregon", + "city": "Omar" + } + }, + { + "id": 1585, + "name": "Jessie Arnold", + "gender": "female", + "age": 26, + "address": { + "state": "Texas", + "city": "Freeburn" + } + }, + { + "id": 1586, + "name": "Rasmussen Perry", + "gender": "male", + "age": 77, + "address": { + "state": "New Mexico", + "city": "Hegins" + } + }, + { + "id": 1587, + "name": "Alma Eaton", + "gender": "female", + "age": 36, + "address": { + "state": "Minnesota", + "city": "Healy" + } + }, + { + "id": 1588, + "name": "Leigh Townsend", + "gender": "female", + "age": 42, + "address": { + "state": "Idaho", + "city": "Crown" + } + }, + { + "id": 1589, + "name": "Francisca Cabrera", + "gender": "female", + "age": 64, + "address": { + "state": "Connecticut", + "city": "Bascom" + } + }, + { + "id": 1590, + "name": "Maritza Frost", + "gender": "female", + "age": 54, + "address": { + "state": "Florida", + "city": "Utting" + } + }, + { + "id": 1591, + "name": "Curry Terrell", + "gender": "male", + "age": 26, + "address": { + "state": "Georgia", + "city": "Deltaville" + } + }, + { + "id": 1592, + "name": "Sweet Sheppard", + "gender": "male", + "age": 37, + "address": { + "state": "Nevada", + "city": "Manitou" + } + }, + { + "id": 1593, + "name": "Alberta Bates", + "gender": "female", + "age": 73, + "address": { + "state": "Indiana", + "city": "Kula" + } + }, + { + "id": 1594, + "name": "Nona Mcknight", + "gender": "female", + "age": 71, + "address": { + "state": "California", + "city": "Camino" + } + }, + { + "id": 1595, + "name": "Adams Reid", + "gender": "male", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Masthope" + } + }, + { + "id": 1596, + "name": "Sheree Velez", + "gender": "female", + "age": 50, + "address": { + "state": "West Virginia", + "city": "Day" + } + }, + { + "id": 1597, + "name": "Gonzalez Oneal", + "gender": "male", + "age": 38, + "address": { + "state": "South Dakota", + "city": "Calverton" + } + }, + { + "id": 1598, + "name": "Hardin Nelson", + "gender": "male", + "age": 22, + "address": { + "state": "Washington", + "city": "Wilsonia" + } + }, + { + "id": 1599, + "name": "Bradshaw Collier", + "gender": "male", + "age": 31, + "address": { + "state": "Mississippi", + "city": "Brownsville" + } + }, + { + "id": 1600, + "name": "Ella Spears", + "gender": "female", + "age": 78, + "address": { + "state": "Illinois", + "city": "Holcombe" + } + }, + { + "id": 1601, + "name": "Diann Sullivan", + "gender": "female", + "age": 30, + "address": { + "state": "Alaska", + "city": "Coleville" + } + }, + { + "id": 1602, + "name": "Galloway Blankenship", + "gender": "male", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Graball" + } + }, + { + "id": 1603, + "name": "Pugh Day", + "gender": "male", + "age": 43, + "address": { + "state": "Arkansas", + "city": "Fedora" + } + }, + { + "id": 1604, + "name": "Donaldson Mcguire", + "gender": "male", + "age": 67, + "address": { + "state": "North Carolina", + "city": "Greensburg" + } + }, + { + "id": 1605, + "name": "Aurelia Conway", + "gender": "female", + "age": 42, + "address": { + "state": "Michigan", + "city": "Sterling" + } + }, + { + "id": 1606, + "name": "Lottie Hancock", + "gender": "female", + "age": 52, + "address": { + "state": "Tennessee", + "city": "Sanborn" + } + }, + { + "id": 1607, + "name": "Patsy Schroeder", + "gender": "female", + "age": 48, + "address": { + "state": "Alabama", + "city": "Courtland" + } + }, + { + "id": 1608, + "name": "Robbins Kirkland", + "gender": "male", + "age": 19, + "address": { + "state": "New York", + "city": "Lowgap" + } + }, + { + "id": 1609, + "name": "Pamela Romero", + "gender": "female", + "age": 47, + "address": { + "state": "Hawaii", + "city": "Volta" + } + }, + { + "id": 1610, + "name": "Reilly Vinson", + "gender": "male", + "age": 30, + "address": { + "state": "Montana", + "city": "Carlos" + } + }, + { + "id": 1611, + "name": "Hooper Atkinson", + "gender": "male", + "age": 52, + "address": { + "state": "Wyoming", + "city": "Sabillasville" + } + }, + { + "id": 1612, + "name": "Carissa Waters", + "gender": "female", + "age": 78, + "address": { + "state": "South Carolina", + "city": "Neibert" + } + }, + { + "id": 1613, + "name": "Fry Schultz", + "gender": "male", + "age": 40, + "address": { + "state": "Kentucky", + "city": "Taycheedah" + } + }, + { + "id": 1614, + "name": "Guthrie Humphrey", + "gender": "male", + "age": 31, + "address": { + "state": "Missouri", + "city": "Vandiver" + } + }, + { + "id": 1615, + "name": "Higgins Shelton", + "gender": "male", + "age": 47, + "address": { + "state": "Maine", + "city": "Movico" + } + }, + { + "id": 1616, + "name": "Hattie Chan", + "gender": "female", + "age": 75, + "address": { + "state": "Virginia", + "city": "Belfair" + } + }, + { + "id": 1617, + "name": "Katrina Harrington", + "gender": "female", + "age": 68, + "address": { + "state": "Tennessee", + "city": "Kieler" + } + }, + { + "id": 1618, + "name": "Ratliff Valentine", + "gender": "male", + "age": 47, + "address": { + "state": "Oregon", + "city": "Beaverdale" + } + }, + { + "id": 1619, + "name": "Myrtle Carrillo", + "gender": "female", + "age": 53, + "address": { + "state": "California", + "city": "Watchtower" + } + }, + { + "id": 1620, + "name": "Carla Riddle", + "gender": "female", + "age": 77, + "address": { + "state": "Kansas", + "city": "Clarksburg" + } + }, + { + "id": 1621, + "name": "Obrien Mcclure", + "gender": "male", + "age": 77, + "address": { + "state": "Louisiana", + "city": "Lumberton" + } + }, + { + "id": 1622, + "name": "Bradford Lambert", + "gender": "male", + "age": 17, + "address": { + "state": "Montana", + "city": "Waverly" + } + }, + { + "id": 1623, + "name": "Walls Orr", + "gender": "male", + "age": 64, + "address": { + "state": "Wisconsin", + "city": "Greensburg" + } + }, + { + "id": 1624, + "name": "Oconnor Donovan", + "gender": "male", + "age": 32, + "address": { + "state": "Illinois", + "city": "Chaparrito" + } + }, + { + "id": 1625, + "name": "Glenda West", + "gender": "female", + "age": 44, + "address": { + "state": "South Carolina", + "city": "Datil" + } + }, + { + "id": 1626, + "name": "Finley Clark", + "gender": "male", + "age": 75, + "address": { + "state": "Iowa", + "city": "Leyner" + } + }, + { + "id": 1627, + "name": "Macias Henderson", + "gender": "male", + "age": 50, + "address": { + "state": "New Hampshire", + "city": "Bellamy" + } + }, + { + "id": 1628, + "name": "Soto Garrison", + "gender": "male", + "age": 54, + "address": { + "state": "Mississippi", + "city": "Roeville" + } + }, + { + "id": 1629, + "name": "Mary Sellers", + "gender": "female", + "age": 77, + "address": { + "state": "Kentucky", + "city": "Woodburn" + } + }, + { + "id": 1630, + "name": "Jeanette Payne", + "gender": "female", + "age": 68, + "address": { + "state": "New York", + "city": "Caberfae" + } + }, + { + "id": 1631, + "name": "Aline Dawson", + "gender": "female", + "age": 33, + "address": { + "state": "West Virginia", + "city": "Rosburg" + } + }, + { + "id": 1632, + "name": "Osborn Crawford", + "gender": "male", + "age": 39, + "address": { + "state": "Nevada", + "city": "Rockingham" + } + }, + { + "id": 1633, + "name": "Jeannette Peters", + "gender": "female", + "age": 30, + "address": { + "state": "North Carolina", + "city": "Nettie" + } + }, + { + "id": 1634, + "name": "Christie Neal", + "gender": "female", + "age": 81, + "address": { + "state": "Washington", + "city": "Ilchester" + } + }, + { + "id": 1635, + "name": "Tisha Wyatt", + "gender": "female", + "age": 17, + "address": { + "state": "Indiana", + "city": "Loma" + } + }, + { + "id": 1636, + "name": "Mia Velasquez", + "gender": "female", + "age": 30, + "address": { + "state": "Connecticut", + "city": "Grayhawk" + } + }, + { + "id": 1637, + "name": "Snider Pickett", + "gender": "male", + "age": 50, + "address": { + "state": "Arkansas", + "city": "Coral" + } + }, + { + "id": 1638, + "name": "Luna Nelson", + "gender": "male", + "age": 73, + "address": { + "state": "Virginia", + "city": "Valle" + } + }, + { + "id": 1639, + "name": "Marisol Jensen", + "gender": "female", + "age": 17, + "address": { + "state": "Nebraska", + "city": "Westerville" + } + }, + { + "id": 1640, + "name": "Bolton Porter", + "gender": "male", + "age": 36, + "address": { + "state": "New Jersey", + "city": "Eden" + } + }, + { + "id": 1641, + "name": "White Lindsey", + "gender": "male", + "age": 28, + "address": { + "state": "Alabama", + "city": "Stockwell" + } + }, + { + "id": 1642, + "name": "Erika Hoffman", + "gender": "female", + "age": 42, + "address": { + "state": "Massachusetts", + "city": "Brule" + } + }, + { + "id": 1643, + "name": "Schwartz Logan", + "gender": "male", + "age": 75, + "address": { + "state": "Florida", + "city": "Faxon" + } + }, + { + "id": 1644, + "name": "Trudy Schneider", + "gender": "female", + "age": 61, + "address": { + "state": "Colorado", + "city": "Golconda" + } + }, + { + "id": 1645, + "name": "Glenn Spears", + "gender": "male", + "age": 51, + "address": { + "state": "Wyoming", + "city": "Fannett" + } + }, + { + "id": 1646, + "name": "Valarie Gregory", + "gender": "female", + "age": 24, + "address": { + "state": "South Dakota", + "city": "Oasis" + } + }, + { + "id": 1647, + "name": "Marsh Mcdaniel", + "gender": "male", + "age": 66, + "address": { + "state": "Idaho", + "city": "Jacumba" + } + }, + { + "id": 1648, + "name": "Hilda Mcdowell", + "gender": "female", + "age": 68, + "address": { + "state": "Oklahoma", + "city": "Ellerslie" + } + }, + { + "id": 1649, + "name": "Hanson Jefferson", + "gender": "male", + "age": 49, + "address": { + "state": "Minnesota", + "city": "Temperanceville" + } + }, + { + "id": 1650, + "name": "Sarah Thompson", + "gender": "female", + "age": 48, + "address": { + "state": "Ohio", + "city": "Delco" + } + }, + { + "id": 1651, + "name": "Harriett Griffith", + "gender": "female", + "age": 64, + "address": { + "state": "Pennsylvania", + "city": "Herald" + } + }, + { + "id": 1652, + "name": "Emily Knowles", + "gender": "female", + "age": 75, + "address": { + "state": "Hawaii", + "city": "Nord" + } + }, + { + "id": 1653, + "name": "Esmeralda Case", + "gender": "female", + "age": 78, + "address": { + "state": "Rhode Island", + "city": "Allensworth" + } + }, + { + "id": 1654, + "name": "Bailey Tate", + "gender": "male", + "age": 30, + "address": { + "state": "Vermont", + "city": "Kilbourne" + } + }, + { + "id": 1655, + "name": "Russo Kent", + "gender": "male", + "age": 78, + "address": { + "state": "Alaska", + "city": "Oretta" + } + }, + { + "id": 1656, + "name": "Goodwin Sullivan", + "gender": "male", + "age": 41, + "address": { + "state": "Maine", + "city": "Bath" + } + }, + { + "id": 1657, + "name": "Cox Chen", + "gender": "male", + "age": 64, + "address": { + "state": "Maryland", + "city": "Byrnedale" + } + }, + { + "id": 1658, + "name": "Levine Alston", + "gender": "male", + "age": 39, + "address": { + "state": "Georgia", + "city": "Soham" + } + }, + { + "id": 1659, + "name": "Dale Monroe", + "gender": "male", + "age": 44, + "address": { + "state": "Missouri", + "city": "Murillo" + } + }, + { + "id": 1660, + "name": "Kellie Mcpherson", + "gender": "female", + "age": 65, + "address": { + "state": "Michigan", + "city": "Century" + } + }, + { + "id": 1661, + "name": "Mckay Hays", + "gender": "male", + "age": 80, + "address": { + "state": "Delaware", + "city": "Lawrence" + } + }, + { + "id": 1662, + "name": "Hurley Thornton", + "gender": "male", + "age": 39, + "address": { + "state": "Utah", + "city": "Foxworth" + } + }, + { + "id": 1663, + "name": "Wilcox Bowers", + "gender": "male", + "age": 74, + "address": { + "state": "Arizona", + "city": "Woodlands" + } + }, + { + "id": 1664, + "name": "Hodges Wade", + "gender": "male", + "age": 26, + "address": { + "state": "New Mexico", + "city": "Twilight" + } + }, + { + "id": 1665, + "name": "Wagner Butler", + "gender": "male", + "age": 19, + "address": { + "state": "Texas", + "city": "Dunlo" + } + }, + { + "id": 1666, + "name": "Curtis Reid", + "gender": "male", + "age": 77, + "address": { + "state": "Wisconsin", + "city": "Byrnedale" + } + }, + { + "id": 1667, + "name": "Rosa Patterson", + "gender": "female", + "age": 60, + "address": { + "state": "Alabama", + "city": "Sultana" + } + }, + { + "id": 1668, + "name": "Hughes Mclaughlin", + "gender": "male", + "age": 68, + "address": { + "state": "Delaware", + "city": "Westmoreland" + } + }, + { + "id": 1669, + "name": "Kirsten Pacheco", + "gender": "female", + "age": 39, + "address": { + "state": "New Hampshire", + "city": "Belleview" + } + }, + { + "id": 1670, + "name": "Vicky Ortiz", + "gender": "female", + "age": 54, + "address": { + "state": "Minnesota", + "city": "Mooresburg" + } + }, + { + "id": 1671, + "name": "Luna Collins", + "gender": "male", + "age": 34, + "address": { + "state": "Florida", + "city": "Sheatown" + } + }, + { + "id": 1672, + "name": "Donovan Gates", + "gender": "male", + "age": 40, + "address": { + "state": "Tennessee", + "city": "Gordon" + } + }, + { + "id": 1673, + "name": "Stella Park", + "gender": "female", + "age": 64, + "address": { + "state": "Louisiana", + "city": "Dale" + } + }, + { + "id": 1674, + "name": "Helena Wood", + "gender": "female", + "age": 51, + "address": { + "state": "Arkansas", + "city": "Lindcove" + } + }, + { + "id": 1675, + "name": "Valdez Douglas", + "gender": "male", + "age": 44, + "address": { + "state": "West Virginia", + "city": "Loveland" + } + }, + { + "id": 1676, + "name": "Greta Mullins", + "gender": "female", + "age": 67, + "address": { + "state": "Texas", + "city": "Neahkahnie" + } + }, + { + "id": 1677, + "name": "Weaver Rodgers", + "gender": "male", + "age": 77, + "address": { + "state": "Arizona", + "city": "Roland" + } + }, + { + "id": 1678, + "name": "Sharron Lloyd", + "gender": "female", + "age": 48, + "address": { + "state": "Connecticut", + "city": "Faywood" + } + }, + { + "id": 1679, + "name": "Barnett Moses", + "gender": "male", + "age": 27, + "address": { + "state": "South Dakota", + "city": "Wakulla" + } + }, + { + "id": 1680, + "name": "Britt Berry", + "gender": "male", + "age": 37, + "address": { + "state": "Michigan", + "city": "Harleigh" + } + }, + { + "id": 1681, + "name": "Jacquelyn Ellison", + "gender": "female", + "age": 78, + "address": { + "state": "Maine", + "city": "Clarksburg" + } + }, + { + "id": 1682, + "name": "Inez Ferrell", + "gender": "female", + "age": 21, + "address": { + "state": "Colorado", + "city": "Hollymead" + } + }, + { + "id": 1683, + "name": "Latoya Craig", + "gender": "female", + "age": 63, + "address": { + "state": "Utah", + "city": "Manchester" + } + }, + { + "id": 1684, + "name": "Shelley Reed", + "gender": "female", + "age": 38, + "address": { + "state": "Iowa", + "city": "Beaulieu" + } + }, + { + "id": 1685, + "name": "Landry Macias", + "gender": "male", + "age": 43, + "address": { + "state": "Alaska", + "city": "Stewart" + } + }, + { + "id": 1686, + "name": "Simpson Huff", + "gender": "male", + "age": 73, + "address": { + "state": "Vermont", + "city": "Tioga" + } + }, + { + "id": 1687, + "name": "Mooney Bray", + "gender": "male", + "age": 54, + "address": { + "state": "Idaho", + "city": "Blairstown" + } + }, + { + "id": 1688, + "name": "Hollie Chambers", + "gender": "female", + "age": 79, + "address": { + "state": "Mississippi", + "city": "Gardners" + } + }, + { + "id": 1689, + "name": "Alfreda Carr", + "gender": "female", + "age": 18, + "address": { + "state": "Oregon", + "city": "Berlin" + } + }, + { + "id": 1690, + "name": "Barker Robbins", + "gender": "male", + "age": 63, + "address": { + "state": "Nebraska", + "city": "Itmann" + } + }, + { + "id": 1691, + "name": "Valarie Kirby", + "gender": "female", + "age": 37, + "address": { + "state": "Pennsylvania", + "city": "Williston" + } + }, + { + "id": 1692, + "name": "Cooley Blackburn", + "gender": "male", + "age": 25, + "address": { + "state": "Virginia", + "city": "Wheaton" + } + }, + { + "id": 1693, + "name": "Miriam Ellis", + "gender": "female", + "age": 68, + "address": { + "state": "New Mexico", + "city": "Oasis" + } + }, + { + "id": 1694, + "name": "Hallie Page", + "gender": "female", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Bangor" + } + }, + { + "id": 1695, + "name": "Becker Tyler", + "gender": "male", + "age": 34, + "address": { + "state": "Washington", + "city": "Waiohinu" + } + }, + { + "id": 1696, + "name": "Debbie Swanson", + "gender": "female", + "age": 48, + "address": { + "state": "Hawaii", + "city": "Robbins" + } + }, + { + "id": 1697, + "name": "Naomi Livingston", + "gender": "female", + "age": 33, + "address": { + "state": "Wyoming", + "city": "Bourg" + } + }, + { + "id": 1698, + "name": "Whitfield Franco", + "gender": "male", + "age": 59, + "address": { + "state": "Massachusetts", + "city": "Lloyd" + } + }, + { + "id": 1699, + "name": "Summers Caldwell", + "gender": "male", + "age": 79, + "address": { + "state": "Nevada", + "city": "Brecon" + } + }, + { + "id": 1700, + "name": "Ortiz Stuart", + "gender": "male", + "age": 82, + "address": { + "state": "Kentucky", + "city": "Saranap" + } + }, + { + "id": 1701, + "name": "Jewel Eaton", + "gender": "female", + "age": 54, + "address": { + "state": "Maryland", + "city": "Emerald" + } + }, + { + "id": 1702, + "name": "Thompson Holland", + "gender": "male", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Lodoga" + } + }, + { + "id": 1703, + "name": "Carey Burt", + "gender": "male", + "age": 65, + "address": { + "state": "Georgia", + "city": "Iola" + } + }, + { + "id": 1704, + "name": "Pollard Kim", + "gender": "male", + "age": 54, + "address": { + "state": "Rhode Island", + "city": "Kieler" + } + }, + { + "id": 1705, + "name": "Monique Kane", + "gender": "female", + "age": 78, + "address": { + "state": "South Carolina", + "city": "Norwood" + } + }, + { + "id": 1706, + "name": "Mayra Velazquez", + "gender": "female", + "age": 40, + "address": { + "state": "Indiana", + "city": "Enlow" + } + }, + { + "id": 1707, + "name": "Craig Blanchard", + "gender": "male", + "age": 75, + "address": { + "state": "North Dakota", + "city": "Foscoe" + } + }, + { + "id": 1708, + "name": "Adeline Brown", + "gender": "female", + "age": 82, + "address": { + "state": "Montana", + "city": "Hailesboro" + } + }, + { + "id": 1709, + "name": "Gloria Barry", + "gender": "female", + "age": 66, + "address": { + "state": "Ohio", + "city": "Wildwood" + } + }, + { + "id": 1710, + "name": "West Rose", + "gender": "male", + "age": 25, + "address": { + "state": "Oklahoma", + "city": "Charco" + } + }, + { + "id": 1711, + "name": "Coffey Kent", + "gender": "male", + "age": 31, + "address": { + "state": "Kansas", + "city": "Leland" + } + }, + { + "id": 1712, + "name": "Deanna Black", + "gender": "female", + "age": 76, + "address": { + "state": "California", + "city": "Chumuckla" + } + }, + { + "id": 1713, + "name": "Baird Sanchez", + "gender": "male", + "age": 75, + "address": { + "state": "Missouri", + "city": "Ladera" + } + }, + { + "id": 1714, + "name": "Sheri Munoz", + "gender": "female", + "age": 45, + "address": { + "state": "New York", + "city": "Bedias" + } + }, + { + "id": 1715, + "name": "Knox Martinez", + "gender": "male", + "age": 60, + "address": { + "state": "South Carolina", + "city": "Lawrence" + } + }, + { + "id": 1716, + "name": "Ester Tran", + "gender": "female", + "age": 17, + "address": { + "state": "Indiana", + "city": "Belmont" + } + }, + { + "id": 1717, + "name": "Malinda Barker", + "gender": "female", + "age": 75, + "address": { + "state": "Georgia", + "city": "Falmouth" + } + }, + { + "id": 1718, + "name": "Meghan Kinney", + "gender": "female", + "age": 32, + "address": { + "state": "Virginia", + "city": "Coaldale" + } + }, + { + "id": 1719, + "name": "Sherry Carroll", + "gender": "female", + "age": 28, + "address": { + "state": "New Hampshire", + "city": "Hendersonville" + } + }, + { + "id": 1720, + "name": "Lane Patton", + "gender": "male", + "age": 79, + "address": { + "state": "South Dakota", + "city": "Wakarusa" + } + }, + { + "id": 1721, + "name": "Selena Bailey", + "gender": "female", + "age": 53, + "address": { + "state": "Tennessee", + "city": "Sattley" + } + }, + { + "id": 1722, + "name": "Francine Haney", + "gender": "female", + "age": 75, + "address": { + "state": "Delaware", + "city": "Hiko" + } + }, + { + "id": 1723, + "name": "Hoffman Bird", + "gender": "male", + "age": 34, + "address": { + "state": "Montana", + "city": "Brantleyville" + } + }, + { + "id": 1724, + "name": "Ochoa Page", + "gender": "male", + "age": 51, + "address": { + "state": "Idaho", + "city": "Eggertsville" + } + }, + { + "id": 1725, + "name": "Jeannette Washington", + "gender": "female", + "age": 56, + "address": { + "state": "New York", + "city": "Thomasville" + } + }, + { + "id": 1726, + "name": "Hancock Banks", + "gender": "male", + "age": 19, + "address": { + "state": "Florida", + "city": "Coral" + } + }, + { + "id": 1727, + "name": "Griffith Sims", + "gender": "male", + "age": 52, + "address": { + "state": "New Mexico", + "city": "Marion" + } + }, + { + "id": 1728, + "name": "Daisy Brady", + "gender": "female", + "age": 49, + "address": { + "state": "Minnesota", + "city": "Lowgap" + } + }, + { + "id": 1729, + "name": "Wooten Vargas", + "gender": "male", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Berlin" + } + }, + { + "id": 1730, + "name": "Cecilia Strong", + "gender": "female", + "age": 72, + "address": { + "state": "Arizona", + "city": "Balm" + } + }, + { + "id": 1731, + "name": "Rivas Rice", + "gender": "male", + "age": 58, + "address": { + "state": "Maine", + "city": "Murillo" + } + }, + { + "id": 1732, + "name": "Alexis Suarez", + "gender": "female", + "age": 27, + "address": { + "state": "West Virginia", + "city": "Clarence" + } + }, + { + "id": 1733, + "name": "Koch Phelps", + "gender": "male", + "age": 63, + "address": { + "state": "Iowa", + "city": "Sparkill" + } + }, + { + "id": 1734, + "name": "Maritza Holman", + "gender": "female", + "age": 46, + "address": { + "state": "California", + "city": "Magnolia" + } + }, + { + "id": 1735, + "name": "Cobb Ward", + "gender": "male", + "age": 30, + "address": { + "state": "Alaska", + "city": "Crenshaw" + } + }, + { + "id": 1736, + "name": "Rice Jarvis", + "gender": "male", + "age": 47, + "address": { + "state": "Oklahoma", + "city": "Hardyville" + } + }, + { + "id": 1737, + "name": "Bowers Warner", + "gender": "male", + "age": 35, + "address": { + "state": "Oregon", + "city": "Selma" + } + }, + { + "id": 1738, + "name": "Crosby Rojas", + "gender": "male", + "age": 53, + "address": { + "state": "Kentucky", + "city": "Fostoria" + } + }, + { + "id": 1739, + "name": "Mariana Sweeney", + "gender": "female", + "age": 55, + "address": { + "state": "Hawaii", + "city": "Katonah" + } + }, + { + "id": 1740, + "name": "Snider Malone", + "gender": "male", + "age": 55, + "address": { + "state": "Nebraska", + "city": "Westphalia" + } + }, + { + "id": 1741, + "name": "Valarie Landry", + "gender": "female", + "age": 41, + "address": { + "state": "Massachusetts", + "city": "Sanford" + } + }, + { + "id": 1742, + "name": "Marilyn Meyer", + "gender": "female", + "age": 73, + "address": { + "state": "Connecticut", + "city": "Columbus" + } + }, + { + "id": 1743, + "name": "Cara Garza", + "gender": "female", + "age": 36, + "address": { + "state": "Utah", + "city": "Waterford" + } + }, + { + "id": 1744, + "name": "Cameron Ford", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Cassel" + } + }, + { + "id": 1745, + "name": "Marks Farmer", + "gender": "male", + "age": 25, + "address": { + "state": "Colorado", + "city": "Maxville" + } + }, + { + "id": 1746, + "name": "Joyce Herrera", + "gender": "male", + "age": 47, + "address": { + "state": "North Dakota", + "city": "Robinson" + } + }, + { + "id": 1747, + "name": "Alyssa Buckner", + "gender": "female", + "age": 43, + "address": { + "state": "Wisconsin", + "city": "Vincent" + } + }, + { + "id": 1748, + "name": "Jody West", + "gender": "female", + "age": 23, + "address": { + "state": "Vermont", + "city": "Whitewater" + } + }, + { + "id": 1749, + "name": "Hallie King", + "gender": "female", + "age": 38, + "address": { + "state": "Louisiana", + "city": "Greenbackville" + } + }, + { + "id": 1750, + "name": "Yesenia Singleton", + "gender": "female", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Mulberry" + } + }, + { + "id": 1751, + "name": "Fulton Hill", + "gender": "male", + "age": 51, + "address": { + "state": "Washington", + "city": "Mayfair" + } + }, + { + "id": 1752, + "name": "Opal Vang", + "gender": "female", + "age": 74, + "address": { + "state": "Texas", + "city": "Kansas" + } + }, + { + "id": 1753, + "name": "Simpson Parker", + "gender": "male", + "age": 81, + "address": { + "state": "Mississippi", + "city": "Hartsville/Hartley" + } + }, + { + "id": 1754, + "name": "Aurelia Lynch", + "gender": "female", + "age": 64, + "address": { + "state": "Maryland", + "city": "Makena" + } + }, + { + "id": 1755, + "name": "Bobbi Hamilton", + "gender": "female", + "age": 62, + "address": { + "state": "Rhode Island", + "city": "Topanga" + } + }, + { + "id": 1756, + "name": "Kirby Crawford", + "gender": "male", + "age": 52, + "address": { + "state": "Ohio", + "city": "Sylvanite" + } + }, + { + "id": 1757, + "name": "Merrill Mcdonald", + "gender": "male", + "age": 24, + "address": { + "state": "Alabama", + "city": "Gorham" + } + }, + { + "id": 1758, + "name": "Fitzgerald Huber", + "gender": "male", + "age": 19, + "address": { + "state": "Missouri", + "city": "Cuylerville" + } + }, + { + "id": 1759, + "name": "Dora Becker", + "gender": "female", + "age": 55, + "address": { + "state": "Illinois", + "city": "Croom" + } + }, + { + "id": 1760, + "name": "Colette Andrews", + "gender": "female", + "age": 81, + "address": { + "state": "Nevada", + "city": "Snowville" + } + }, + { + "id": 1761, + "name": "Ashley Santos", + "gender": "female", + "age": 74, + "address": { + "state": "Michigan", + "city": "Davenport" + } + }, + { + "id": 1762, + "name": "Keisha Hodge", + "gender": "female", + "age": 63, + "address": { + "state": "Wyoming", + "city": "Babb" + } + }, + { + "id": 1763, + "name": "Kirsten Oneal", + "gender": "female", + "age": 72, + "address": { + "state": "Kansas", + "city": "Wescosville" + } + }, + { + "id": 1764, + "name": "Meyers Workman", + "gender": "male", + "age": 55, + "address": { + "state": "Kentucky", + "city": "Sidman" + } + }, + { + "id": 1765, + "name": "Elnora Warren", + "gender": "female", + "age": 68, + "address": { + "state": "Connecticut", + "city": "Chloride" + } + }, + { + "id": 1766, + "name": "Christy Robinson", + "gender": "female", + "age": 21, + "address": { + "state": "Arizona", + "city": "Russellville" + } + }, + { + "id": 1767, + "name": "Maura Ware", + "gender": "female", + "age": 80, + "address": { + "state": "South Carolina", + "city": "Dyckesville" + } + }, + { + "id": 1768, + "name": "Swanson Winters", + "gender": "male", + "age": 26, + "address": { + "state": "Alaska", + "city": "Devon" + } + }, + { + "id": 1769, + "name": "Margie Hebert", + "gender": "female", + "age": 75, + "address": { + "state": "Michigan", + "city": "Albrightsville" + } + }, + { + "id": 1770, + "name": "Carrie Blackwell", + "gender": "female", + "age": 35, + "address": { + "state": "Georgia", + "city": "Allendale" + } + }, + { + "id": 1771, + "name": "Conley Cash", + "gender": "male", + "age": 43, + "address": { + "state": "South Dakota", + "city": "Virgie" + } + }, + { + "id": 1772, + "name": "Woodward Drake", + "gender": "male", + "age": 43, + "address": { + "state": "New Jersey", + "city": "Laurelton" + } + }, + { + "id": 1773, + "name": "Crane Rivas", + "gender": "male", + "age": 30, + "address": { + "state": "Missouri", + "city": "Roeville" + } + }, + { + "id": 1774, + "name": "Kaye Reed", + "gender": "female", + "age": 56, + "address": { + "state": "Alabama", + "city": "Jenkinsville" + } + }, + { + "id": 1775, + "name": "Marylou Brown", + "gender": "female", + "age": 30, + "address": { + "state": "California", + "city": "Watrous" + } + }, + { + "id": 1776, + "name": "Norris Bauer", + "gender": "male", + "age": 23, + "address": { + "state": "Virginia", + "city": "Blodgett" + } + }, + { + "id": 1777, + "name": "Lupe Solis", + "gender": "female", + "age": 19, + "address": { + "state": "Ohio", + "city": "Williamson" + } + }, + { + "id": 1778, + "name": "Martinez Sheppard", + "gender": "male", + "age": 45, + "address": { + "state": "Florida", + "city": "Colton" + } + }, + { + "id": 1779, + "name": "Hardy Wilson", + "gender": "male", + "age": 17, + "address": { + "state": "Nevada", + "city": "Freeburn" + } + }, + { + "id": 1780, + "name": "Velazquez Wilcox", + "gender": "male", + "age": 58, + "address": { + "state": "Nebraska", + "city": "Golconda" + } + }, + { + "id": 1781, + "name": "Harmon Sparks", + "gender": "male", + "age": 32, + "address": { + "state": "Maryland", + "city": "Eden" + } + }, + { + "id": 1782, + "name": "Rios Grimes", + "gender": "male", + "age": 62, + "address": { + "state": "Washington", + "city": "Maxville" + } + }, + { + "id": 1783, + "name": "Maggie Browning", + "gender": "female", + "age": 45, + "address": { + "state": "Louisiana", + "city": "Tuttle" + } + }, + { + "id": 1784, + "name": "Pollard Wallace", + "gender": "male", + "age": 53, + "address": { + "state": "Idaho", + "city": "Catherine" + } + }, + { + "id": 1785, + "name": "Sonya Ayers", + "gender": "female", + "age": 41, + "address": { + "state": "New York", + "city": "Wawona" + } + }, + { + "id": 1786, + "name": "Lila Lamb", + "gender": "female", + "age": 82, + "address": { + "state": "Rhode Island", + "city": "Columbus" + } + }, + { + "id": 1787, + "name": "Wheeler Macdonald", + "gender": "male", + "age": 74, + "address": { + "state": "Vermont", + "city": "Lowell" + } + }, + { + "id": 1788, + "name": "Guerrero Brady", + "gender": "male", + "age": 65, + "address": { + "state": "Hawaii", + "city": "Matheny" + } + }, + { + "id": 1789, + "name": "Summer Dixon", + "gender": "female", + "age": 64, + "address": { + "state": "Pennsylvania", + "city": "Bainbridge" + } + }, + { + "id": 1790, + "name": "Alma Reilly", + "gender": "female", + "age": 54, + "address": { + "state": "West Virginia", + "city": "Whitestone" + } + }, + { + "id": 1791, + "name": "Hebert Delacruz", + "gender": "male", + "age": 52, + "address": { + "state": "Minnesota", + "city": "Belvoir" + } + }, + { + "id": 1792, + "name": "Muriel Knight", + "gender": "female", + "age": 32, + "address": { + "state": "Utah", + "city": "Falmouth" + } + }, + { + "id": 1793, + "name": "Janice Kline", + "gender": "female", + "age": 39, + "address": { + "state": "Indiana", + "city": "Stouchsburg" + } + }, + { + "id": 1794, + "name": "Gabriela Kelley", + "gender": "female", + "age": 31, + "address": { + "state": "Iowa", + "city": "Tuskahoma" + } + }, + { + "id": 1795, + "name": "Queen Whitaker", + "gender": "female", + "age": 31, + "address": { + "state": "Texas", + "city": "Witmer" + } + }, + { + "id": 1796, + "name": "Reid Caldwell", + "gender": "male", + "age": 79, + "address": { + "state": "North Carolina", + "city": "Riviera" + } + }, + { + "id": 1797, + "name": "Paul Noel", + "gender": "male", + "age": 64, + "address": { + "state": "Oregon", + "city": "Enetai" + } + }, + { + "id": 1798, + "name": "Jo Dyer", + "gender": "female", + "age": 25, + "address": { + "state": "Mississippi", + "city": "Wilsonia" + } + }, + { + "id": 1799, + "name": "Dorthy Hall", + "gender": "female", + "age": 67, + "address": { + "state": "Oklahoma", + "city": "Enlow" + } + }, + { + "id": 1800, + "name": "Nancy Combs", + "gender": "female", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Martell" + } + }, + { + "id": 1801, + "name": "Ebony Buchanan", + "gender": "female", + "age": 30, + "address": { + "state": "Maine", + "city": "Ribera" + } + }, + { + "id": 1802, + "name": "Prince Rivera", + "gender": "male", + "age": 47, + "address": { + "state": "Montana", + "city": "Freetown" + } + }, + { + "id": 1803, + "name": "Ruiz Wiggins", + "gender": "male", + "age": 47, + "address": { + "state": "Colorado", + "city": "Turah" + } + }, + { + "id": 1804, + "name": "Bryant Bryan", + "gender": "male", + "age": 20, + "address": { + "state": "Kansas", + "city": "Harrison" + } + }, + { + "id": 1805, + "name": "Cline Hughes", + "gender": "male", + "age": 50, + "address": { + "state": "New Mexico", + "city": "Kingstowne" + } + }, + { + "id": 1806, + "name": "Rosario Humphrey", + "gender": "female", + "age": 25, + "address": { + "state": "Massachusetts", + "city": "Vernon" + } + }, + { + "id": 1807, + "name": "Joy Neal", + "gender": "female", + "age": 22, + "address": { + "state": "Wisconsin", + "city": "Urbana" + } + }, + { + "id": 1808, + "name": "Hobbs Dickson", + "gender": "male", + "age": 80, + "address": { + "state": "North Dakota", + "city": "Delwood" + } + }, + { + "id": 1809, + "name": "Mccormick Downs", + "gender": "male", + "age": 43, + "address": { + "state": "Delaware", + "city": "Highland" + } + }, + { + "id": 1810, + "name": "Leann Black", + "gender": "female", + "age": 19, + "address": { + "state": "Illinois", + "city": "Elliott" + } + }, + { + "id": 1811, + "name": "Jacobson Lester", + "gender": "male", + "age": 17, + "address": { + "state": "Tennessee", + "city": "Holtville" + } + }, + { + "id": 1812, + "name": "Yesenia Nolan", + "gender": "female", + "age": 75, + "address": { + "state": "Wyoming", + "city": "Templeton" + } + }, + { + "id": 1813, + "name": "Bernice Chang", + "gender": "female", + "age": 26, + "address": { + "state": "Montana", + "city": "Walland" + } + }, + { + "id": 1814, + "name": "Shelly Pickett", + "gender": "female", + "age": 24, + "address": { + "state": "Oklahoma", + "city": "Heil" + } + }, + { + "id": 1815, + "name": "Lorene Reynolds", + "gender": "female", + "age": 49, + "address": { + "state": "West Virginia", + "city": "Kapowsin" + } + }, + { + "id": 1816, + "name": "Bentley Roberson", + "gender": "male", + "age": 72, + "address": { + "state": "Minnesota", + "city": "Ladera" + } + }, + { + "id": 1817, + "name": "Leblanc Hancock", + "gender": "male", + "age": 73, + "address": { + "state": "Hawaii", + "city": "Sardis" + } + }, + { + "id": 1818, + "name": "Christina Hooper", + "gender": "female", + "age": 52, + "address": { + "state": "Indiana", + "city": "Magnolia" + } + }, + { + "id": 1819, + "name": "Schultz Foster", + "gender": "male", + "age": 79, + "address": { + "state": "Delaware", + "city": "Hendersonville" + } + }, + { + "id": 1820, + "name": "Nannie Whitley", + "gender": "female", + "age": 74, + "address": { + "state": "Vermont", + "city": "Maybell" + } + }, + { + "id": 1821, + "name": "Maddox Russo", + "gender": "male", + "age": 57, + "address": { + "state": "Kentucky", + "city": "Vowinckel" + } + }, + { + "id": 1822, + "name": "Kerr Johns", + "gender": "male", + "age": 50, + "address": { + "state": "Alabama", + "city": "Leola" + } + }, + { + "id": 1823, + "name": "Caitlin Dorsey", + "gender": "female", + "age": 68, + "address": { + "state": "Florida", + "city": "Why" + } + }, + { + "id": 1824, + "name": "Alisha Ross", + "gender": "female", + "age": 59, + "address": { + "state": "Oregon", + "city": "Wyano" + } + }, + { + "id": 1825, + "name": "Hinton Boyd", + "gender": "male", + "age": 82, + "address": { + "state": "Utah", + "city": "Fostoria" + } + }, + { + "id": 1826, + "name": "May Davidson", + "gender": "male", + "age": 45, + "address": { + "state": "Georgia", + "city": "Macdona" + } + }, + { + "id": 1827, + "name": "Gould Lara", + "gender": "male", + "age": 77, + "address": { + "state": "Kansas", + "city": "Sylvanite" + } + }, + { + "id": 1828, + "name": "Black Dunn", + "gender": "male", + "age": 36, + "address": { + "state": "Alaska", + "city": "Dale" + } + }, + { + "id": 1829, + "name": "Lillie Bray", + "gender": "female", + "age": 33, + "address": { + "state": "Maine", + "city": "Suitland" + } + }, + { + "id": 1830, + "name": "Blankenship Spencer", + "gender": "male", + "age": 38, + "address": { + "state": "North Dakota", + "city": "Wright" + } + }, + { + "id": 1831, + "name": "Dean Howe", + "gender": "male", + "age": 25, + "address": { + "state": "Missouri", + "city": "Kanauga" + } + }, + { + "id": 1832, + "name": "Leslie Haynes", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Rivera" + } + }, + { + "id": 1833, + "name": "Jill Norman", + "gender": "female", + "age": 78, + "address": { + "state": "Illinois", + "city": "Fairmount" + } + }, + { + "id": 1834, + "name": "Kasey Gilmore", + "gender": "female", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Benson" + } + }, + { + "id": 1835, + "name": "Pam Harper", + "gender": "female", + "age": 72, + "address": { + "state": "California", + "city": "Calpine" + } + }, + { + "id": 1836, + "name": "Meadows Emerson", + "gender": "male", + "age": 65, + "address": { + "state": "Louisiana", + "city": "Stewart" + } + }, + { + "id": 1837, + "name": "Whitehead Brewer", + "gender": "male", + "age": 66, + "address": { + "state": "Connecticut", + "city": "Keyport" + } + }, + { + "id": 1838, + "name": "Russo Salazar", + "gender": "male", + "age": 62, + "address": { + "state": "South Dakota", + "city": "Dalton" + } + }, + { + "id": 1839, + "name": "Long Randall", + "gender": "male", + "age": 73, + "address": { + "state": "Virginia", + "city": "Deseret" + } + }, + { + "id": 1840, + "name": "Kelli Macias", + "gender": "female", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Fairview" + } + }, + { + "id": 1841, + "name": "Kathrine Cole", + "gender": "female", + "age": 22, + "address": { + "state": "Washington", + "city": "Thomasville" + } + }, + { + "id": 1842, + "name": "Hardy Cleveland", + "gender": "male", + "age": 40, + "address": { + "state": "Michigan", + "city": "Robbins" + } + }, + { + "id": 1843, + "name": "Helene Avila", + "gender": "female", + "age": 30, + "address": { + "state": "South Carolina", + "city": "Canby" + } + }, + { + "id": 1844, + "name": "Madeline Bonner", + "gender": "female", + "age": 53, + "address": { + "state": "Idaho", + "city": "Virgie" + } + }, + { + "id": 1845, + "name": "Grimes Tanner", + "gender": "male", + "age": 70, + "address": { + "state": "Arkansas", + "city": "Kerby" + } + }, + { + "id": 1846, + "name": "Marisa Peck", + "gender": "female", + "age": 29, + "address": { + "state": "Mississippi", + "city": "Albrightsville" + } + }, + { + "id": 1847, + "name": "Odessa Carter", + "gender": "female", + "age": 39, + "address": { + "state": "Massachusetts", + "city": "Lodoga" + } + }, + { + "id": 1848, + "name": "Marion Paul", + "gender": "female", + "age": 70, + "address": { + "state": "New York", + "city": "Lewis" + } + }, + { + "id": 1849, + "name": "Kelly Torres", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Salvo" + } + }, + { + "id": 1850, + "name": "Nona Mitchell", + "gender": "female", + "age": 65, + "address": { + "state": "Iowa", + "city": "Ironton" + } + }, + { + "id": 1851, + "name": "Hensley Hebert", + "gender": "male", + "age": 56, + "address": { + "state": "New Jersey", + "city": "Sterling" + } + }, + { + "id": 1852, + "name": "White Frank", + "gender": "male", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Crayne" + } + }, + { + "id": 1853, + "name": "Clarissa Larson", + "gender": "female", + "age": 27, + "address": { + "state": "Colorado", + "city": "Noxen" + } + }, + { + "id": 1854, + "name": "Ruiz Potts", + "gender": "male", + "age": 53, + "address": { + "state": "Wisconsin", + "city": "Dola" + } + }, + { + "id": 1855, + "name": "Wilkins Dominguez", + "gender": "male", + "age": 41, + "address": { + "state": "Maryland", + "city": "Clarksburg" + } + }, + { + "id": 1856, + "name": "Stephens Blackwell", + "gender": "male", + "age": 80, + "address": { + "state": "Texas", + "city": "Sheatown" + } + }, + { + "id": 1857, + "name": "Lucille Chavez", + "gender": "female", + "age": 53, + "address": { + "state": "Arizona", + "city": "Lookingglass" + } + }, + { + "id": 1858, + "name": "Chaney Snider", + "gender": "male", + "age": 53, + "address": { + "state": "Wyoming", + "city": "Camptown" + } + }, + { + "id": 1859, + "name": "Constance Solomon", + "gender": "female", + "age": 79, + "address": { + "state": "Nevada", + "city": "Saranap" + } + }, + { + "id": 1860, + "name": "Walters Cherry", + "gender": "male", + "age": 36, + "address": { + "state": "Nebraska", + "city": "Delshire" + } + }, + { + "id": 1861, + "name": "Florine Martin", + "gender": "female", + "age": 32, + "address": { + "state": "Ohio", + "city": "Oceola" + } + }, + { + "id": 1862, + "name": "Cabrera Burnett", + "gender": "male", + "age": 52, + "address": { + "state": "North Carolina", + "city": "Bend" + } + }, + { + "id": 1863, + "name": "Oconnor Tate", + "gender": "male", + "age": 67, + "address": { + "state": "Hawaii", + "city": "Hoagland" + } + }, + { + "id": 1864, + "name": "Effie Ballard", + "gender": "female", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Russellville" + } + }, + { + "id": 1865, + "name": "Whitley Pope", + "gender": "male", + "age": 60, + "address": { + "state": "Nevada", + "city": "Wyano" + } + }, + { + "id": 1866, + "name": "Hardy Salas", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Delshire" + } + }, + { + "id": 1867, + "name": "Hooper Leonard", + "gender": "male", + "age": 35, + "address": { + "state": "Arkansas", + "city": "Springhill" + } + }, + { + "id": 1868, + "name": "Selena Mccormick", + "gender": "female", + "age": 61, + "address": { + "state": "New Mexico", + "city": "Fairforest" + } + }, + { + "id": 1869, + "name": "Hester Conley", + "gender": "male", + "age": 72, + "address": { + "state": "Illinois", + "city": "Fairhaven" + } + }, + { + "id": 1870, + "name": "Alice Valentine", + "gender": "female", + "age": 33, + "address": { + "state": "Rhode Island", + "city": "Wescosville" + } + }, + { + "id": 1871, + "name": "Robinson Barnes", + "gender": "male", + "age": 33, + "address": { + "state": "Iowa", + "city": "Maybell" + } + }, + { + "id": 1872, + "name": "Marguerite Smith", + "gender": "female", + "age": 60, + "address": { + "state": "Arizona", + "city": "Whitewater" + } + }, + { + "id": 1873, + "name": "Katharine French", + "gender": "female", + "age": 38, + "address": { + "state": "Minnesota", + "city": "Virgie" + } + }, + { + "id": 1874, + "name": "Shauna Whitley", + "gender": "female", + "age": 58, + "address": { + "state": "Oklahoma", + "city": "Cucumber" + } + }, + { + "id": 1875, + "name": "Prince Leon", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Norwood" + } + }, + { + "id": 1876, + "name": "Benita Barron", + "gender": "female", + "age": 49, + "address": { + "state": "California", + "city": "Belva" + } + }, + { + "id": 1877, + "name": "Erma Hughes", + "gender": "female", + "age": 49, + "address": { + "state": "Maryland", + "city": "Moscow" + } + }, + { + "id": 1878, + "name": "Kendra Mercer", + "gender": "female", + "age": 26, + "address": { + "state": "North Dakota", + "city": "Yorklyn" + } + }, + { + "id": 1879, + "name": "Kate Ruiz", + "gender": "female", + "age": 55, + "address": { + "state": "Washington", + "city": "Belleview" + } + }, + { + "id": 1880, + "name": "Adrian Cole", + "gender": "female", + "age": 22, + "address": { + "state": "Virginia", + "city": "Felt" + } + }, + { + "id": 1881, + "name": "Maribel Edwards", + "gender": "female", + "age": 77, + "address": { + "state": "South Carolina", + "city": "Caspar" + } + }, + { + "id": 1882, + "name": "Mullen Woods", + "gender": "male", + "age": 64, + "address": { + "state": "Florida", + "city": "Grapeview" + } + }, + { + "id": 1883, + "name": "Mason Briggs", + "gender": "male", + "age": 71, + "address": { + "state": "Connecticut", + "city": "Berwind" + } + }, + { + "id": 1884, + "name": "Elisabeth David", + "gender": "female", + "age": 54, + "address": { + "state": "Maine", + "city": "Crayne" + } + }, + { + "id": 1885, + "name": "Reba Cameron", + "gender": "female", + "age": 77, + "address": { + "state": "Wyoming", + "city": "Temperanceville" + } + }, + { + "id": 1886, + "name": "Rachael Pace", + "gender": "female", + "age": 55, + "address": { + "state": "Kentucky", + "city": "Munjor" + } + }, + { + "id": 1887, + "name": "Acevedo Stafford", + "gender": "male", + "age": 42, + "address": { + "state": "Vermont", + "city": "Machias" + } + }, + { + "id": 1888, + "name": "Myrtle Berry", + "gender": "female", + "age": 37, + "address": { + "state": "Indiana", + "city": "Kent" + } + }, + { + "id": 1889, + "name": "Ratliff Beard", + "gender": "male", + "age": 80, + "address": { + "state": "Missouri", + "city": "Riceville" + } + }, + { + "id": 1890, + "name": "Nina Ashley", + "gender": "female", + "age": 59, + "address": { + "state": "Georgia", + "city": "Eggertsville" + } + }, + { + "id": 1891, + "name": "Benton Best", + "gender": "male", + "age": 48, + "address": { + "state": "Utah", + "city": "Kennedyville" + } + }, + { + "id": 1892, + "name": "Annie Wallace", + "gender": "female", + "age": 58, + "address": { + "state": "Mississippi", + "city": "Chalfant" + } + }, + { + "id": 1893, + "name": "Shepard Travis", + "gender": "male", + "age": 32, + "address": { + "state": "New Hampshire", + "city": "Irwin" + } + }, + { + "id": 1894, + "name": "Cathy Neal", + "gender": "female", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Linwood" + } + }, + { + "id": 1895, + "name": "Carole Foley", + "gender": "female", + "age": 76, + "address": { + "state": "Ohio", + "city": "Omar" + } + }, + { + "id": 1896, + "name": "Madeleine Russo", + "gender": "female", + "age": 42, + "address": { + "state": "Montana", + "city": "Torboy" + } + }, + { + "id": 1897, + "name": "Bessie Coleman", + "gender": "female", + "age": 18, + "address": { + "state": "Louisiana", + "city": "Coyote" + } + }, + { + "id": 1898, + "name": "Guzman Nicholson", + "gender": "male", + "age": 38, + "address": { + "state": "West Virginia", + "city": "Herlong" + } + }, + { + "id": 1899, + "name": "Marietta Sanders", + "gender": "female", + "age": 20, + "address": { + "state": "Colorado", + "city": "Churchill" + } + }, + { + "id": 1900, + "name": "Nunez Phelps", + "gender": "male", + "age": 50, + "address": { + "state": "Massachusetts", + "city": "Kraemer" + } + }, + { + "id": 1901, + "name": "Hallie Wilkinson", + "gender": "female", + "age": 52, + "address": { + "state": "Delaware", + "city": "Williston" + } + }, + { + "id": 1902, + "name": "Haley Chavez", + "gender": "female", + "age": 31, + "address": { + "state": "Oregon", + "city": "Lewis" + } + }, + { + "id": 1903, + "name": "Holmes Dawson", + "gender": "male", + "age": 30, + "address": { + "state": "South Dakota", + "city": "Makena" + } + }, + { + "id": 1904, + "name": "Houston Mueller", + "gender": "male", + "age": 35, + "address": { + "state": "Nebraska", + "city": "Chical" + } + }, + { + "id": 1905, + "name": "Atkinson Barrera", + "gender": "male", + "age": 63, + "address": { + "state": "Idaho", + "city": "Hendersonville" + } + }, + { + "id": 1906, + "name": "Ina Bartlett", + "gender": "female", + "age": 52, + "address": { + "state": "Alaska", + "city": "Jessie" + } + }, + { + "id": 1907, + "name": "Lindsey Alvarado", + "gender": "male", + "age": 65, + "address": { + "state": "Kansas", + "city": "Cornucopia" + } + }, + { + "id": 1908, + "name": "Yang Richmond", + "gender": "male", + "age": 26, + "address": { + "state": "Tennessee", + "city": "Deseret" + } + }, + { + "id": 1909, + "name": "Darlene Maynard", + "gender": "female", + "age": 22, + "address": { + "state": "Texas", + "city": "Enoree" + } + }, + { + "id": 1910, + "name": "Burton Hopkins", + "gender": "male", + "age": 62, + "address": { + "state": "Alabama", + "city": "Outlook" + } + }, + { + "id": 1911, + "name": "Dillard Weaver", + "gender": "male", + "age": 21, + "address": { + "state": "Maine", + "city": "Sugartown" + } + }, + { + "id": 1912, + "name": "Cassandra Blackburn", + "gender": "female", + "age": 19, + "address": { + "state": "Missouri", + "city": "Loomis" + } + }, + { + "id": 1913, + "name": "Caitlin Herman", + "gender": "female", + "age": 22, + "address": { + "state": "Idaho", + "city": "Osmond" + } + }, + { + "id": 1914, + "name": "Hopkins Wall", + "gender": "male", + "age": 19, + "address": { + "state": "New York", + "city": "Bethpage" + } + }, + { + "id": 1915, + "name": "Bethany Solis", + "gender": "female", + "age": 31, + "address": { + "state": "Alaska", + "city": "Detroit" + } + }, + { + "id": 1916, + "name": "Sims Delacruz", + "gender": "male", + "age": 58, + "address": { + "state": "Montana", + "city": "Churchill" + } + }, + { + "id": 1917, + "name": "Clarke Dotson", + "gender": "male", + "age": 77, + "address": { + "state": "Louisiana", + "city": "Waterford" + } + }, + { + "id": 1918, + "name": "Herminia Booker", + "gender": "female", + "age": 35, + "address": { + "state": "Ohio", + "city": "Boyd" + } + }, + { + "id": 1919, + "name": "Michael Fitzpatrick", + "gender": "male", + "age": 38, + "address": { + "state": "Minnesota", + "city": "Stockwell" + } + }, + { + "id": 1920, + "name": "Conley Alston", + "gender": "male", + "age": 56, + "address": { + "state": "Wyoming", + "city": "Snyderville" + } + }, + { + "id": 1921, + "name": "Katie Kirkland", + "gender": "female", + "age": 23, + "address": { + "state": "New Hampshire", + "city": "Fredericktown" + } + }, + { + "id": 1922, + "name": "Therese Gay", + "gender": "female", + "age": 21, + "address": { + "state": "Washington", + "city": "Elrama" + } + }, + { + "id": 1923, + "name": "Cindy Bailey", + "gender": "female", + "age": 56, + "address": { + "state": "Iowa", + "city": "Gardiner" + } + }, + { + "id": 1924, + "name": "Cherie Stevens", + "gender": "female", + "age": 34, + "address": { + "state": "South Dakota", + "city": "Comptche" + } + }, + { + "id": 1925, + "name": "Linda Schultz", + "gender": "female", + "age": 75, + "address": { + "state": "California", + "city": "Cotopaxi" + } + }, + { + "id": 1926, + "name": "Cara Brooks", + "gender": "female", + "age": 49, + "address": { + "state": "Florida", + "city": "Yettem" + } + }, + { + "id": 1927, + "name": "Erica Green", + "gender": "female", + "age": 31, + "address": { + "state": "New Mexico", + "city": "Hachita" + } + }, + { + "id": 1928, + "name": "Glass Humphrey", + "gender": "male", + "age": 60, + "address": { + "state": "Mississippi", + "city": "Lupton" + } + }, + { + "id": 1929, + "name": "Harriett Payne", + "gender": "female", + "age": 22, + "address": { + "state": "North Carolina", + "city": "Starks" + } + }, + { + "id": 1930, + "name": "Mckenzie Osborne", + "gender": "male", + "age": 66, + "address": { + "state": "Kansas", + "city": "Deercroft" + } + }, + { + "id": 1931, + "name": "Kristen Giles", + "gender": "female", + "age": 51, + "address": { + "state": "Tennessee", + "city": "Rockhill" + } + }, + { + "id": 1932, + "name": "Conrad Roth", + "gender": "male", + "age": 32, + "address": { + "state": "Utah", + "city": "Brooktrails" + } + }, + { + "id": 1933, + "name": "Flossie Vaughn", + "gender": "female", + "age": 52, + "address": { + "state": "Oklahoma", + "city": "Marshall" + } + }, + { + "id": 1934, + "name": "Mcmahon House", + "gender": "male", + "age": 26, + "address": { + "state": "Alabama", + "city": "Coalmont" + } + }, + { + "id": 1935, + "name": "Margaret Massey", + "gender": "female", + "age": 67, + "address": { + "state": "New Jersey", + "city": "Waterloo" + } + }, + { + "id": 1936, + "name": "Kaitlin Ingram", + "gender": "female", + "age": 21, + "address": { + "state": "Wisconsin", + "city": "Ernstville" + } + }, + { + "id": 1937, + "name": "Daisy Burns", + "gender": "female", + "age": 28, + "address": { + "state": "Hawaii", + "city": "Imperial" + } + }, + { + "id": 1938, + "name": "Charmaine Gutierrez", + "gender": "female", + "age": 27, + "address": { + "state": "Vermont", + "city": "Edinburg" + } + }, + { + "id": 1939, + "name": "Garza Blair", + "gender": "male", + "age": 69, + "address": { + "state": "Virginia", + "city": "Morgandale" + } + }, + { + "id": 1940, + "name": "Celina Rios", + "gender": "female", + "age": 45, + "address": { + "state": "Nevada", + "city": "Keyport" + } + }, + { + "id": 1941, + "name": "Cameron Kidd", + "gender": "male", + "age": 47, + "address": { + "state": "Maryland", + "city": "Charco" + } + }, + { + "id": 1942, + "name": "Tillman Rush", + "gender": "male", + "age": 81, + "address": { + "state": "Kentucky", + "city": "Highland" + } + }, + { + "id": 1943, + "name": "Sabrina Carson", + "gender": "female", + "age": 53, + "address": { + "state": "North Dakota", + "city": "Gouglersville" + } + }, + { + "id": 1944, + "name": "Lucile Goodwin", + "gender": "female", + "age": 72, + "address": { + "state": "Colorado", + "city": "Muir" + } + }, + { + "id": 1945, + "name": "Murphy Hill", + "gender": "male", + "age": 55, + "address": { + "state": "Oregon", + "city": "Loma" + } + }, + { + "id": 1946, + "name": "Callie Hogan", + "gender": "female", + "age": 51, + "address": { + "state": "Michigan", + "city": "Movico" + } + }, + { + "id": 1947, + "name": "Bette Gould", + "gender": "female", + "age": 23, + "address": { + "state": "Nebraska", + "city": "Chase" + } + }, + { + "id": 1948, + "name": "Rachelle Wyatt", + "gender": "female", + "age": 36, + "address": { + "state": "Massachusetts", + "city": "Glidden" + } + }, + { + "id": 1949, + "name": "Kirk Frye", + "gender": "male", + "age": 37, + "address": { + "state": "Rhode Island", + "city": "Sehili" + } + }, + { + "id": 1950, + "name": "Carey Bradford", + "gender": "male", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Bedias" + } + }, + { + "id": 1951, + "name": "Elaine Miranda", + "gender": "female", + "age": 37, + "address": { + "state": "South Carolina", + "city": "Hoagland" + } + }, + { + "id": 1952, + "name": "Ellen Parks", + "gender": "female", + "age": 69, + "address": { + "state": "Connecticut", + "city": "Libertytown" + } + }, + { + "id": 1953, + "name": "Selma Henson", + "gender": "female", + "age": 39, + "address": { + "state": "Arizona", + "city": "Motley" + } + }, + { + "id": 1954, + "name": "Kelly Brady", + "gender": "male", + "age": 56, + "address": { + "state": "Arkansas", + "city": "Kilbourne" + } + }, + { + "id": 1955, + "name": "Sonja Ruiz", + "gender": "female", + "age": 57, + "address": { + "state": "Delaware", + "city": "Aguila" + } + }, + { + "id": 1956, + "name": "Albert Hayes", + "gender": "male", + "age": 38, + "address": { + "state": "Indiana", + "city": "Marne" + } + }, + { + "id": 1957, + "name": "Lottie Potts", + "gender": "female", + "age": 60, + "address": { + "state": "Texas", + "city": "Rossmore" + } + }, + { + "id": 1958, + "name": "Jones Holden", + "gender": "male", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Rose" + } + }, + { + "id": 1959, + "name": "Mccormick Barr", + "gender": "male", + "age": 45, + "address": { + "state": "Georgia", + "city": "Fowlerville" + } + }, + { + "id": 1960, + "name": "Cain Austin", + "gender": "male", + "age": 35, + "address": { + "state": "Massachusetts", + "city": "Maplewood" + } + }, + { + "id": 1961, + "name": "Mitchell Harvey", + "gender": "male", + "age": 62, + "address": { + "state": "Virginia", + "city": "Warren" + } + }, + { + "id": 1962, + "name": "Prince Charles", + "gender": "male", + "age": 20, + "address": { + "state": "Mississippi", + "city": "Aguila" + } + }, + { + "id": 1963, + "name": "Leon Horton", + "gender": "male", + "age": 76, + "address": { + "state": "Nevada", + "city": "Grahamtown" + } + }, + { + "id": 1964, + "name": "Victoria Sanders", + "gender": "female", + "age": 64, + "address": { + "state": "California", + "city": "Clarktown" + } + }, + { + "id": 1965, + "name": "Theresa Pugh", + "gender": "female", + "age": 82, + "address": { + "state": "Minnesota", + "city": "Soudan" + } + }, + { + "id": 1966, + "name": "Lott Shields", + "gender": "male", + "age": 30, + "address": { + "state": "Hawaii", + "city": "Kidder" + } + }, + { + "id": 1967, + "name": "Gould Villarreal", + "gender": "male", + "age": 71, + "address": { + "state": "Texas", + "city": "Dixie" + } + }, + { + "id": 1968, + "name": "Marci Rowland", + "gender": "female", + "age": 29, + "address": { + "state": "South Carolina", + "city": "Orviston" + } + }, + { + "id": 1969, + "name": "Martha Cummings", + "gender": "female", + "age": 79, + "address": { + "state": "Michigan", + "city": "Alden" + } + }, + { + "id": 1970, + "name": "Leann Stanton", + "gender": "female", + "age": 59, + "address": { + "state": "Delaware", + "city": "Virgie" + } + }, + { + "id": 1971, + "name": "Stuart Massey", + "gender": "male", + "age": 55, + "address": { + "state": "Maryland", + "city": "Mapletown" + } + }, + { + "id": 1972, + "name": "Chavez Christensen", + "gender": "male", + "age": 64, + "address": { + "state": "Alabama", + "city": "Imperial" + } + }, + { + "id": 1973, + "name": "Rachelle Fox", + "gender": "female", + "age": 32, + "address": { + "state": "Kentucky", + "city": "Fairlee" + } + }, + { + "id": 1974, + "name": "Terra Jacobs", + "gender": "female", + "age": 73, + "address": { + "state": "North Carolina", + "city": "Laurelton" + } + }, + { + "id": 1975, + "name": "Hillary Mccarty", + "gender": "female", + "age": 27, + "address": { + "state": "Illinois", + "city": "Bowmansville" + } + }, + { + "id": 1976, + "name": "Kelly Barrera", + "gender": "male", + "age": 21, + "address": { + "state": "New Mexico", + "city": "Berwind" + } + }, + { + "id": 1977, + "name": "Greene Alston", + "gender": "male", + "age": 68, + "address": { + "state": "Nebraska", + "city": "Rosedale" + } + }, + { + "id": 1978, + "name": "Ortiz Ruiz", + "gender": "male", + "age": 19, + "address": { + "state": "New York", + "city": "Ballico" + } + }, + { + "id": 1979, + "name": "Shannon Sutton", + "gender": "male", + "age": 35, + "address": { + "state": "Utah", + "city": "Venice" + } + }, + { + "id": 1980, + "name": "Case Vaughn", + "gender": "male", + "age": 43, + "address": { + "state": "Rhode Island", + "city": "Unionville" + } + }, + { + "id": 1981, + "name": "Coleen Taylor", + "gender": "female", + "age": 30, + "address": { + "state": "Indiana", + "city": "Templeton" + } + }, + { + "id": 1982, + "name": "Polly Obrien", + "gender": "female", + "age": 61, + "address": { + "state": "Kansas", + "city": "Fairhaven" + } + }, + { + "id": 1983, + "name": "Gutierrez Mcintosh", + "gender": "male", + "age": 53, + "address": { + "state": "Colorado", + "city": "Darbydale" + } + }, + { + "id": 1984, + "name": "Potter Terrell", + "gender": "male", + "age": 34, + "address": { + "state": "Oregon", + "city": "Axis" + } + }, + { + "id": 1985, + "name": "Conway Pickett", + "gender": "male", + "age": 56, + "address": { + "state": "Oklahoma", + "city": "Singer" + } + }, + { + "id": 1986, + "name": "Letitia Gonzales", + "gender": "female", + "age": 30, + "address": { + "state": "South Dakota", + "city": "Keller" + } + }, + { + "id": 1987, + "name": "Lucile Macias", + "gender": "female", + "age": 58, + "address": { + "state": "Maine", + "city": "Gardners" + } + }, + { + "id": 1988, + "name": "Angeline Miranda", + "gender": "female", + "age": 63, + "address": { + "state": "New Hampshire", + "city": "Jugtown" + } + }, + { + "id": 1989, + "name": "Foster Rocha", + "gender": "male", + "age": 27, + "address": { + "state": "Missouri", + "city": "Stewartville" + } + }, + { + "id": 1990, + "name": "Phelps Bullock", + "gender": "male", + "age": 36, + "address": { + "state": "Idaho", + "city": "Hackneyville" + } + }, + { + "id": 1991, + "name": "Howell Blake", + "gender": "male", + "age": 82, + "address": { + "state": "Wyoming", + "city": "Ebro" + } + }, + { + "id": 1992, + "name": "Chen Stark", + "gender": "male", + "age": 30, + "address": { + "state": "Florida", + "city": "Edinburg" + } + }, + { + "id": 1993, + "name": "Pat Spence", + "gender": "female", + "age": 27, + "address": { + "state": "West Virginia", + "city": "Cleary" + } + }, + { + "id": 1994, + "name": "Lily William", + "gender": "female", + "age": 31, + "address": { + "state": "Washington", + "city": "Como" + } + }, + { + "id": 1995, + "name": "Sheila Webster", + "gender": "female", + "age": 63, + "address": { + "state": "Arkansas", + "city": "Loyalhanna" + } + }, + { + "id": 1996, + "name": "Christy Langley", + "gender": "female", + "age": 71, + "address": { + "state": "Iowa", + "city": "Hegins" + } + }, + { + "id": 1997, + "name": "Queen Savage", + "gender": "female", + "age": 80, + "address": { + "state": "Arizona", + "city": "Freelandville" + } + }, + { + "id": 1998, + "name": "Denise Mayo", + "gender": "female", + "age": 24, + "address": { + "state": "Tennessee", + "city": "Lowell" + } + }, + { + "id": 1999, + "name": "Terry Zamora", + "gender": "male", + "age": 21, + "address": { + "state": "Alaska", + "city": "Deputy" + } + }, + { + "id": 2000, + "name": "Sonia Norton", + "gender": "female", + "age": 43, + "address": { + "state": "Ohio", + "city": "Brogan" + } + }, + { + "id": 2001, + "name": "Sadie Snow", + "gender": "female", + "age": 81, + "address": { + "state": "Montana", + "city": "Dola" + } + }, + { + "id": 2002, + "name": "Leola Cameron", + "gender": "female", + "age": 76, + "address": { + "state": "Pennsylvania", + "city": "Kerby" + } + }, + { + "id": 2003, + "name": "Olga Heath", + "gender": "female", + "age": 28, + "address": { + "state": "Louisiana", + "city": "Valle" + } + }, + { + "id": 2004, + "name": "Guerrero Logan", + "gender": "male", + "age": 72, + "address": { + "state": "Georgia", + "city": "Grill" + } + }, + { + "id": 2005, + "name": "Zelma Haley", + "gender": "female", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Saticoy" + } + }, + { + "id": 2006, + "name": "Cheryl Warren", + "gender": "female", + "age": 61, + "address": { + "state": "Vermont", + "city": "Winston" + } + }, + { + "id": 2007, + "name": "Frazier Carey", + "gender": "male", + "age": 61, + "address": { + "state": "North Dakota", + "city": "Epworth" + } + }, + { + "id": 2008, + "name": "Mccarthy Nieves", + "gender": "male", + "age": 62, + "address": { + "state": "New Jersey", + "city": "Grazierville" + } + }, + { + "id": 2009, + "name": "Ivy Reed", + "gender": "female", + "age": 50, + "address": { + "state": "Utah", + "city": "Avalon" + } + }, + { + "id": 2010, + "name": "Manning Kirby", + "gender": "male", + "age": 40, + "address": { + "state": "Nebraska", + "city": "Gallina" + } + }, + { + "id": 2011, + "name": "Michael Barry", + "gender": "male", + "age": 32, + "address": { + "state": "Illinois", + "city": "Grahamtown" + } + }, + { + "id": 2012, + "name": "Dorthy Marquez", + "gender": "female", + "age": 74, + "address": { + "state": "Florida", + "city": "Bluetown" + } + }, + { + "id": 2013, + "name": "Mccarthy Rich", + "gender": "male", + "age": 29, + "address": { + "state": "North Carolina", + "city": "Murillo" + } + }, + { + "id": 2014, + "name": "Atkinson Taylor", + "gender": "male", + "age": 37, + "address": { + "state": "Massachusetts", + "city": "Draper" + } + }, + { + "id": 2015, + "name": "Wilcox Bolton", + "gender": "male", + "age": 23, + "address": { + "state": "Virginia", + "city": "Croom" + } + }, + { + "id": 2016, + "name": "Guthrie Mooney", + "gender": "male", + "age": 20, + "address": { + "state": "Colorado", + "city": "Jacumba" + } + }, + { + "id": 2017, + "name": "Vazquez Bauer", + "gender": "male", + "age": 18, + "address": { + "state": "Montana", + "city": "Brantleyville" + } + }, + { + "id": 2018, + "name": "Alston Franklin", + "gender": "male", + "age": 36, + "address": { + "state": "Pennsylvania", + "city": "Sexton" + } + }, + { + "id": 2019, + "name": "Richmond Morgan", + "gender": "male", + "age": 68, + "address": { + "state": "Kansas", + "city": "Gardners" + } + }, + { + "id": 2020, + "name": "Julie Jenkins", + "gender": "female", + "age": 61, + "address": { + "state": "Hawaii", + "city": "Oceola" + } + }, + { + "id": 2021, + "name": "Vaughan Mays", + "gender": "male", + "age": 63, + "address": { + "state": "Missouri", + "city": "Kent" + } + }, + { + "id": 2022, + "name": "Deena Holden", + "gender": "female", + "age": 77, + "address": { + "state": "Nevada", + "city": "Durham" + } + }, + { + "id": 2023, + "name": "Hinton Keith", + "gender": "male", + "age": 63, + "address": { + "state": "Delaware", + "city": "Trexlertown" + } + }, + { + "id": 2024, + "name": "Jimmie Porter", + "gender": "female", + "age": 58, + "address": { + "state": "Connecticut", + "city": "Terlingua" + } + }, + { + "id": 2025, + "name": "Ellen Conway", + "gender": "female", + "age": 81, + "address": { + "state": "South Dakota", + "city": "Laurelton" + } + }, + { + "id": 2026, + "name": "Johnston Richards", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Derwood" + } + }, + { + "id": 2027, + "name": "Alberta King", + "gender": "female", + "age": 24, + "address": { + "state": "Tennessee", + "city": "Catherine" + } + }, + { + "id": 2028, + "name": "Berg Hubbard", + "gender": "male", + "age": 77, + "address": { + "state": "Rhode Island", + "city": "Finzel" + } + }, + { + "id": 2029, + "name": "Franco Clay", + "gender": "male", + "age": 55, + "address": { + "state": "Iowa", + "city": "Fairhaven" + } + }, + { + "id": 2030, + "name": "Becky Head", + "gender": "female", + "age": 42, + "address": { + "state": "Ohio", + "city": "Harrison" + } + }, + { + "id": 2031, + "name": "Brianna Burt", + "gender": "female", + "age": 45, + "address": { + "state": "Alaska", + "city": "Riegelwood" + } + }, + { + "id": 2032, + "name": "Elnora Burch", + "gender": "female", + "age": 41, + "address": { + "state": "Maryland", + "city": "Belfair" + } + }, + { + "id": 2033, + "name": "Deann Morin", + "gender": "female", + "age": 69, + "address": { + "state": "California", + "city": "Hoagland" + } + }, + { + "id": 2034, + "name": "Augusta Hudson", + "gender": "female", + "age": 54, + "address": { + "state": "Minnesota", + "city": "Springdale" + } + }, + { + "id": 2035, + "name": "Alexandria Bowman", + "gender": "female", + "age": 82, + "address": { + "state": "Michigan", + "city": "Tyhee" + } + }, + { + "id": 2036, + "name": "Meghan French", + "gender": "female", + "age": 57, + "address": { + "state": "Arkansas", + "city": "Torboy" + } + }, + { + "id": 2037, + "name": "Sloan Buckley", + "gender": "male", + "age": 61, + "address": { + "state": "New Hampshire", + "city": "Elliott" + } + }, + { + "id": 2038, + "name": "Robbins Simon", + "gender": "male", + "age": 63, + "address": { + "state": "Washington", + "city": "Brandywine" + } + }, + { + "id": 2039, + "name": "Carey Foreman", + "gender": "male", + "age": 61, + "address": { + "state": "Vermont", + "city": "Cornucopia" + } + }, + { + "id": 2040, + "name": "Brock Cunningham", + "gender": "male", + "age": 64, + "address": { + "state": "Oregon", + "city": "Chical" + } + }, + { + "id": 2041, + "name": "Galloway Mack", + "gender": "male", + "age": 78, + "address": { + "state": "South Carolina", + "city": "Kingstowne" + } + }, + { + "id": 2042, + "name": "Camille Joyner", + "gender": "female", + "age": 66, + "address": { + "state": "New Mexico", + "city": "Gibsonia" + } + }, + { + "id": 2043, + "name": "Reyna Moran", + "gender": "female", + "age": 82, + "address": { + "state": "Kentucky", + "city": "Matthews" + } + }, + { + "id": 2044, + "name": "Willis Garza", + "gender": "male", + "age": 71, + "address": { + "state": "Maine", + "city": "Dunbar" + } + }, + { + "id": 2045, + "name": "Vang Kemp", + "gender": "male", + "age": 36, + "address": { + "state": "Wyoming", + "city": "Loveland" + } + }, + { + "id": 2046, + "name": "Shanna Riley", + "gender": "female", + "age": 75, + "address": { + "state": "Arizona", + "city": "Sehili" + } + }, + { + "id": 2047, + "name": "Lewis Rosa", + "gender": "male", + "age": 49, + "address": { + "state": "Mississippi", + "city": "Freeburn" + } + }, + { + "id": 2048, + "name": "Penelope Ferrell", + "gender": "female", + "age": 52, + "address": { + "state": "New York", + "city": "Hollins" + } + }, + { + "id": 2049, + "name": "Rebekah Gardner", + "gender": "female", + "age": 40, + "address": { + "state": "North Dakota", + "city": "Manchester" + } + }, + { + "id": 2050, + "name": "Selma Fernandez", + "gender": "female", + "age": 31, + "address": { + "state": "Louisiana", + "city": "Suitland" + } + }, + { + "id": 2051, + "name": "Logan Key", + "gender": "male", + "age": 55, + "address": { + "state": "Texas", + "city": "Guilford" + } + }, + { + "id": 2052, + "name": "Marquez Hatfield", + "gender": "male", + "age": 26, + "address": { + "state": "Wisconsin", + "city": "Allamuchy" + } + }, + { + "id": 2053, + "name": "Debra Willis", + "gender": "female", + "age": 30, + "address": { + "state": "New Jersey", + "city": "Flintville" + } + }, + { + "id": 2054, + "name": "Serrano Britt", + "gender": "male", + "age": 68, + "address": { + "state": "Indiana", + "city": "Allentown" + } + }, + { + "id": 2055, + "name": "Sonia Schultz", + "gender": "female", + "age": 59, + "address": { + "state": "Oklahoma", + "city": "Wildwood" + } + }, + { + "id": 2056, + "name": "Gonzales Richmond", + "gender": "male", + "age": 67, + "address": { + "state": "Georgia", + "city": "Lawrence" + } + }, + { + "id": 2057, + "name": "Brandi Perez", + "gender": "female", + "age": 28, + "address": { + "state": "Alabama", + "city": "Fontanelle" + } + }, + { + "id": 2058, + "name": "Briggs Chan", + "gender": "male", + "age": 58, + "address": { + "state": "Pennsylvania", + "city": "Wacissa" + } + }, + { + "id": 2059, + "name": "Leonard Morgan", + "gender": "male", + "age": 32, + "address": { + "state": "New Jersey", + "city": "Ironton" + } + }, + { + "id": 2060, + "name": "Morin Lynn", + "gender": "male", + "age": 45, + "address": { + "state": "Texas", + "city": "Cecilia" + } + }, + { + "id": 2061, + "name": "Mildred Hess", + "gender": "female", + "age": 34, + "address": { + "state": "Utah", + "city": "Farmers" + } + }, + { + "id": 2062, + "name": "Rowe Brennan", + "gender": "male", + "age": 68, + "address": { + "state": "Idaho", + "city": "Knowlton" + } + }, + { + "id": 2063, + "name": "Chris Church", + "gender": "female", + "age": 55, + "address": { + "state": "Ohio", + "city": "Canoochee" + } + }, + { + "id": 2064, + "name": "Toni Hayden", + "gender": "female", + "age": 73, + "address": { + "state": "Wyoming", + "city": "Biddle" + } + }, + { + "id": 2065, + "name": "Harmon Hickman", + "gender": "male", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Camino" + } + }, + { + "id": 2066, + "name": "Butler Pace", + "gender": "male", + "age": 29, + "address": { + "state": "Kentucky", + "city": "Yettem" + } + }, + { + "id": 2067, + "name": "Rebekah Kennedy", + "gender": "female", + "age": 61, + "address": { + "state": "Delaware", + "city": "Thermal" + } + }, + { + "id": 2068, + "name": "Torres Mckenzie", + "gender": "male", + "age": 36, + "address": { + "state": "South Carolina", + "city": "Greensburg" + } + }, + { + "id": 2069, + "name": "Rosie Russell", + "gender": "female", + "age": 21, + "address": { + "state": "Michigan", + "city": "Bascom" + } + }, + { + "id": 2070, + "name": "Velez Roberts", + "gender": "male", + "age": 44, + "address": { + "state": "Colorado", + "city": "Rivereno" + } + }, + { + "id": 2071, + "name": "Harrington Key", + "gender": "male", + "age": 21, + "address": { + "state": "Maryland", + "city": "Norris" + } + }, + { + "id": 2072, + "name": "Espinoza Sullivan", + "gender": "male", + "age": 66, + "address": { + "state": "Kansas", + "city": "Bannock" + } + }, + { + "id": 2073, + "name": "Elsa Rivers", + "gender": "female", + "age": 78, + "address": { + "state": "New York", + "city": "Flintville" + } + }, + { + "id": 2074, + "name": "Tamika Newton", + "gender": "female", + "age": 24, + "address": { + "state": "Wisconsin", + "city": "Wedgewood" + } + }, + { + "id": 2075, + "name": "Cobb Duncan", + "gender": "male", + "age": 54, + "address": { + "state": "Massachusetts", + "city": "Caln" + } + }, + { + "id": 2076, + "name": "Lora Drake", + "gender": "female", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Bainbridge" + } + }, + { + "id": 2077, + "name": "Castro Rodgers", + "gender": "male", + "age": 37, + "address": { + "state": "Arkansas", + "city": "Welda" + } + }, + { + "id": 2078, + "name": "Campbell Romero", + "gender": "male", + "age": 58, + "address": { + "state": "Indiana", + "city": "Highland" + } + }, + { + "id": 2079, + "name": "Peterson Gordon", + "gender": "male", + "age": 32, + "address": { + "state": "South Dakota", + "city": "Chesapeake" + } + }, + { + "id": 2080, + "name": "Maribel King", + "gender": "female", + "age": 59, + "address": { + "state": "Vermont", + "city": "Belvoir" + } + }, + { + "id": 2081, + "name": "Riddle Donovan", + "gender": "male", + "age": 23, + "address": { + "state": "Connecticut", + "city": "Brooktrails" + } + }, + { + "id": 2082, + "name": "Marianne Foley", + "gender": "female", + "age": 33, + "address": { + "state": "Rhode Island", + "city": "Downsville" + } + }, + { + "id": 2083, + "name": "Tanisha Rivera", + "gender": "female", + "age": 21, + "address": { + "state": "California", + "city": "Florence" + } + }, + { + "id": 2084, + "name": "Leanne Soto", + "gender": "female", + "age": 41, + "address": { + "state": "Georgia", + "city": "Inkerman" + } + }, + { + "id": 2085, + "name": "Miranda Bray", + "gender": "female", + "age": 31, + "address": { + "state": "Oklahoma", + "city": "Oceola" + } + }, + { + "id": 2086, + "name": "Mitchell Bradshaw", + "gender": "male", + "age": 46, + "address": { + "state": "New Mexico", + "city": "Berlin" + } + }, + { + "id": 2087, + "name": "Lorie Goff", + "gender": "female", + "age": 74, + "address": { + "state": "Illinois", + "city": "Eastvale" + } + }, + { + "id": 2088, + "name": "Melody Roberson", + "gender": "female", + "age": 21, + "address": { + "state": "North Carolina", + "city": "Bartonsville" + } + }, + { + "id": 2089, + "name": "Lorrie West", + "gender": "female", + "age": 35, + "address": { + "state": "Missouri", + "city": "Wakulla" + } + }, + { + "id": 2090, + "name": "Aurelia Walters", + "gender": "female", + "age": 46, + "address": { + "state": "Alabama", + "city": "Oley" + } + }, + { + "id": 2091, + "name": "Lula Dyer", + "gender": "female", + "age": 58, + "address": { + "state": "Minnesota", + "city": "Maury" + } + }, + { + "id": 2092, + "name": "Farley Holmes", + "gender": "male", + "age": 75, + "address": { + "state": "Arizona", + "city": "Bentley" + } + }, + { + "id": 2093, + "name": "Ramirez Leach", + "gender": "male", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Bentonville" + } + }, + { + "id": 2094, + "name": "Gardner Cherry", + "gender": "male", + "age": 77, + "address": { + "state": "Alaska", + "city": "Montura" + } + }, + { + "id": 2095, + "name": "Mckee Hanson", + "gender": "male", + "age": 45, + "address": { + "state": "Maine", + "city": "Chilton" + } + }, + { + "id": 2096, + "name": "Carolina Lynch", + "gender": "female", + "age": 77, + "address": { + "state": "Florida", + "city": "Bordelonville" + } + }, + { + "id": 2097, + "name": "May Melton", + "gender": "male", + "age": 66, + "address": { + "state": "Washington", + "city": "Dante" + } + }, + { + "id": 2098, + "name": "Willa Sanders", + "gender": "female", + "age": 25, + "address": { + "state": "Tennessee", + "city": "Sparkill" + } + }, + { + "id": 2099, + "name": "Latoya Stuart", + "gender": "female", + "age": 73, + "address": { + "state": "West Virginia", + "city": "Marbury" + } + }, + { + "id": 2100, + "name": "Snider Vasquez", + "gender": "male", + "age": 48, + "address": { + "state": "Nevada", + "city": "Coinjock" + } + }, + { + "id": 2101, + "name": "Kenya Ferguson", + "gender": "female", + "age": 69, + "address": { + "state": "Mississippi", + "city": "Collins" + } + }, + { + "id": 2102, + "name": "Guadalupe Puckett", + "gender": "female", + "age": 21, + "address": { + "state": "Oregon", + "city": "Drytown" + } + }, + { + "id": 2103, + "name": "Nicholson Ellis", + "gender": "male", + "age": 51, + "address": { + "state": "Iowa", + "city": "Nipinnawasee" + } + }, + { + "id": 2104, + "name": "Letitia Merrill", + "gender": "female", + "age": 53, + "address": { + "state": "Montana", + "city": "Bend" + } + }, + { + "id": 2105, + "name": "Avery Neal", + "gender": "male", + "age": 17, + "address": { + "state": "North Dakota", + "city": "Boling" + } + }, + { + "id": 2106, + "name": "Beach Valenzuela", + "gender": "male", + "age": 62, + "address": { + "state": "Virginia", + "city": "Blodgett" + } + }, + { + "id": 2107, + "name": "Aileen Gallagher", + "gender": "female", + "age": 28, + "address": { + "state": "Iowa", + "city": "Whitewater" + } + }, + { + "id": 2108, + "name": "Mueller Mayo", + "gender": "male", + "age": 51, + "address": { + "state": "North Dakota", + "city": "Woodlake" + } + }, + { + "id": 2109, + "name": "Johns Gill", + "gender": "male", + "age": 53, + "address": { + "state": "New York", + "city": "Lund" + } + }, + { + "id": 2110, + "name": "Zelma Middleton", + "gender": "female", + "age": 52, + "address": { + "state": "Ohio", + "city": "Bergoo" + } + }, + { + "id": 2111, + "name": "Vonda Horne", + "gender": "female", + "age": 55, + "address": { + "state": "Tennessee", + "city": "Broadlands" + } + }, + { + "id": 2112, + "name": "Jerry French", + "gender": "female", + "age": 43, + "address": { + "state": "Texas", + "city": "Eastvale" + } + }, + { + "id": 2113, + "name": "Larsen Frazier", + "gender": "male", + "age": 75, + "address": { + "state": "Montana", + "city": "Grapeview" + } + }, + { + "id": 2114, + "name": "Winnie Graham", + "gender": "female", + "age": 63, + "address": { + "state": "Minnesota", + "city": "Hall" + } + }, + { + "id": 2115, + "name": "Sweeney Ware", + "gender": "male", + "age": 45, + "address": { + "state": "South Carolina", + "city": "Mammoth" + } + }, + { + "id": 2116, + "name": "Preston Mcgowan", + "gender": "male", + "age": 54, + "address": { + "state": "Arizona", + "city": "Bonanza" + } + }, + { + "id": 2117, + "name": "Keller Carson", + "gender": "male", + "age": 53, + "address": { + "state": "West Virginia", + "city": "Cavalero" + } + }, + { + "id": 2118, + "name": "Stephens Webb", + "gender": "male", + "age": 25, + "address": { + "state": "Mississippi", + "city": "Oasis" + } + }, + { + "id": 2119, + "name": "Simmons Hardin", + "gender": "male", + "age": 69, + "address": { + "state": "Colorado", + "city": "Trinway" + } + }, + { + "id": 2120, + "name": "Durham Barnes", + "gender": "male", + "age": 81, + "address": { + "state": "Wisconsin", + "city": "Gardners" + } + }, + { + "id": 2121, + "name": "Horn Roberson", + "gender": "male", + "age": 40, + "address": { + "state": "Virginia", + "city": "Hayes" + } + }, + { + "id": 2122, + "name": "Lawson Nunez", + "gender": "male", + "age": 27, + "address": { + "state": "Indiana", + "city": "Sultana" + } + }, + { + "id": 2123, + "name": "Bradshaw Gibson", + "gender": "male", + "age": 43, + "address": { + "state": "South Dakota", + "city": "Wildwood" + } + }, + { + "id": 2124, + "name": "Lynette Pugh", + "gender": "female", + "age": 51, + "address": { + "state": "Louisiana", + "city": "Jacumba" + } + }, + { + "id": 2125, + "name": "Bowman Cooper", + "gender": "male", + "age": 69, + "address": { + "state": "Pennsylvania", + "city": "Mahtowa" + } + }, + { + "id": 2126, + "name": "Kathy Shields", + "gender": "female", + "age": 31, + "address": { + "state": "Delaware", + "city": "Waterford" + } + }, + { + "id": 2127, + "name": "Jenny Hampton", + "gender": "female", + "age": 34, + "address": { + "state": "Massachusetts", + "city": "Guilford" + } + }, + { + "id": 2128, + "name": "Fields Schroeder", + "gender": "male", + "age": 72, + "address": { + "state": "Maine", + "city": "Clayville" + } + }, + { + "id": 2129, + "name": "Lopez Meadows", + "gender": "male", + "age": 58, + "address": { + "state": "New Jersey", + "city": "Vincent" + } + }, + { + "id": 2130, + "name": "Levine Burnett", + "gender": "male", + "age": 20, + "address": { + "state": "Nebraska", + "city": "Frierson" + } + }, + { + "id": 2131, + "name": "Hogan Garcia", + "gender": "male", + "age": 78, + "address": { + "state": "Utah", + "city": "Heil" + } + }, + { + "id": 2132, + "name": "Cole Hood", + "gender": "male", + "age": 36, + "address": { + "state": "Missouri", + "city": "Tyro" + } + }, + { + "id": 2133, + "name": "Mcgowan Cleveland", + "gender": "male", + "age": 57, + "address": { + "state": "Illinois", + "city": "Soudan" + } + }, + { + "id": 2134, + "name": "Becky Wong", + "gender": "female", + "age": 21, + "address": { + "state": "Washington", + "city": "Rosedale" + } + }, + { + "id": 2135, + "name": "Natasha Gentry", + "gender": "female", + "age": 32, + "address": { + "state": "Hawaii", + "city": "Whitmer" + } + }, + { + "id": 2136, + "name": "Sargent Collier", + "gender": "male", + "age": 62, + "address": { + "state": "Kentucky", + "city": "Klagetoh" + } + }, + { + "id": 2137, + "name": "Fleming Johnston", + "gender": "male", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Chase" + } + }, + { + "id": 2138, + "name": "Pate Stewart", + "gender": "male", + "age": 66, + "address": { + "state": "Vermont", + "city": "Elizaville" + } + }, + { + "id": 2139, + "name": "Heidi Hahn", + "gender": "female", + "age": 69, + "address": { + "state": "Maryland", + "city": "Camptown" + } + }, + { + "id": 2140, + "name": "Darcy Neal", + "gender": "female", + "age": 57, + "address": { + "state": "New Hampshire", + "city": "Canoochee" + } + }, + { + "id": 2141, + "name": "Branch Calhoun", + "gender": "male", + "age": 74, + "address": { + "state": "Arkansas", + "city": "Sugartown" + } + }, + { + "id": 2142, + "name": "Sonja Lawson", + "gender": "female", + "age": 66, + "address": { + "state": "Alabama", + "city": "Boyd" + } + }, + { + "id": 2143, + "name": "Webster Bender", + "gender": "male", + "age": 26, + "address": { + "state": "Idaho", + "city": "Umapine" + } + }, + { + "id": 2144, + "name": "Freida Williams", + "gender": "female", + "age": 53, + "address": { + "state": "Georgia", + "city": "Keller" + } + }, + { + "id": 2145, + "name": "Cain Harrington", + "gender": "male", + "age": 71, + "address": { + "state": "Florida", + "city": "Wheatfields" + } + }, + { + "id": 2146, + "name": "Bonita Hatfield", + "gender": "female", + "age": 65, + "address": { + "state": "Nevada", + "city": "Maybell" + } + }, + { + "id": 2147, + "name": "Leigh Ford", + "gender": "female", + "age": 50, + "address": { + "state": "Oregon", + "city": "Bend" + } + }, + { + "id": 2148, + "name": "Sanchez Hendricks", + "gender": "male", + "age": 31, + "address": { + "state": "Kansas", + "city": "Gordon" + } + }, + { + "id": 2149, + "name": "Ursula Atkinson", + "gender": "female", + "age": 57, + "address": { + "state": "Alaska", + "city": "Beason" + } + }, + { + "id": 2150, + "name": "Lottie Christian", + "gender": "female", + "age": 46, + "address": { + "state": "Connecticut", + "city": "Shaft" + } + }, + { + "id": 2151, + "name": "Hatfield Cain", + "gender": "male", + "age": 79, + "address": { + "state": "New Mexico", + "city": "Iola" + } + }, + { + "id": 2152, + "name": "Delacruz Barry", + "gender": "male", + "age": 53, + "address": { + "state": "North Carolina", + "city": "Elliott" + } + }, + { + "id": 2153, + "name": "Velez Barrett", + "gender": "male", + "age": 79, + "address": { + "state": "Michigan", + "city": "Lookingglass" + } + }, + { + "id": 2154, + "name": "Roberson Jones", + "gender": "male", + "age": 69, + "address": { + "state": "Rhode Island", + "city": "Centerville" + } + }, + { + "id": 2155, + "name": "Erickson Long", + "gender": "male", + "age": 75, + "address": { + "state": "California", + "city": "Worcester" + } + }, + { + "id": 2156, + "name": "Molina Dickson", + "gender": "male", + "age": 69, + "address": { + "state": "Minnesota", + "city": "Dyckesville" + } + }, + { + "id": 2157, + "name": "Billie Cardenas", + "gender": "female", + "age": 77, + "address": { + "state": "New Jersey", + "city": "Goodville" + } + }, + { + "id": 2158, + "name": "Patrica Smith", + "gender": "female", + "age": 50, + "address": { + "state": "Connecticut", + "city": "Rivera" + } + }, + { + "id": 2159, + "name": "Peggy Haynes", + "gender": "female", + "age": 57, + "address": { + "state": "Arkansas", + "city": "Lookingglass" + } + }, + { + "id": 2160, + "name": "Moreno Rodgers", + "gender": "male", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Day" + } + }, + { + "id": 2161, + "name": "Lottie Carroll", + "gender": "female", + "age": 80, + "address": { + "state": "Iowa", + "city": "Floriston" + } + }, + { + "id": 2162, + "name": "Tanya Cantrell", + "gender": "female", + "age": 66, + "address": { + "state": "California", + "city": "Albany" + } + }, + { + "id": 2163, + "name": "Simone Calhoun", + "gender": "female", + "age": 76, + "address": { + "state": "Utah", + "city": "Elliston" + } + }, + { + "id": 2164, + "name": "Angelia Horton", + "gender": "female", + "age": 59, + "address": { + "state": "Massachusetts", + "city": "Charco" + } + }, + { + "id": 2165, + "name": "Vilma Barnes", + "gender": "female", + "age": 82, + "address": { + "state": "New Mexico", + "city": "Trona" + } + }, + { + "id": 2166, + "name": "Kristine Cobb", + "gender": "female", + "age": 69, + "address": { + "state": "Ohio", + "city": "Ebro" + } + }, + { + "id": 2167, + "name": "Agnes Simmons", + "gender": "female", + "age": 28, + "address": { + "state": "Alaska", + "city": "Lindisfarne" + } + }, + { + "id": 2168, + "name": "Abby Baxter", + "gender": "female", + "age": 20, + "address": { + "state": "New Hampshire", + "city": "Rosewood" + } + }, + { + "id": 2169, + "name": "Barlow Benjamin", + "gender": "male", + "age": 45, + "address": { + "state": "Michigan", + "city": "Farmers" + } + }, + { + "id": 2170, + "name": "Townsend Holloway", + "gender": "male", + "age": 59, + "address": { + "state": "Illinois", + "city": "Homestead" + } + }, + { + "id": 2171, + "name": "Marie Delacruz", + "gender": "female", + "age": 76, + "address": { + "state": "Colorado", + "city": "Rosine" + } + }, + { + "id": 2172, + "name": "Bray Dillon", + "gender": "male", + "age": 54, + "address": { + "state": "South Dakota", + "city": "Summerfield" + } + }, + { + "id": 2173, + "name": "Huffman Curry", + "gender": "male", + "age": 43, + "address": { + "state": "North Carolina", + "city": "Jamestown" + } + }, + { + "id": 2174, + "name": "Foley Harrison", + "gender": "male", + "age": 79, + "address": { + "state": "Maryland", + "city": "Fairmount" + } + }, + { + "id": 2175, + "name": "Sawyer Forbes", + "gender": "male", + "age": 63, + "address": { + "state": "Wisconsin", + "city": "Durham" + } + }, + { + "id": 2176, + "name": "Dana Cummings", + "gender": "female", + "age": 50, + "address": { + "state": "Louisiana", + "city": "Deputy" + } + }, + { + "id": 2177, + "name": "Sabrina Cervantes", + "gender": "female", + "age": 18, + "address": { + "state": "Nevada", + "city": "Alderpoint" + } + }, + { + "id": 2178, + "name": "Alford Winters", + "gender": "male", + "age": 17, + "address": { + "state": "Kentucky", + "city": "Toftrees" + } + }, + { + "id": 2179, + "name": "Soto Buckley", + "gender": "male", + "age": 47, + "address": { + "state": "Vermont", + "city": "Lopezo" + } + }, + { + "id": 2180, + "name": "Holmes Wynn", + "gender": "male", + "age": 55, + "address": { + "state": "Oregon", + "city": "Vowinckel" + } + }, + { + "id": 2181, + "name": "Glass Quinn", + "gender": "male", + "age": 47, + "address": { + "state": "Hawaii", + "city": "Wanship" + } + }, + { + "id": 2182, + "name": "Bonner Nicholson", + "gender": "male", + "age": 42, + "address": { + "state": "Idaho", + "city": "Madaket" + } + }, + { + "id": 2183, + "name": "Lillie Adams", + "gender": "female", + "age": 46, + "address": { + "state": "Florida", + "city": "Highland" + } + }, + { + "id": 2184, + "name": "Lynn Dawson", + "gender": "female", + "age": 69, + "address": { + "state": "Pennsylvania", + "city": "Grill" + } + }, + { + "id": 2185, + "name": "Ramos Garrison", + "gender": "male", + "age": 38, + "address": { + "state": "Maine", + "city": "Salix" + } + }, + { + "id": 2186, + "name": "Susanne Holcomb", + "gender": "female", + "age": 47, + "address": { + "state": "Kansas", + "city": "Sims" + } + }, + { + "id": 2187, + "name": "Cain Pruitt", + "gender": "male", + "age": 22, + "address": { + "state": "Arizona", + "city": "Smock" + } + }, + { + "id": 2188, + "name": "Mcbride Harper", + "gender": "male", + "age": 41, + "address": { + "state": "Montana", + "city": "Muir" + } + }, + { + "id": 2189, + "name": "Weiss Benson", + "gender": "male", + "age": 19, + "address": { + "state": "New York", + "city": "Neibert" + } + }, + { + "id": 2190, + "name": "Estella Figueroa", + "gender": "female", + "age": 54, + "address": { + "state": "Delaware", + "city": "Aberdeen" + } + }, + { + "id": 2191, + "name": "Roxie Rosales", + "gender": "female", + "age": 25, + "address": { + "state": "Washington", + "city": "Katonah" + } + }, + { + "id": 2192, + "name": "Tracey Foreman", + "gender": "female", + "age": 27, + "address": { + "state": "West Virginia", + "city": "Montura" + } + }, + { + "id": 2193, + "name": "Sweet Noble", + "gender": "male", + "age": 29, + "address": { + "state": "Alabama", + "city": "Keller" + } + }, + { + "id": 2194, + "name": "Walter Mcclure", + "gender": "male", + "age": 77, + "address": { + "state": "Rhode Island", + "city": "Faxon" + } + }, + { + "id": 2195, + "name": "Hutchinson Rowland", + "gender": "male", + "age": 69, + "address": { + "state": "Oklahoma", + "city": "Gerton" + } + }, + { + "id": 2196, + "name": "Jaime Levine", + "gender": "female", + "age": 51, + "address": { + "state": "South Carolina", + "city": "Eagleville" + } + }, + { + "id": 2197, + "name": "Murray Porter", + "gender": "male", + "age": 39, + "address": { + "state": "Mississippi", + "city": "Morningside" + } + }, + { + "id": 2198, + "name": "Ashley Beasley", + "gender": "male", + "age": 18, + "address": { + "state": "Nebraska", + "city": "Sugartown" + } + }, + { + "id": 2199, + "name": "Brandi Calderon", + "gender": "female", + "age": 28, + "address": { + "state": "Virginia", + "city": "Eureka" + } + }, + { + "id": 2200, + "name": "Baird Swanson", + "gender": "male", + "age": 28, + "address": { + "state": "Georgia", + "city": "Grantville" + } + }, + { + "id": 2201, + "name": "Nguyen Kirkland", + "gender": "male", + "age": 20, + "address": { + "state": "Tennessee", + "city": "Carbonville" + } + }, + { + "id": 2202, + "name": "Macias Martinez", + "gender": "male", + "age": 68, + "address": { + "state": "Missouri", + "city": "Northridge" + } + }, + { + "id": 2203, + "name": "Sophie Morales", + "gender": "female", + "age": 62, + "address": { + "state": "Texas", + "city": "Vale" + } + }, + { + "id": 2204, + "name": "Augusta Haley", + "gender": "female", + "age": 53, + "address": { + "state": "Indiana", + "city": "Wiscon" + } + }, + { + "id": 2205, + "name": "Buchanan Wolfe", + "gender": "male", + "age": 48, + "address": { + "state": "North Carolina", + "city": "Draper" + } + }, + { + "id": 2206, + "name": "Bass Graham", + "gender": "male", + "age": 76, + "address": { + "state": "West Virginia", + "city": "Blairstown" + } + }, + { + "id": 2207, + "name": "Lawrence Webb", + "gender": "male", + "age": 39, + "address": { + "state": "New Mexico", + "city": "Morriston" + } + }, + { + "id": 2208, + "name": "Earline Guy", + "gender": "female", + "age": 76, + "address": { + "state": "Wisconsin", + "city": "Siglerville" + } + }, + { + "id": 2209, + "name": "Ray Barrett", + "gender": "male", + "age": 79, + "address": { + "state": "Michigan", + "city": "Choctaw" + } + }, + { + "id": 2210, + "name": "Watson Odom", + "gender": "male", + "age": 31, + "address": { + "state": "Delaware", + "city": "Harviell" + } + }, + { + "id": 2211, + "name": "Eileen Stephenson", + "gender": "female", + "age": 60, + "address": { + "state": "Louisiana", + "city": "Tetherow" + } + }, + { + "id": 2212, + "name": "Jacqueline Weaver", + "gender": "female", + "age": 70, + "address": { + "state": "Texas", + "city": "Hardyville" + } + }, + { + "id": 2213, + "name": "Jenkins Sweeney", + "gender": "male", + "age": 33, + "address": { + "state": "Kentucky", + "city": "Greenwich" + } + }, + { + "id": 2214, + "name": "Stokes Petty", + "gender": "male", + "age": 70, + "address": { + "state": "Illinois", + "city": "Brookfield" + } + }, + { + "id": 2215, + "name": "Queen Randall", + "gender": "female", + "age": 30, + "address": { + "state": "Hawaii", + "city": "Ezel" + } + }, + { + "id": 2216, + "name": "Ward Gregory", + "gender": "male", + "age": 43, + "address": { + "state": "New York", + "city": "Idamay" + } + }, + { + "id": 2217, + "name": "Luisa Rosario", + "gender": "female", + "age": 30, + "address": { + "state": "Maine", + "city": "Dotsero" + } + }, + { + "id": 2218, + "name": "Loraine Melendez", + "gender": "female", + "age": 50, + "address": { + "state": "Pennsylvania", + "city": "Chesterfield" + } + }, + { + "id": 2219, + "name": "Pace Clements", + "gender": "male", + "age": 67, + "address": { + "state": "South Dakota", + "city": "Imperial" + } + }, + { + "id": 2220, + "name": "Amanda Erickson", + "gender": "female", + "age": 78, + "address": { + "state": "Washington", + "city": "Ola" + } + }, + { + "id": 2221, + "name": "Fannie Sexton", + "gender": "female", + "age": 52, + "address": { + "state": "Alabama", + "city": "Glendale" + } + }, + { + "id": 2222, + "name": "Glenn Noble", + "gender": "male", + "age": 41, + "address": { + "state": "Utah", + "city": "Delco" + } + }, + { + "id": 2223, + "name": "Marcy Jensen", + "gender": "female", + "age": 61, + "address": { + "state": "Tennessee", + "city": "Lowgap" + } + }, + { + "id": 2224, + "name": "Gladys Wiggins", + "gender": "female", + "age": 68, + "address": { + "state": "Minnesota", + "city": "Hillsboro" + } + }, + { + "id": 2225, + "name": "Amalia Thornton", + "gender": "female", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Ladera" + } + }, + { + "id": 2226, + "name": "Ila Mckinney", + "gender": "female", + "age": 32, + "address": { + "state": "Virginia", + "city": "Staples" + } + }, + { + "id": 2227, + "name": "Mcclain Mcfadden", + "gender": "male", + "age": 54, + "address": { + "state": "Indiana", + "city": "Escondida" + } + }, + { + "id": 2228, + "name": "Woodward Levine", + "gender": "male", + "age": 40, + "address": { + "state": "North Dakota", + "city": "Needmore" + } + }, + { + "id": 2229, + "name": "Dickson Fox", + "gender": "male", + "age": 36, + "address": { + "state": "Colorado", + "city": "Vienna" + } + }, + { + "id": 2230, + "name": "Wendi Blackburn", + "gender": "female", + "age": 36, + "address": { + "state": "Wyoming", + "city": "Evergreen" + } + }, + { + "id": 2231, + "name": "Vera Lopez", + "gender": "female", + "age": 40, + "address": { + "state": "New Jersey", + "city": "Clara" + } + }, + { + "id": 2232, + "name": "Therese Walsh", + "gender": "female", + "age": 21, + "address": { + "state": "Connecticut", + "city": "Henrietta" + } + }, + { + "id": 2233, + "name": "Hilda Russo", + "gender": "female", + "age": 42, + "address": { + "state": "Vermont", + "city": "Wheaton" + } + }, + { + "id": 2234, + "name": "Elena Norman", + "gender": "female", + "age": 41, + "address": { + "state": "California", + "city": "Spokane" + } + }, + { + "id": 2235, + "name": "Neva Mack", + "gender": "female", + "age": 71, + "address": { + "state": "Arkansas", + "city": "Dennard" + } + }, + { + "id": 2236, + "name": "Singleton Manning", + "gender": "male", + "age": 29, + "address": { + "state": "Idaho", + "city": "Elrama" + } + }, + { + "id": 2237, + "name": "Cheryl Whitehead", + "gender": "female", + "age": 17, + "address": { + "state": "Kansas", + "city": "Jennings" + } + }, + { + "id": 2238, + "name": "Kemp Mckay", + "gender": "male", + "age": 51, + "address": { + "state": "Alaska", + "city": "Campo" + } + }, + { + "id": 2239, + "name": "Fran Jarvis", + "gender": "female", + "age": 37, + "address": { + "state": "South Carolina", + "city": "Crayne" + } + }, + { + "id": 2240, + "name": "Buchanan Boyd", + "gender": "male", + "age": 21, + "address": { + "state": "Nevada", + "city": "Hiwasse" + } + }, + { + "id": 2241, + "name": "Jamie England", + "gender": "female", + "age": 48, + "address": { + "state": "Maryland", + "city": "Marshall" + } + }, + { + "id": 2242, + "name": "Hudson Hughes", + "gender": "male", + "age": 81, + "address": { + "state": "Montana", + "city": "Bagtown" + } + }, + { + "id": 2243, + "name": "Kris Barron", + "gender": "female", + "age": 42, + "address": { + "state": "Oregon", + "city": "Saranap" + } + }, + { + "id": 2244, + "name": "Gallegos Mcdowell", + "gender": "male", + "age": 51, + "address": { + "state": "Georgia", + "city": "Nicholson" + } + }, + { + "id": 2245, + "name": "Rochelle Travis", + "gender": "female", + "age": 30, + "address": { + "state": "Arizona", + "city": "Gardiner" + } + }, + { + "id": 2246, + "name": "Brewer Koch", + "gender": "male", + "age": 51, + "address": { + "state": "Iowa", + "city": "Dale" + } + }, + { + "id": 2247, + "name": "Eve Nicholson", + "gender": "female", + "age": 80, + "address": { + "state": "Massachusetts", + "city": "Magnolia" + } + }, + { + "id": 2248, + "name": "Valenzuela Underwood", + "gender": "male", + "age": 22, + "address": { + "state": "Oklahoma", + "city": "Homeworth" + } + }, + { + "id": 2249, + "name": "Gwen Bird", + "gender": "female", + "age": 40, + "address": { + "state": "Nebraska", + "city": "Wescosville" + } + }, + { + "id": 2250, + "name": "Shaw Simpson", + "gender": "male", + "age": 82, + "address": { + "state": "New Hampshire", + "city": "Vallonia" + } + }, + { + "id": 2251, + "name": "William King", + "gender": "male", + "age": 53, + "address": { + "state": "Ohio", + "city": "Santel" + } + }, + { + "id": 2252, + "name": "Nolan Hernandez", + "gender": "male", + "age": 78, + "address": { + "state": "Missouri", + "city": "Shindler" + } + }, + { + "id": 2253, + "name": "Aurora Gross", + "gender": "female", + "age": 78, + "address": { + "state": "Rhode Island", + "city": "Mathews" + } + }, + { + "id": 2254, + "name": "Duncan Singleton", + "gender": "male", + "age": 23, + "address": { + "state": "Alaska", + "city": "Layhill" + } + }, + { + "id": 2255, + "name": "Rollins Gonzales", + "gender": "male", + "age": 68, + "address": { + "state": "Georgia", + "city": "Dorneyville" + } + }, + { + "id": 2256, + "name": "Drake Russell", + "gender": "male", + "age": 71, + "address": { + "state": "Rhode Island", + "city": "Homeworth" + } + }, + { + "id": 2257, + "name": "Lucinda Alston", + "gender": "female", + "age": 20, + "address": { + "state": "Kentucky", + "city": "Chamberino" + } + }, + { + "id": 2258, + "name": "Trevino Ward", + "gender": "male", + "age": 70, + "address": { + "state": "Connecticut", + "city": "Summerset" + } + }, + { + "id": 2259, + "name": "Duffy Dean", + "gender": "male", + "age": 25, + "address": { + "state": "Colorado", + "city": "Bison" + } + }, + { + "id": 2260, + "name": "Salazar Burks", + "gender": "male", + "age": 43, + "address": { + "state": "California", + "city": "Blairstown" + } + }, + { + "id": 2261, + "name": "Mckenzie Harrell", + "gender": "male", + "age": 23, + "address": { + "state": "Tennessee", + "city": "Graniteville" + } + }, + { + "id": 2262, + "name": "Cash Garrett", + "gender": "male", + "age": 26, + "address": { + "state": "New York", + "city": "Garfield" + } + }, + { + "id": 2263, + "name": "Montoya Nguyen", + "gender": "male", + "age": 32, + "address": { + "state": "Missouri", + "city": "Stewartville" + } + }, + { + "id": 2264, + "name": "Sophia Sexton", + "gender": "female", + "age": 52, + "address": { + "state": "Wisconsin", + "city": "Falmouth" + } + }, + { + "id": 2265, + "name": "Josephine Mercer", + "gender": "female", + "age": 49, + "address": { + "state": "Arkansas", + "city": "Bakersville" + } + }, + { + "id": 2266, + "name": "Nina Sullivan", + "gender": "female", + "age": 63, + "address": { + "state": "New Jersey", + "city": "Manitou" + } + }, + { + "id": 2267, + "name": "Orr Robinson", + "gender": "male", + "age": 73, + "address": { + "state": "Oregon", + "city": "Blende" + } + }, + { + "id": 2268, + "name": "Cristina Hernandez", + "gender": "female", + "age": 22, + "address": { + "state": "Alabama", + "city": "Glendale" + } + }, + { + "id": 2269, + "name": "Madge Foley", + "gender": "female", + "age": 51, + "address": { + "state": "New Mexico", + "city": "Williston" + } + }, + { + "id": 2270, + "name": "Roberson Owen", + "gender": "male", + "age": 34, + "address": { + "state": "Maryland", + "city": "Delshire" + } + }, + { + "id": 2271, + "name": "Savage Ferguson", + "gender": "male", + "age": 26, + "address": { + "state": "Mississippi", + "city": "Darrtown" + } + }, + { + "id": 2272, + "name": "Juliana Stout", + "gender": "female", + "age": 45, + "address": { + "state": "North Carolina", + "city": "Soudan" + } + }, + { + "id": 2273, + "name": "Tamra Alexander", + "gender": "female", + "age": 57, + "address": { + "state": "Michigan", + "city": "Caspar" + } + }, + { + "id": 2274, + "name": "Polly Abbott", + "gender": "female", + "age": 66, + "address": { + "state": "Montana", + "city": "Hegins" + } + }, + { + "id": 2275, + "name": "Antonia Rhodes", + "gender": "female", + "age": 69, + "address": { + "state": "Nevada", + "city": "Lookingglass" + } + }, + { + "id": 2276, + "name": "Tia Alvarez", + "gender": "female", + "age": 46, + "address": { + "state": "Wyoming", + "city": "Sunriver" + } + }, + { + "id": 2277, + "name": "Marta Wilkins", + "gender": "female", + "age": 26, + "address": { + "state": "West Virginia", + "city": "Barstow" + } + }, + { + "id": 2278, + "name": "Katheryn Kim", + "gender": "female", + "age": 38, + "address": { + "state": "Massachusetts", + "city": "Rivereno" + } + }, + { + "id": 2279, + "name": "Chambers Garrison", + "gender": "male", + "age": 65, + "address": { + "state": "North Dakota", + "city": "Valmy" + } + }, + { + "id": 2280, + "name": "Poole Mcgowan", + "gender": "male", + "age": 31, + "address": { + "state": "Washington", + "city": "Fannett" + } + }, + { + "id": 2281, + "name": "Belinda Pratt", + "gender": "female", + "age": 35, + "address": { + "state": "Utah", + "city": "Bynum" + } + }, + { + "id": 2282, + "name": "Schneider Graves", + "gender": "male", + "age": 70, + "address": { + "state": "Hawaii", + "city": "Chestnut" + } + }, + { + "id": 2283, + "name": "Bonita Crawford", + "gender": "female", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Omar" + } + }, + { + "id": 2284, + "name": "Cochran Rollins", + "gender": "male", + "age": 81, + "address": { + "state": "Pennsylvania", + "city": "Bodega" + } + }, + { + "id": 2285, + "name": "Collier Maynard", + "gender": "male", + "age": 23, + "address": { + "state": "Texas", + "city": "Singer" + } + }, + { + "id": 2286, + "name": "Espinoza Newman", + "gender": "male", + "age": 80, + "address": { + "state": "Vermont", + "city": "Rockingham" + } + }, + { + "id": 2287, + "name": "Petty Pearson", + "gender": "male", + "age": 81, + "address": { + "state": "New Hampshire", + "city": "Toftrees" + } + }, + { + "id": 2288, + "name": "Suzette Workman", + "gender": "female", + "age": 77, + "address": { + "state": "Delaware", + "city": "Chalfant" + } + }, + { + "id": 2289, + "name": "Logan Hampton", + "gender": "male", + "age": 35, + "address": { + "state": "Kansas", + "city": "Bentonville" + } + }, + { + "id": 2290, + "name": "Carla Kelly", + "gender": "female", + "age": 75, + "address": { + "state": "Florida", + "city": "Hall" + } + }, + { + "id": 2291, + "name": "Nadia Tanner", + "gender": "female", + "age": 72, + "address": { + "state": "Illinois", + "city": "Marshall" + } + }, + { + "id": 2292, + "name": "Marci Sandoval", + "gender": "female", + "age": 59, + "address": { + "state": "Louisiana", + "city": "Matheny" + } + }, + { + "id": 2293, + "name": "Marietta Herman", + "gender": "female", + "age": 56, + "address": { + "state": "Iowa", + "city": "Whitehaven" + } + }, + { + "id": 2294, + "name": "Lawanda Bauer", + "gender": "female", + "age": 45, + "address": { + "state": "Arizona", + "city": "Hobucken" + } + }, + { + "id": 2295, + "name": "Marylou Phelps", + "gender": "female", + "age": 34, + "address": { + "state": "Nebraska", + "city": "Saranap" + } + }, + { + "id": 2296, + "name": "Nancy Hamilton", + "gender": "female", + "age": 42, + "address": { + "state": "Minnesota", + "city": "Topaz" + } + }, + { + "id": 2297, + "name": "Lizzie Callahan", + "gender": "female", + "age": 20, + "address": { + "state": "Ohio", + "city": "Sparkill" + } + }, + { + "id": 2298, + "name": "Callie Bond", + "gender": "female", + "age": 74, + "address": { + "state": "Idaho", + "city": "Winfred" + } + }, + { + "id": 2299, + "name": "Bush Spears", + "gender": "male", + "age": 23, + "address": { + "state": "Indiana", + "city": "Marenisco" + } + }, + { + "id": 2300, + "name": "Zelma Maldonado", + "gender": "female", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Babb" + } + }, + { + "id": 2301, + "name": "Marie Cleveland", + "gender": "female", + "age": 59, + "address": { + "state": "Maine", + "city": "Drytown" + } + }, + { + "id": 2302, + "name": "Lina Santana", + "gender": "female", + "age": 70, + "address": { + "state": "Virginia", + "city": "Thynedale" + } + }, + { + "id": 2303, + "name": "Barnes Fischer", + "gender": "male", + "age": 19, + "address": { + "state": "New Jersey", + "city": "Convent" + } + }, + { + "id": 2304, + "name": "Ethel Sears", + "gender": "female", + "age": 25, + "address": { + "state": "Kentucky", + "city": "Yettem" + } + }, + { + "id": 2305, + "name": "Dawson West", + "gender": "male", + "age": 63, + "address": { + "state": "Arkansas", + "city": "Muir" + } + }, + { + "id": 2306, + "name": "Katina Nguyen", + "gender": "female", + "age": 80, + "address": { + "state": "Virginia", + "city": "Kempton" + } + }, + { + "id": 2307, + "name": "Benjamin Coffey", + "gender": "male", + "age": 18, + "address": { + "state": "Tennessee", + "city": "Malott" + } + }, + { + "id": 2308, + "name": "Roberta Boyle", + "gender": "female", + "age": 56, + "address": { + "state": "Georgia", + "city": "Nadine" + } + }, + { + "id": 2309, + "name": "Hester Case", + "gender": "female", + "age": 41, + "address": { + "state": "Maine", + "city": "Belva" + } + }, + { + "id": 2310, + "name": "Stacy Gaines", + "gender": "female", + "age": 57, + "address": { + "state": "Wisconsin", + "city": "Dotsero" + } + }, + { + "id": 2311, + "name": "Bailey English", + "gender": "male", + "age": 24, + "address": { + "state": "South Dakota", + "city": "Coalmont" + } + }, + { + "id": 2312, + "name": "Dawn Murphy", + "gender": "female", + "age": 49, + "address": { + "state": "Alabama", + "city": "Avoca" + } + }, + { + "id": 2313, + "name": "Harriett Hinton", + "gender": "female", + "age": 65, + "address": { + "state": "Montana", + "city": "Brady" + } + }, + { + "id": 2314, + "name": "Suzette Mercer", + "gender": "female", + "age": 18, + "address": { + "state": "Connecticut", + "city": "Lydia" + } + }, + { + "id": 2315, + "name": "Christa Stevens", + "gender": "female", + "age": 44, + "address": { + "state": "Florida", + "city": "Kraemer" + } + }, + { + "id": 2316, + "name": "Diaz Bonner", + "gender": "male", + "age": 50, + "address": { + "state": "Washington", + "city": "Geyserville" + } + }, + { + "id": 2317, + "name": "Mcpherson Keller", + "gender": "male", + "age": 26, + "address": { + "state": "Rhode Island", + "city": "Alafaya" + } + }, + { + "id": 2318, + "name": "Isabel Dodson", + "gender": "female", + "age": 41, + "address": { + "state": "Massachusetts", + "city": "Wolcott" + } + }, + { + "id": 2319, + "name": "Keith Kerr", + "gender": "male", + "age": 75, + "address": { + "state": "Louisiana", + "city": "Thatcher" + } + }, + { + "id": 2320, + "name": "Jefferson Jones", + "gender": "male", + "age": 26, + "address": { + "state": "Pennsylvania", + "city": "Lloyd" + } + }, + { + "id": 2321, + "name": "Tucker Winters", + "gender": "male", + "age": 38, + "address": { + "state": "Oregon", + "city": "Osmond" + } + }, + { + "id": 2322, + "name": "Della Cannon", + "gender": "female", + "age": 27, + "address": { + "state": "Minnesota", + "city": "Iola" + } + }, + { + "id": 2323, + "name": "Ayers Acevedo", + "gender": "male", + "age": 24, + "address": { + "state": "Kansas", + "city": "Shelby" + } + }, + { + "id": 2324, + "name": "Wells Webster", + "gender": "male", + "age": 71, + "address": { + "state": "Vermont", + "city": "Flintville" + } + }, + { + "id": 2325, + "name": "Whitley Cruz", + "gender": "male", + "age": 70, + "address": { + "state": "South Carolina", + "city": "Gwynn" + } + }, + { + "id": 2326, + "name": "Lynne Fuentes", + "gender": "female", + "age": 42, + "address": { + "state": "Arizona", + "city": "Vernon" + } + }, + { + "id": 2327, + "name": "Morin May", + "gender": "male", + "age": 34, + "address": { + "state": "Idaho", + "city": "Morningside" + } + }, + { + "id": 2328, + "name": "Kristie Ramos", + "gender": "female", + "age": 27, + "address": { + "state": "Michigan", + "city": "Chloride" + } + }, + { + "id": 2329, + "name": "Eva Brennan", + "gender": "female", + "age": 70, + "address": { + "state": "Maryland", + "city": "Witmer" + } + }, + { + "id": 2330, + "name": "Griffin Silva", + "gender": "male", + "age": 81, + "address": { + "state": "Delaware", + "city": "Bayview" + } + }, + { + "id": 2331, + "name": "Alisha Mcguire", + "gender": "female", + "age": 45, + "address": { + "state": "New Mexico", + "city": "Makena" + } + }, + { + "id": 2332, + "name": "Marisol Vargas", + "gender": "female", + "age": 54, + "address": { + "state": "Wyoming", + "city": "Nelson" + } + }, + { + "id": 2333, + "name": "Randall Pruitt", + "gender": "male", + "age": 53, + "address": { + "state": "Missouri", + "city": "Loretto" + } + }, + { + "id": 2334, + "name": "Good Gallagher", + "gender": "male", + "age": 28, + "address": { + "state": "Texas", + "city": "Echo" + } + }, + { + "id": 2335, + "name": "Jacobs Peters", + "gender": "male", + "age": 82, + "address": { + "state": "New York", + "city": "Edenburg" + } + }, + { + "id": 2336, + "name": "Bridges Huber", + "gender": "male", + "age": 23, + "address": { + "state": "Mississippi", + "city": "Caledonia" + } + }, + { + "id": 2337, + "name": "Nolan Lester", + "gender": "male", + "age": 46, + "address": { + "state": "Indiana", + "city": "Jackpot" + } + }, + { + "id": 2338, + "name": "Ochoa Mcconnell", + "gender": "male", + "age": 82, + "address": { + "state": "California", + "city": "Morriston" + } + }, + { + "id": 2339, + "name": "Matthews Barron", + "gender": "male", + "age": 24, + "address": { + "state": "Utah", + "city": "Gadsden" + } + }, + { + "id": 2340, + "name": "Tamika Crane", + "gender": "female", + "age": 70, + "address": { + "state": "Iowa", + "city": "Wilmington" + } + }, + { + "id": 2341, + "name": "Fannie Moody", + "gender": "female", + "age": 21, + "address": { + "state": "North Dakota", + "city": "Camino" + } + }, + { + "id": 2342, + "name": "Tommie Barnes", + "gender": "female", + "age": 45, + "address": { + "state": "Hawaii", + "city": "Maury" + } + }, + { + "id": 2343, + "name": "Jaime Ball", + "gender": "female", + "age": 74, + "address": { + "state": "North Carolina", + "city": "Urie" + } + }, + { + "id": 2344, + "name": "Mullins Carroll", + "gender": "male", + "age": 24, + "address": { + "state": "New Hampshire", + "city": "Warsaw" + } + }, + { + "id": 2345, + "name": "Aimee Rosario", + "gender": "female", + "age": 19, + "address": { + "state": "Nebraska", + "city": "Zarephath" + } + }, + { + "id": 2346, + "name": "Peterson Robbins", + "gender": "male", + "age": 61, + "address": { + "state": "West Virginia", + "city": "Grayhawk" + } + }, + { + "id": 2347, + "name": "Lina Koch", + "gender": "female", + "age": 60, + "address": { + "state": "Oklahoma", + "city": "Finzel" + } + }, + { + "id": 2348, + "name": "Hutchinson Oneill", + "gender": "male", + "age": 68, + "address": { + "state": "Illinois", + "city": "Groton" + } + }, + { + "id": 2349, + "name": "Ward Hopkins", + "gender": "male", + "age": 73, + "address": { + "state": "Ohio", + "city": "Freeburn" + } + }, + { + "id": 2350, + "name": "Albert Contreras", + "gender": "male", + "age": 31, + "address": { + "state": "Nevada", + "city": "Orovada" + } + }, + { + "id": 2351, + "name": "Schneider Holt", + "gender": "male", + "age": 38, + "address": { + "state": "Colorado", + "city": "Chelsea" + } + }, + { + "id": 2352, + "name": "Jackson Kane", + "gender": "male", + "age": 46, + "address": { + "state": "Ohio", + "city": "Devon" + } + }, + { + "id": 2353, + "name": "Fran Mcmillan", + "gender": "female", + "age": 59, + "address": { + "state": "Maine", + "city": "Garfield" + } + }, + { + "id": 2354, + "name": "Vargas Keller", + "gender": "male", + "age": 44, + "address": { + "state": "Texas", + "city": "Draper" + } + }, + { + "id": 2355, + "name": "Darla Barlow", + "gender": "female", + "age": 18, + "address": { + "state": "California", + "city": "Elliott" + } + }, + { + "id": 2356, + "name": "Jody Coffey", + "gender": "female", + "age": 65, + "address": { + "state": "Minnesota", + "city": "Detroit" + } + }, + { + "id": 2357, + "name": "Fuller Boone", + "gender": "male", + "age": 82, + "address": { + "state": "Washington", + "city": "Esmont" + } + }, + { + "id": 2358, + "name": "Lavonne Emerson", + "gender": "female", + "age": 49, + "address": { + "state": "Oregon", + "city": "Taft" + } + }, + { + "id": 2359, + "name": "Sellers Calderon", + "gender": "male", + "age": 54, + "address": { + "state": "Pennsylvania", + "city": "Delwood" + } + }, + { + "id": 2360, + "name": "Mason Duncan", + "gender": "male", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Nicut" + } + }, + { + "id": 2361, + "name": "Haney Cobb", + "gender": "male", + "age": 30, + "address": { + "state": "Wyoming", + "city": "Toftrees" + } + }, + { + "id": 2362, + "name": "Penelope Stafford", + "gender": "female", + "age": 31, + "address": { + "state": "Alaska", + "city": "Rosburg" + } + }, + { + "id": 2363, + "name": "Bridgette Lyons", + "gender": "female", + "age": 64, + "address": { + "state": "Nevada", + "city": "Johnsonburg" + } + }, + { + "id": 2364, + "name": "Joseph Odonnell", + "gender": "male", + "age": 21, + "address": { + "state": "West Virginia", + "city": "Cressey" + } + }, + { + "id": 2365, + "name": "Marquez Holt", + "gender": "male", + "age": 48, + "address": { + "state": "Alabama", + "city": "Maxville" + } + }, + { + "id": 2366, + "name": "Stacey Pearson", + "gender": "female", + "age": 26, + "address": { + "state": "Mississippi", + "city": "Chase" + } + }, + { + "id": 2367, + "name": "Holden Collier", + "gender": "male", + "age": 31, + "address": { + "state": "Hawaii", + "city": "Strong" + } + }, + { + "id": 2368, + "name": "Eddie Salas", + "gender": "female", + "age": 47, + "address": { + "state": "Connecticut", + "city": "Lacomb" + } + }, + { + "id": 2369, + "name": "Caldwell Vasquez", + "gender": "male", + "age": 51, + "address": { + "state": "Tennessee", + "city": "Oley" + } + }, + { + "id": 2370, + "name": "Ward Mack", + "gender": "male", + "age": 28, + "address": { + "state": "Iowa", + "city": "Trinway" + } + }, + { + "id": 2371, + "name": "Vinson Boyer", + "gender": "male", + "age": 66, + "address": { + "state": "Virginia", + "city": "Bannock" + } + }, + { + "id": 2372, + "name": "Mindy Guthrie", + "gender": "female", + "age": 47, + "address": { + "state": "Missouri", + "city": "Goochland" + } + }, + { + "id": 2373, + "name": "Meadows Dodson", + "gender": "male", + "age": 28, + "address": { + "state": "Colorado", + "city": "Brethren" + } + }, + { + "id": 2374, + "name": "Suarez Johnston", + "gender": "male", + "age": 70, + "address": { + "state": "New Hampshire", + "city": "Caroline" + } + }, + { + "id": 2375, + "name": "Potts Snider", + "gender": "male", + "age": 49, + "address": { + "state": "Florida", + "city": "Tioga" + } + }, + { + "id": 2376, + "name": "Lorrie Finley", + "gender": "female", + "age": 22, + "address": { + "state": "Montana", + "city": "Finderne" + } + }, + { + "id": 2377, + "name": "April Blackburn", + "gender": "female", + "age": 72, + "address": { + "state": "Louisiana", + "city": "Emison" + } + }, + { + "id": 2378, + "name": "Douglas Cash", + "gender": "male", + "age": 73, + "address": { + "state": "Delaware", + "city": "Eastmont" + } + }, + { + "id": 2379, + "name": "Franks Fuentes", + "gender": "male", + "age": 81, + "address": { + "state": "Maryland", + "city": "Leeper" + } + }, + { + "id": 2380, + "name": "Schroeder Michael", + "gender": "male", + "age": 57, + "address": { + "state": "New York", + "city": "Tilden" + } + }, + { + "id": 2381, + "name": "Sosa Welch", + "gender": "male", + "age": 49, + "address": { + "state": "New Jersey", + "city": "Kieler" + } + }, + { + "id": 2382, + "name": "Baldwin Solis", + "gender": "male", + "age": 62, + "address": { + "state": "Illinois", + "city": "Tyhee" + } + }, + { + "id": 2383, + "name": "Rodriquez Doyle", + "gender": "male", + "age": 59, + "address": { + "state": "Michigan", + "city": "Ruffin" + } + }, + { + "id": 2384, + "name": "Amelia Keith", + "gender": "female", + "age": 66, + "address": { + "state": "Rhode Island", + "city": "Catherine" + } + }, + { + "id": 2385, + "name": "Geraldine Graves", + "gender": "female", + "age": 20, + "address": { + "state": "Utah", + "city": "Greenfields" + } + }, + { + "id": 2386, + "name": "Randall Pratt", + "gender": "male", + "age": 37, + "address": { + "state": "Oklahoma", + "city": "Winesburg" + } + }, + { + "id": 2387, + "name": "Concepcion Guerra", + "gender": "female", + "age": 18, + "address": { + "state": "New Mexico", + "city": "Gordon" + } + }, + { + "id": 2388, + "name": "Lewis Romero", + "gender": "male", + "age": 39, + "address": { + "state": "Arkansas", + "city": "Ada" + } + }, + { + "id": 2389, + "name": "Blake Cooley", + "gender": "male", + "age": 68, + "address": { + "state": "Idaho", + "city": "Osmond" + } + }, + { + "id": 2390, + "name": "Kristy Perez", + "gender": "female", + "age": 76, + "address": { + "state": "Nebraska", + "city": "Blairstown" + } + }, + { + "id": 2391, + "name": "Enid Ramirez", + "gender": "female", + "age": 31, + "address": { + "state": "Arizona", + "city": "Bonanza" + } + }, + { + "id": 2392, + "name": "Tanisha Peterson", + "gender": "female", + "age": 23, + "address": { + "state": "Georgia", + "city": "Westboro" + } + }, + { + "id": 2393, + "name": "Blair Padilla", + "gender": "male", + "age": 74, + "address": { + "state": "Vermont", + "city": "Madrid" + } + }, + { + "id": 2394, + "name": "Nellie Daugherty", + "gender": "female", + "age": 32, + "address": { + "state": "North Dakota", + "city": "Dexter" + } + }, + { + "id": 2395, + "name": "Simone Salazar", + "gender": "female", + "age": 67, + "address": { + "state": "Kansas", + "city": "Bynum" + } + }, + { + "id": 2396, + "name": "Payne Ramos", + "gender": "male", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Nicholson" + } + }, + { + "id": 2397, + "name": "Sheri Roy", + "gender": "female", + "age": 73, + "address": { + "state": "Kentucky", + "city": "Cumminsville" + } + }, + { + "id": 2398, + "name": "Leticia Cortez", + "gender": "female", + "age": 50, + "address": { + "state": "South Dakota", + "city": "Geyserville" + } + }, + { + "id": 2399, + "name": "Finch Gregory", + "gender": "male", + "age": 24, + "address": { + "state": "Massachusetts", + "city": "Stockwell" + } + }, + { + "id": 2400, + "name": "Trujillo Harvey", + "gender": "male", + "age": 32, + "address": { + "state": "Indiana", + "city": "Slovan" + } + }, + { + "id": 2401, + "name": "Yvonne Lamb", + "gender": "female", + "age": 58, + "address": { + "state": "Texas", + "city": "Fulford" + } + }, + { + "id": 2402, + "name": "Kelli Mcdonald", + "gender": "female", + "age": 18, + "address": { + "state": "Wisconsin", + "city": "Vernon" + } + }, + { + "id": 2403, + "name": "Carey Young", + "gender": "female", + "age": 41, + "address": { + "state": "Mississippi", + "city": "Topaz" + } + }, + { + "id": 2404, + "name": "Oneill Mcclain", + "gender": "male", + "age": 25, + "address": { + "state": "Oklahoma", + "city": "Watrous" + } + }, + { + "id": 2405, + "name": "Dale Merrill", + "gender": "male", + "age": 66, + "address": { + "state": "Ohio", + "city": "Strykersville" + } + }, + { + "id": 2406, + "name": "Amalia Rosa", + "gender": "female", + "age": 18, + "address": { + "state": "Delaware", + "city": "Bradenville" + } + }, + { + "id": 2407, + "name": "Ellison Stout", + "gender": "male", + "age": 81, + "address": { + "state": "New Hampshire", + "city": "Orin" + } + }, + { + "id": 2408, + "name": "Burke Monroe", + "gender": "male", + "age": 69, + "address": { + "state": "Arizona", + "city": "Rockbridge" + } + }, + { + "id": 2409, + "name": "Mccoy Carver", + "gender": "male", + "age": 42, + "address": { + "state": "West Virginia", + "city": "Waterford" + } + }, + { + "id": 2410, + "name": "Britt Hoffman", + "gender": "male", + "age": 68, + "address": { + "state": "New York", + "city": "Gardners" + } + }, + { + "id": 2411, + "name": "Padilla Manning", + "gender": "male", + "age": 76, + "address": { + "state": "Kentucky", + "city": "Coinjock" + } + }, + { + "id": 2412, + "name": "Heath Green", + "gender": "male", + "age": 52, + "address": { + "state": "Rhode Island", + "city": "Roland" + } + }, + { + "id": 2413, + "name": "Carrie Martin", + "gender": "female", + "age": 39, + "address": { + "state": "California", + "city": "Darbydale" + } + }, + { + "id": 2414, + "name": "Aguilar Branch", + "gender": "male", + "age": 48, + "address": { + "state": "Georgia", + "city": "Newry" + } + }, + { + "id": 2415, + "name": "Kirkland Hurst", + "gender": "male", + "age": 52, + "address": { + "state": "Montana", + "city": "Yogaville" + } + }, + { + "id": 2416, + "name": "Levine Brown", + "gender": "male", + "age": 63, + "address": { + "state": "Illinois", + "city": "Lodoga" + } + }, + { + "id": 2417, + "name": "Rhonda Watts", + "gender": "female", + "age": 48, + "address": { + "state": "Minnesota", + "city": "Sunwest" + } + }, + { + "id": 2418, + "name": "Bertie Jones", + "gender": "female", + "age": 22, + "address": { + "state": "North Dakota", + "city": "Lopezo" + } + }, + { + "id": 2419, + "name": "Loraine Hester", + "gender": "female", + "age": 37, + "address": { + "state": "Nevada", + "city": "Verdi" + } + }, + { + "id": 2420, + "name": "England Odom", + "gender": "male", + "age": 26, + "address": { + "state": "Alaska", + "city": "Rockhill" + } + }, + { + "id": 2421, + "name": "Concepcion Wolf", + "gender": "female", + "age": 34, + "address": { + "state": "South Dakota", + "city": "Hilltop" + } + }, + { + "id": 2422, + "name": "Richard Ingram", + "gender": "male", + "age": 47, + "address": { + "state": "Florida", + "city": "Frystown" + } + }, + { + "id": 2423, + "name": "Stone Gonzales", + "gender": "male", + "age": 28, + "address": { + "state": "Massachusetts", + "city": "Diaperville" + } + }, + { + "id": 2424, + "name": "Stanton Cobb", + "gender": "male", + "age": 52, + "address": { + "state": "New Jersey", + "city": "Shelby" + } + }, + { + "id": 2425, + "name": "Morin Brock", + "gender": "male", + "age": 49, + "address": { + "state": "Connecticut", + "city": "Websterville" + } + }, + { + "id": 2426, + "name": "Cunningham Alvarez", + "gender": "male", + "age": 40, + "address": { + "state": "Oregon", + "city": "Lupton" + } + }, + { + "id": 2427, + "name": "Watts Gibson", + "gender": "male", + "age": 46, + "address": { + "state": "Wyoming", + "city": "Lawrence" + } + }, + { + "id": 2428, + "name": "Rosario Rose", + "gender": "male", + "age": 18, + "address": { + "state": "Nebraska", + "city": "Stewartville" + } + }, + { + "id": 2429, + "name": "Isabelle Pollard", + "gender": "female", + "age": 73, + "address": { + "state": "Virginia", + "city": "Sheatown" + } + }, + { + "id": 2430, + "name": "Debora Saunders", + "gender": "female", + "age": 68, + "address": { + "state": "North Carolina", + "city": "Cobbtown" + } + }, + { + "id": 2431, + "name": "Frank Riddle", + "gender": "male", + "age": 17, + "address": { + "state": "Idaho", + "city": "Kersey" + } + }, + { + "id": 2432, + "name": "Mcknight Knight", + "gender": "male", + "age": 43, + "address": { + "state": "Vermont", + "city": "Cresaptown" + } + }, + { + "id": 2433, + "name": "Letha Burt", + "gender": "female", + "age": 37, + "address": { + "state": "Louisiana", + "city": "Lithium" + } + }, + { + "id": 2434, + "name": "Gwen Travis", + "gender": "female", + "age": 64, + "address": { + "state": "Alabama", + "city": "Bordelonville" + } + }, + { + "id": 2435, + "name": "Velma Sullivan", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Coventry" + } + }, + { + "id": 2436, + "name": "Ethel Wilder", + "gender": "female", + "age": 32, + "address": { + "state": "Kansas", + "city": "Accoville" + } + }, + { + "id": 2437, + "name": "Hunter Conley", + "gender": "male", + "age": 50, + "address": { + "state": "New Mexico", + "city": "Sultana" + } + }, + { + "id": 2438, + "name": "Kristy Weaver", + "gender": "female", + "age": 44, + "address": { + "state": "Pennsylvania", + "city": "Callaghan" + } + }, + { + "id": 2439, + "name": "Kim Jennings", + "gender": "female", + "age": 30, + "address": { + "state": "Indiana", + "city": "Frizzleburg" + } + }, + { + "id": 2440, + "name": "Ingrid Middleton", + "gender": "female", + "age": 24, + "address": { + "state": "Washington", + "city": "Cliff" + } + }, + { + "id": 2441, + "name": "Shelly Hurley", + "gender": "female", + "age": 36, + "address": { + "state": "Maine", + "city": "Goodville" + } + }, + { + "id": 2442, + "name": "Iris Mckee", + "gender": "female", + "age": 48, + "address": { + "state": "Maryland", + "city": "Hampstead" + } + }, + { + "id": 2443, + "name": "House Clarke", + "gender": "male", + "age": 21, + "address": { + "state": "Arkansas", + "city": "Cashtown" + } + }, + { + "id": 2444, + "name": "Josephine Howell", + "gender": "female", + "age": 36, + "address": { + "state": "Missouri", + "city": "Cochranville" + } + }, + { + "id": 2445, + "name": "Fowler Bray", + "gender": "male", + "age": 42, + "address": { + "state": "Iowa", + "city": "Dixie" + } + }, + { + "id": 2446, + "name": "Tammi French", + "gender": "female", + "age": 37, + "address": { + "state": "Michigan", + "city": "Islandia" + } + }, + { + "id": 2447, + "name": "Anastasia Mullins", + "gender": "female", + "age": 60, + "address": { + "state": "Colorado", + "city": "Oberlin" + } + }, + { + "id": 2448, + "name": "Maxine Salazar", + "gender": "female", + "age": 63, + "address": { + "state": "South Carolina", + "city": "Winesburg" + } + }, + { + "id": 2449, + "name": "Delaney Fernandez", + "gender": "male", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Clinton" + } + }, + { + "id": 2450, + "name": "Tami Mason", + "gender": "female", + "age": 32, + "address": { + "state": "Illinois", + "city": "Strong" + } + }, + { + "id": 2451, + "name": "Jean Baker", + "gender": "female", + "age": 32, + "address": { + "state": "Indiana", + "city": "Homeland" + } + }, + { + "id": 2452, + "name": "Harper Vincent", + "gender": "male", + "age": 70, + "address": { + "state": "North Carolina", + "city": "Gallina" + } + }, + { + "id": 2453, + "name": "Cherie Cantrell", + "gender": "female", + "age": 71, + "address": { + "state": "Michigan", + "city": "Brady" + } + }, + { + "id": 2454, + "name": "Doris Donovan", + "gender": "female", + "age": 41, + "address": { + "state": "South Carolina", + "city": "Innsbrook" + } + }, + { + "id": 2455, + "name": "Stanton Morgan", + "gender": "male", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Coyote" + } + }, + { + "id": 2456, + "name": "Jeri Barnett", + "gender": "female", + "age": 67, + "address": { + "state": "Arkansas", + "city": "Coalmont" + } + }, + { + "id": 2457, + "name": "Moses Cline", + "gender": "male", + "age": 42, + "address": { + "state": "Georgia", + "city": "Marienthal" + } + }, + { + "id": 2458, + "name": "Boyer Bishop", + "gender": "male", + "age": 25, + "address": { + "state": "New Hampshire", + "city": "Waterview" + } + }, + { + "id": 2459, + "name": "Burke Estrada", + "gender": "male", + "age": 70, + "address": { + "state": "Massachusetts", + "city": "Edneyville" + } + }, + { + "id": 2460, + "name": "Monroe Potts", + "gender": "male", + "age": 77, + "address": { + "state": "Oklahoma", + "city": "Stewart" + } + }, + { + "id": 2461, + "name": "Mckenzie Hodges", + "gender": "male", + "age": 18, + "address": { + "state": "Virginia", + "city": "Axis" + } + }, + { + "id": 2462, + "name": "Levy Bradshaw", + "gender": "male", + "age": 43, + "address": { + "state": "North Dakota", + "city": "Vaughn" + } + }, + { + "id": 2463, + "name": "Mcgowan Shepard", + "gender": "male", + "age": 81, + "address": { + "state": "Tennessee", + "city": "Clarksburg" + } + }, + { + "id": 2464, + "name": "Marion Murray", + "gender": "female", + "age": 59, + "address": { + "state": "Hawaii", + "city": "Rossmore" + } + }, + { + "id": 2465, + "name": "Louella Fitzgerald", + "gender": "female", + "age": 36, + "address": { + "state": "Texas", + "city": "Elfrida" + } + }, + { + "id": 2466, + "name": "Lora Maxwell", + "gender": "female", + "age": 71, + "address": { + "state": "Missouri", + "city": "Nadine" + } + }, + { + "id": 2467, + "name": "Meagan Daniels", + "gender": "female", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Belleview" + } + }, + { + "id": 2468, + "name": "Mathis Sweeney", + "gender": "male", + "age": 49, + "address": { + "state": "West Virginia", + "city": "Savage" + } + }, + { + "id": 2469, + "name": "Oliver Mueller", + "gender": "male", + "age": 53, + "address": { + "state": "Arizona", + "city": "Knowlton" + } + }, + { + "id": 2470, + "name": "Terra Crosby", + "gender": "female", + "age": 49, + "address": { + "state": "Alabama", + "city": "Lacomb" + } + }, + { + "id": 2471, + "name": "Charlotte Blair", + "gender": "female", + "age": 37, + "address": { + "state": "New Mexico", + "city": "Bowie" + } + }, + { + "id": 2472, + "name": "Fry Dejesus", + "gender": "male", + "age": 53, + "address": { + "state": "Iowa", + "city": "Saddlebrooke" + } + }, + { + "id": 2473, + "name": "Maria Ross", + "gender": "female", + "age": 38, + "address": { + "state": "Oregon", + "city": "Fontanelle" + } + }, + { + "id": 2474, + "name": "Fran Haley", + "gender": "female", + "age": 76, + "address": { + "state": "Kentucky", + "city": "Shelby" + } + }, + { + "id": 2475, + "name": "Guadalupe Meyer", + "gender": "female", + "age": 43, + "address": { + "state": "Kansas", + "city": "Hall" + } + }, + { + "id": 2476, + "name": "Iva Kirk", + "gender": "female", + "age": 56, + "address": { + "state": "Pennsylvania", + "city": "Valle" + } + }, + { + "id": 2477, + "name": "Snider Park", + "gender": "male", + "age": 40, + "address": { + "state": "Idaho", + "city": "Kraemer" + } + }, + { + "id": 2478, + "name": "Contreras Mcneil", + "gender": "male", + "age": 54, + "address": { + "state": "New York", + "city": "Tilleda" + } + }, + { + "id": 2479, + "name": "Justine Hines", + "gender": "female", + "age": 61, + "address": { + "state": "Delaware", + "city": "Ballico" + } + }, + { + "id": 2480, + "name": "Rita Bean", + "gender": "female", + "age": 42, + "address": { + "state": "Wyoming", + "city": "Whitehaven" + } + }, + { + "id": 2481, + "name": "Lang Wallace", + "gender": "male", + "age": 24, + "address": { + "state": "Louisiana", + "city": "Otranto" + } + }, + { + "id": 2482, + "name": "Pat Griffin", + "gender": "female", + "age": 50, + "address": { + "state": "Utah", + "city": "Strykersville" + } + }, + { + "id": 2483, + "name": "Verna Adkins", + "gender": "female", + "age": 35, + "address": { + "state": "Nevada", + "city": "Hendersonville" + } + }, + { + "id": 2484, + "name": "Carver Peters", + "gender": "male", + "age": 22, + "address": { + "state": "Montana", + "city": "Slovan" + } + }, + { + "id": 2485, + "name": "Bauer Calhoun", + "gender": "male", + "age": 68, + "address": { + "state": "Rhode Island", + "city": "Babb" + } + }, + { + "id": 2486, + "name": "Head Townsend", + "gender": "male", + "age": 79, + "address": { + "state": "Maryland", + "city": "Carbonville" + } + }, + { + "id": 2487, + "name": "Callie Bartlett", + "gender": "female", + "age": 32, + "address": { + "state": "South Dakota", + "city": "Joes" + } + }, + { + "id": 2488, + "name": "Francine Garza", + "gender": "female", + "age": 23, + "address": { + "state": "Nebraska", + "city": "Logan" + } + }, + { + "id": 2489, + "name": "Tamika Tate", + "gender": "female", + "age": 73, + "address": { + "state": "Ohio", + "city": "Statenville" + } + }, + { + "id": 2490, + "name": "Vega Spencer", + "gender": "male", + "age": 74, + "address": { + "state": "Washington", + "city": "Tetherow" + } + }, + { + "id": 2491, + "name": "Stella Snow", + "gender": "female", + "age": 60, + "address": { + "state": "New Jersey", + "city": "Detroit" + } + }, + { + "id": 2492, + "name": "Bullock Juarez", + "gender": "male", + "age": 82, + "address": { + "state": "Colorado", + "city": "Nicholson" + } + }, + { + "id": 2493, + "name": "Bryant Hodge", + "gender": "male", + "age": 66, + "address": { + "state": "Maine", + "city": "Marne" + } + }, + { + "id": 2494, + "name": "Blanche Clements", + "gender": "female", + "age": 26, + "address": { + "state": "Alaska", + "city": "Needmore" + } + }, + { + "id": 2495, + "name": "Mitchell Kirkland", + "gender": "male", + "age": 62, + "address": { + "state": "Minnesota", + "city": "Choctaw" + } + }, + { + "id": 2496, + "name": "Mosley Mcfarland", + "gender": "male", + "age": 21, + "address": { + "state": "Florida", + "city": "Muir" + } + }, + { + "id": 2497, + "name": "April Williams", + "gender": "female", + "age": 46, + "address": { + "state": "Vermont", + "city": "Bedias" + } + }, + { + "id": 2498, + "name": "Ladonna Jensen", + "gender": "female", + "age": 73, + "address": { + "state": "Mississippi", + "city": "Darlington" + } + }, + { + "id": 2499, + "name": "Holland Prince", + "gender": "male", + "age": 57, + "address": { + "state": "Missouri", + "city": "Maybell" + } + }, + { + "id": 2500, + "name": "Mary Franco", + "gender": "female", + "age": 25, + "address": { + "state": "Delaware", + "city": "Crown" + } + }, + { + "id": 2501, + "name": "Bruce Hampton", + "gender": "male", + "age": 22, + "address": { + "state": "Florida", + "city": "Chamizal" + } + }, + { + "id": 2502, + "name": "Bethany West", + "gender": "female", + "age": 76, + "address": { + "state": "Alaska", + "city": "Durham" + } + }, + { + "id": 2503, + "name": "Garcia Vaughan", + "gender": "male", + "age": 68, + "address": { + "state": "Louisiana", + "city": "Riverton" + } + }, + { + "id": 2504, + "name": "Lena Nichols", + "gender": "female", + "age": 45, + "address": { + "state": "Colorado", + "city": "Fivepointville" + } + }, + { + "id": 2505, + "name": "Thelma Gilbert", + "gender": "female", + "age": 78, + "address": { + "state": "Michigan", + "city": "Roosevelt" + } + }, + { + "id": 2506, + "name": "Floyd Huff", + "gender": "male", + "age": 29, + "address": { + "state": "Indiana", + "city": "Clay" + } + }, + { + "id": 2507, + "name": "Ellis Cooke", + "gender": "male", + "age": 18, + "address": { + "state": "Maryland", + "city": "Sattley" + } + }, + { + "id": 2508, + "name": "Noreen Sharp", + "gender": "female", + "age": 55, + "address": { + "state": "Nevada", + "city": "Moquino" + } + }, + { + "id": 2509, + "name": "Lorie Nelson", + "gender": "female", + "age": 34, + "address": { + "state": "Wyoming", + "city": "Centerville" + } + }, + { + "id": 2510, + "name": "Margery Watts", + "gender": "female", + "age": 22, + "address": { + "state": "Maine", + "city": "Edenburg" + } + }, + { + "id": 2511, + "name": "Tia Mccray", + "gender": "female", + "age": 76, + "address": { + "state": "Vermont", + "city": "Hachita" + } + }, + { + "id": 2512, + "name": "Letha Mcpherson", + "gender": "female", + "age": 32, + "address": { + "state": "North Carolina", + "city": "Zortman" + } + }, + { + "id": 2513, + "name": "Berta Townsend", + "gender": "female", + "age": 25, + "address": { + "state": "Idaho", + "city": "Ladera" + } + }, + { + "id": 2514, + "name": "Ruiz Sutton", + "gender": "male", + "age": 81, + "address": { + "state": "Montana", + "city": "Stockdale" + } + }, + { + "id": 2515, + "name": "Elena Gallegos", + "gender": "female", + "age": 33, + "address": { + "state": "Virginia", + "city": "Fresno" + } + }, + { + "id": 2516, + "name": "Brittany Mullins", + "gender": "female", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Knowlton" + } + }, + { + "id": 2517, + "name": "Carney Barlow", + "gender": "male", + "age": 44, + "address": { + "state": "Pennsylvania", + "city": "Marshall" + } + }, + { + "id": 2518, + "name": "Osborne Combs", + "gender": "male", + "age": 43, + "address": { + "state": "South Carolina", + "city": "Derwood" + } + }, + { + "id": 2519, + "name": "Rowena Knox", + "gender": "female", + "age": 74, + "address": { + "state": "Kentucky", + "city": "Norvelt" + } + }, + { + "id": 2520, + "name": "Mccullough Riley", + "gender": "male", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Trucksville" + } + }, + { + "id": 2521, + "name": "Bolton Jarvis", + "gender": "male", + "age": 23, + "address": { + "state": "North Dakota", + "city": "Broadlands" + } + }, + { + "id": 2522, + "name": "Marietta Cash", + "gender": "female", + "age": 60, + "address": { + "state": "Oklahoma", + "city": "Robinette" + } + }, + { + "id": 2523, + "name": "Beth Hickman", + "gender": "female", + "age": 77, + "address": { + "state": "Ohio", + "city": "Roulette" + } + }, + { + "id": 2524, + "name": "Rodriguez Bowers", + "gender": "male", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Wyano" + } + }, + { + "id": 2525, + "name": "Hester Hancock", + "gender": "male", + "age": 56, + "address": { + "state": "Mississippi", + "city": "Farmers" + } + }, + { + "id": 2526, + "name": "Maritza Roberts", + "gender": "female", + "age": 82, + "address": { + "state": "Iowa", + "city": "Deercroft" + } + }, + { + "id": 2527, + "name": "Singleton Floyd", + "gender": "male", + "age": 46, + "address": { + "state": "Tennessee", + "city": "Salunga" + } + }, + { + "id": 2528, + "name": "Collins Lambert", + "gender": "male", + "age": 71, + "address": { + "state": "Kansas", + "city": "Tibbie" + } + }, + { + "id": 2529, + "name": "Sellers Barron", + "gender": "male", + "age": 20, + "address": { + "state": "New York", + "city": "Carrsville" + } + }, + { + "id": 2530, + "name": "Ortiz Luna", + "gender": "male", + "age": 34, + "address": { + "state": "Illinois", + "city": "Kula" + } + }, + { + "id": 2531, + "name": "Lina Stout", + "gender": "female", + "age": 75, + "address": { + "state": "Washington", + "city": "Delco" + } + }, + { + "id": 2532, + "name": "Brock Mcconnell", + "gender": "male", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Day" + } + }, + { + "id": 2533, + "name": "Stanton Galloway", + "gender": "male", + "age": 33, + "address": { + "state": "Rhode Island", + "city": "Garnet" + } + }, + { + "id": 2534, + "name": "Adrian Sanford", + "gender": "female", + "age": 54, + "address": { + "state": "South Dakota", + "city": "Bath" + } + }, + { + "id": 2535, + "name": "Gaines Montgomery", + "gender": "male", + "age": 61, + "address": { + "state": "Oregon", + "city": "Fontanelle" + } + }, + { + "id": 2536, + "name": "Cooper Webb", + "gender": "male", + "age": 61, + "address": { + "state": "Georgia", + "city": "Crenshaw" + } + }, + { + "id": 2537, + "name": "Dalton Hendricks", + "gender": "male", + "age": 17, + "address": { + "state": "Alabama", + "city": "Mansfield" + } + }, + { + "id": 2538, + "name": "Angelita Hammond", + "gender": "female", + "age": 64, + "address": { + "state": "Hawaii", + "city": "Calpine" + } + }, + { + "id": 2539, + "name": "Vaughn Mcdaniel", + "gender": "male", + "age": 17, + "address": { + "state": "Arizona", + "city": "Sanford" + } + }, + { + "id": 2540, + "name": "Jocelyn Sims", + "gender": "female", + "age": 77, + "address": { + "state": "Minnesota", + "city": "Enetai" + } + }, + { + "id": 2541, + "name": "Holly Sherman", + "gender": "female", + "age": 61, + "address": { + "state": "New Mexico", + "city": "Rosine" + } + }, + { + "id": 2542, + "name": "Owen Hanson", + "gender": "male", + "age": 67, + "address": { + "state": "Texas", + "city": "Teasdale" + } + }, + { + "id": 2543, + "name": "Melendez Pearson", + "gender": "male", + "age": 44, + "address": { + "state": "California", + "city": "Kaka" + } + }, + { + "id": 2544, + "name": "Wagner Woodward", + "gender": "male", + "age": 65, + "address": { + "state": "Connecticut", + "city": "Sabillasville" + } + }, + { + "id": 2545, + "name": "Kramer Ratliff", + "gender": "male", + "age": 74, + "address": { + "state": "Utah", + "city": "Bluetown" + } + }, + { + "id": 2546, + "name": "Sally Fox", + "gender": "female", + "age": 81, + "address": { + "state": "Nebraska", + "city": "Winchester" + } + }, + { + "id": 2547, + "name": "Jody Monroe", + "gender": "female", + "age": 66, + "address": { + "state": "Wisconsin", + "city": "Tuskahoma" + } + }, + { + "id": 2548, + "name": "Marva Mack", + "gender": "female", + "age": 36, + "address": { + "state": "Rhode Island", + "city": "Muir" + } + }, + { + "id": 2549, + "name": "Henry Vincent", + "gender": "male", + "age": 80, + "address": { + "state": "Oklahoma", + "city": "Coultervillle" + } + }, + { + "id": 2550, + "name": "Leila Marshall", + "gender": "female", + "age": 27, + "address": { + "state": "New York", + "city": "Levant" + } + }, + { + "id": 2551, + "name": "Daphne Jensen", + "gender": "female", + "age": 67, + "address": { + "state": "Connecticut", + "city": "Needmore" + } + }, + { + "id": 2552, + "name": "Fuller Keith", + "gender": "male", + "age": 48, + "address": { + "state": "New Jersey", + "city": "Kylertown" + } + }, + { + "id": 2553, + "name": "Gibson Bridges", + "gender": "male", + "age": 21, + "address": { + "state": "Kansas", + "city": "Bath" + } + }, + { + "id": 2554, + "name": "Alejandra Rios", + "gender": "female", + "age": 37, + "address": { + "state": "Maine", + "city": "Century" + } + }, + { + "id": 2555, + "name": "Benson Gaines", + "gender": "male", + "age": 41, + "address": { + "state": "New Hampshire", + "city": "Keller" + } + }, + { + "id": 2556, + "name": "Juliet Cherry", + "gender": "female", + "age": 27, + "address": { + "state": "Tennessee", + "city": "Worcester" + } + }, + { + "id": 2557, + "name": "Holmes Parrish", + "gender": "male", + "age": 78, + "address": { + "state": "Idaho", + "city": "Catharine" + } + }, + { + "id": 2558, + "name": "Boone Casey", + "gender": "male", + "age": 39, + "address": { + "state": "Wyoming", + "city": "Washington" + } + }, + { + "id": 2559, + "name": "Angelita Ray", + "gender": "female", + "age": 67, + "address": { + "state": "Oregon", + "city": "Oceola" + } + }, + { + "id": 2560, + "name": "Hardin Sutton", + "gender": "male", + "age": 58, + "address": { + "state": "South Dakota", + "city": "Leroy" + } + }, + { + "id": 2561, + "name": "Chasity Dennis", + "gender": "female", + "age": 76, + "address": { + "state": "North Carolina", + "city": "Holtville" + } + }, + { + "id": 2562, + "name": "Ramsey Randall", + "gender": "male", + "age": 72, + "address": { + "state": "Massachusetts", + "city": "Lithium" + } + }, + { + "id": 2563, + "name": "Merritt Stevenson", + "gender": "male", + "age": 77, + "address": { + "state": "Mississippi", + "city": "Glasgow" + } + }, + { + "id": 2564, + "name": "Lancaster Gilmore", + "gender": "male", + "age": 34, + "address": { + "state": "Arkansas", + "city": "Franklin" + } + }, + { + "id": 2565, + "name": "Katy Hewitt", + "gender": "female", + "age": 27, + "address": { + "state": "Texas", + "city": "Fairlee" + } + }, + { + "id": 2566, + "name": "Marcy Clark", + "gender": "female", + "age": 67, + "address": { + "state": "Virginia", + "city": "Westmoreland" + } + }, + { + "id": 2567, + "name": "Penelope England", + "gender": "female", + "age": 26, + "address": { + "state": "Iowa", + "city": "Castleton" + } + }, + { + "id": 2568, + "name": "Mayo Gamble", + "gender": "male", + "age": 78, + "address": { + "state": "Illinois", + "city": "Drummond" + } + }, + { + "id": 2569, + "name": "Kelli Carney", + "gender": "female", + "age": 66, + "address": { + "state": "Pennsylvania", + "city": "Veyo" + } + }, + { + "id": 2570, + "name": "Colon Howe", + "gender": "male", + "age": 54, + "address": { + "state": "North Dakota", + "city": "Sattley" + } + }, + { + "id": 2571, + "name": "Underwood Long", + "gender": "male", + "age": 34, + "address": { + "state": "Nevada", + "city": "Cliff" + } + }, + { + "id": 2572, + "name": "Conway Gentry", + "gender": "male", + "age": 35, + "address": { + "state": "Alaska", + "city": "Trail" + } + }, + { + "id": 2573, + "name": "Audra Bradley", + "gender": "female", + "age": 39, + "address": { + "state": "Montana", + "city": "Steinhatchee" + } + }, + { + "id": 2574, + "name": "Elliott Butler", + "gender": "male", + "age": 74, + "address": { + "state": "Ohio", + "city": "Macdona" + } + }, + { + "id": 2575, + "name": "Maura Hale", + "gender": "female", + "age": 51, + "address": { + "state": "Missouri", + "city": "Joppa" + } + }, + { + "id": 2576, + "name": "Berry Rosa", + "gender": "male", + "age": 74, + "address": { + "state": "Arizona", + "city": "Hilltop" + } + }, + { + "id": 2577, + "name": "Rosanne Pace", + "gender": "female", + "age": 59, + "address": { + "state": "Indiana", + "city": "Chase" + } + }, + { + "id": 2578, + "name": "Margo Sosa", + "gender": "female", + "age": 55, + "address": { + "state": "Utah", + "city": "Kraemer" + } + }, + { + "id": 2579, + "name": "Dale Heath", + "gender": "female", + "age": 39, + "address": { + "state": "Minnesota", + "city": "Mayfair" + } + }, + { + "id": 2580, + "name": "Stevens Cain", + "gender": "male", + "age": 71, + "address": { + "state": "California", + "city": "Onton" + } + }, + { + "id": 2581, + "name": "Patel Lloyd", + "gender": "male", + "age": 69, + "address": { + "state": "Nebraska", + "city": "Hegins" + } + }, + { + "id": 2582, + "name": "Rowland Sanders", + "gender": "male", + "age": 73, + "address": { + "state": "Louisiana", + "city": "Dunlo" + } + }, + { + "id": 2583, + "name": "Vazquez Maddox", + "gender": "male", + "age": 73, + "address": { + "state": "South Carolina", + "city": "Mappsville" + } + }, + { + "id": 2584, + "name": "Stephanie Reeves", + "gender": "female", + "age": 54, + "address": { + "state": "Wisconsin", + "city": "Emison" + } + }, + { + "id": 2585, + "name": "Slater Chapman", + "gender": "male", + "age": 50, + "address": { + "state": "Kentucky", + "city": "Camptown" + } + }, + { + "id": 2586, + "name": "Lindsay Gardner", + "gender": "male", + "age": 35, + "address": { + "state": "Georgia", + "city": "Faxon" + } + }, + { + "id": 2587, + "name": "Sheree Barber", + "gender": "female", + "age": 20, + "address": { + "state": "New Mexico", + "city": "Hasty" + } + }, + { + "id": 2588, + "name": "Diana Albert", + "gender": "female", + "age": 42, + "address": { + "state": "Vermont", + "city": "Ripley" + } + }, + { + "id": 2589, + "name": "Ortiz Perry", + "gender": "male", + "age": 70, + "address": { + "state": "Delaware", + "city": "Bakersville" + } + }, + { + "id": 2590, + "name": "Bradley Clayton", + "gender": "male", + "age": 70, + "address": { + "state": "Alabama", + "city": "Shaft" + } + }, + { + "id": 2591, + "name": "Adela Hahn", + "gender": "female", + "age": 70, + "address": { + "state": "Michigan", + "city": "Gratton" + } + }, + { + "id": 2592, + "name": "Gilliam Luna", + "gender": "male", + "age": 23, + "address": { + "state": "Maryland", + "city": "Cumminsville" + } + }, + { + "id": 2593, + "name": "Natalie Hudson", + "gender": "female", + "age": 45, + "address": { + "state": "Washington", + "city": "Eureka" + } + }, + { + "id": 2594, + "name": "Lucille French", + "gender": "female", + "age": 68, + "address": { + "state": "Florida", + "city": "Hendersonville" + } + }, + { + "id": 2595, + "name": "Larsen Wiggins", + "gender": "male", + "age": 55, + "address": { + "state": "West Virginia", + "city": "Vernon" + } + }, + { + "id": 2596, + "name": "Dolores Adkins", + "gender": "female", + "age": 73, + "address": { + "state": "Hawaii", + "city": "Rote" + } + }, + { + "id": 2597, + "name": "Stuart Allen", + "gender": "male", + "age": 38, + "address": { + "state": "Connecticut", + "city": "Smock" + } + }, + { + "id": 2598, + "name": "Perez Howard", + "gender": "male", + "age": 71, + "address": { + "state": "New York", + "city": "Como" + } + }, + { + "id": 2599, + "name": "Rollins Powers", + "gender": "male", + "age": 34, + "address": { + "state": "South Carolina", + "city": "Ryderwood" + } + }, + { + "id": 2600, + "name": "Moore Cook", + "gender": "male", + "age": 42, + "address": { + "state": "Colorado", + "city": "Snowville" + } + }, + { + "id": 2601, + "name": "Humphrey Macias", + "gender": "male", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Hatteras" + } + }, + { + "id": 2602, + "name": "Benton Weber", + "gender": "male", + "age": 42, + "address": { + "state": "Wisconsin", + "city": "Guilford" + } + }, + { + "id": 2603, + "name": "Pate Gutierrez", + "gender": "male", + "age": 41, + "address": { + "state": "Massachusetts", + "city": "Brecon" + } + }, + { + "id": 2604, + "name": "Jarvis Sampson", + "gender": "male", + "age": 77, + "address": { + "state": "Indiana", + "city": "Blairstown" + } + }, + { + "id": 2605, + "name": "Nelda Davis", + "gender": "female", + "age": 30, + "address": { + "state": "Ohio", + "city": "Gerton" + } + }, + { + "id": 2606, + "name": "Odonnell Newman", + "gender": "male", + "age": 46, + "address": { + "state": "Kentucky", + "city": "Hampstead" + } + }, + { + "id": 2607, + "name": "Kara Ramirez", + "gender": "female", + "age": 69, + "address": { + "state": "South Dakota", + "city": "Sabillasville" + } + }, + { + "id": 2608, + "name": "Jacobson Robbins", + "gender": "male", + "age": 47, + "address": { + "state": "Arizona", + "city": "Thermal" + } + }, + { + "id": 2609, + "name": "Randall Hess", + "gender": "male", + "age": 22, + "address": { + "state": "Louisiana", + "city": "Bison" + } + }, + { + "id": 2610, + "name": "Gould Wolf", + "gender": "male", + "age": 38, + "address": { + "state": "Vermont", + "city": "Grapeview" + } + }, + { + "id": 2611, + "name": "Jeannette Battle", + "gender": "female", + "age": 59, + "address": { + "state": "Tennessee", + "city": "Bowie" + } + }, + { + "id": 2612, + "name": "Ivy Maldonado", + "gender": "female", + "age": 21, + "address": { + "state": "Illinois", + "city": "Lynn" + } + }, + { + "id": 2613, + "name": "Tia Odom", + "gender": "female", + "age": 24, + "address": { + "state": "West Virginia", + "city": "Hendersonville" + } + }, + { + "id": 2614, + "name": "Margie Noel", + "gender": "female", + "age": 55, + "address": { + "state": "Oregon", + "city": "Caspar" + } + }, + { + "id": 2615, + "name": "Marianne Lancaster", + "gender": "female", + "age": 40, + "address": { + "state": "Delaware", + "city": "Trexlertown" + } + }, + { + "id": 2616, + "name": "Avila Pruitt", + "gender": "male", + "age": 21, + "address": { + "state": "Iowa", + "city": "Lafferty" + } + }, + { + "id": 2617, + "name": "Gilmore Curtis", + "gender": "male", + "age": 49, + "address": { + "state": "Montana", + "city": "Hessville" + } + }, + { + "id": 2618, + "name": "Dale Morse", + "gender": "male", + "age": 56, + "address": { + "state": "California", + "city": "Bascom" + } + }, + { + "id": 2619, + "name": "Victoria Kidd", + "gender": "female", + "age": 54, + "address": { + "state": "Wyoming", + "city": "Belvoir" + } + }, + { + "id": 2620, + "name": "Graciela Sexton", + "gender": "female", + "age": 45, + "address": { + "state": "Maine", + "city": "Dodge" + } + }, + { + "id": 2621, + "name": "Lester Maddox", + "gender": "male", + "age": 55, + "address": { + "state": "North Carolina", + "city": "Neahkahnie" + } + }, + { + "id": 2622, + "name": "Cherie Cotton", + "gender": "female", + "age": 47, + "address": { + "state": "Nevada", + "city": "Magnolia" + } + }, + { + "id": 2623, + "name": "Joann Crosby", + "gender": "female", + "age": 20, + "address": { + "state": "New Hampshire", + "city": "Stewart" + } + }, + { + "id": 2624, + "name": "Kelley Hartman", + "gender": "female", + "age": 28, + "address": { + "state": "North Dakota", + "city": "Malo" + } + }, + { + "id": 2625, + "name": "Freeman Casey", + "gender": "male", + "age": 76, + "address": { + "state": "Idaho", + "city": "Townsend" + } + }, + { + "id": 2626, + "name": "Brenda Paul", + "gender": "female", + "age": 71, + "address": { + "state": "Virginia", + "city": "Somerset" + } + }, + { + "id": 2627, + "name": "Chan Fitzpatrick", + "gender": "male", + "age": 39, + "address": { + "state": "Alabama", + "city": "Cressey" + } + }, + { + "id": 2628, + "name": "Oconnor Richmond", + "gender": "male", + "age": 20, + "address": { + "state": "Michigan", + "city": "Coleville" + } + }, + { + "id": 2629, + "name": "Alvarado Lopez", + "gender": "male", + "age": 67, + "address": { + "state": "Florida", + "city": "Bridgetown" + } + }, + { + "id": 2630, + "name": "Lindsay Merritt", + "gender": "female", + "age": 44, + "address": { + "state": "Kansas", + "city": "Loveland" + } + }, + { + "id": 2631, + "name": "Gloria Wilkerson", + "gender": "female", + "age": 38, + "address": { + "state": "Maryland", + "city": "Lydia" + } + }, + { + "id": 2632, + "name": "Bentley Blankenship", + "gender": "male", + "age": 67, + "address": { + "state": "Texas", + "city": "Snyderville" + } + }, + { + "id": 2633, + "name": "Gill Mathews", + "gender": "male", + "age": 67, + "address": { + "state": "Minnesota", + "city": "Emory" + } + }, + { + "id": 2634, + "name": "Gilliam Jenkins", + "gender": "male", + "age": 32, + "address": { + "state": "Alaska", + "city": "Rowe" + } + }, + { + "id": 2635, + "name": "Figueroa Puckett", + "gender": "male", + "age": 50, + "address": { + "state": "Nebraska", + "city": "Woodlands" + } + }, + { + "id": 2636, + "name": "Cindy Wilder", + "gender": "female", + "age": 59, + "address": { + "state": "Pennsylvania", + "city": "Fairview" + } + }, + { + "id": 2637, + "name": "Knapp Ortega", + "gender": "male", + "age": 19, + "address": { + "state": "Washington", + "city": "Germanton" + } + }, + { + "id": 2638, + "name": "Lorene Lowe", + "gender": "female", + "age": 25, + "address": { + "state": "Hawaii", + "city": "Woodburn" + } + }, + { + "id": 2639, + "name": "Freda Clark", + "gender": "female", + "age": 66, + "address": { + "state": "Missouri", + "city": "Martell" + } + }, + { + "id": 2640, + "name": "Kasey Wiley", + "gender": "female", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Coldiron" + } + }, + { + "id": 2641, + "name": "Carmen Brooks", + "gender": "female", + "age": 61, + "address": { + "state": "Arkansas", + "city": "Englevale" + } + }, + { + "id": 2642, + "name": "Elsie Hewitt", + "gender": "female", + "age": 49, + "address": { + "state": "Georgia", + "city": "Tonopah" + } + }, + { + "id": 2643, + "name": "Lula Simpson", + "gender": "female", + "age": 74, + "address": { + "state": "Oklahoma", + "city": "Hillsboro" + } + }, + { + "id": 2644, + "name": "Booth Lyons", + "gender": "male", + "age": 55, + "address": { + "state": "Mississippi", + "city": "Croom" + } + }, + { + "id": 2645, + "name": "Knox Willis", + "gender": "male", + "age": 67, + "address": { + "state": "Utah", + "city": "Wadsworth" + } + }, + { + "id": 2646, + "name": "Barbra Pena", + "gender": "female", + "age": 24, + "address": { + "state": "Hawaii", + "city": "Navarre" + } + }, + { + "id": 2647, + "name": "Dyer Harmon", + "gender": "male", + "age": 40, + "address": { + "state": "Louisiana", + "city": "Sussex" + } + }, + { + "id": 2648, + "name": "Katheryn Farrell", + "gender": "female", + "age": 43, + "address": { + "state": "New York", + "city": "Vale" + } + }, + { + "id": 2649, + "name": "Rosanne Savage", + "gender": "female", + "age": 82, + "address": { + "state": "Vermont", + "city": "Boling" + } + }, + { + "id": 2650, + "name": "Katrina Madden", + "gender": "female", + "age": 51, + "address": { + "state": "Ohio", + "city": "Morgandale" + } + }, + { + "id": 2651, + "name": "Shaw Mosley", + "gender": "male", + "age": 51, + "address": { + "state": "Rhode Island", + "city": "Bendon" + } + }, + { + "id": 2652, + "name": "Elsa Rush", + "gender": "female", + "age": 71, + "address": { + "state": "Iowa", + "city": "Harmon" + } + }, + { + "id": 2653, + "name": "Jacklyn Strong", + "gender": "female", + "age": 23, + "address": { + "state": "South Carolina", + "city": "Dragoon" + } + }, + { + "id": 2654, + "name": "Monroe Dixon", + "gender": "male", + "age": 44, + "address": { + "state": "Michigan", + "city": "Elrama" + } + }, + { + "id": 2655, + "name": "Lottie Olson", + "gender": "female", + "age": 81, + "address": { + "state": "Texas", + "city": "Ahwahnee" + } + }, + { + "id": 2656, + "name": "Love Pickett", + "gender": "male", + "age": 41, + "address": { + "state": "North Dakota", + "city": "Alamo" + } + }, + { + "id": 2657, + "name": "Gina Merritt", + "gender": "female", + "age": 82, + "address": { + "state": "Illinois", + "city": "Dixie" + } + }, + { + "id": 2658, + "name": "Fox Byrd", + "gender": "male", + "age": 81, + "address": { + "state": "Oklahoma", + "city": "Dante" + } + }, + { + "id": 2659, + "name": "Mcfadden Vinson", + "gender": "male", + "age": 31, + "address": { + "state": "Delaware", + "city": "Lupton" + } + }, + { + "id": 2660, + "name": "Dona Cannon", + "gender": "female", + "age": 27, + "address": { + "state": "New Jersey", + "city": "Aurora" + } + }, + { + "id": 2661, + "name": "Holmes Franklin", + "gender": "male", + "age": 44, + "address": { + "state": "Georgia", + "city": "Loma" + } + }, + { + "id": 2662, + "name": "Bean Ochoa", + "gender": "male", + "age": 40, + "address": { + "state": "Arizona", + "city": "Leland" + } + }, + { + "id": 2663, + "name": "Tran Cash", + "gender": "male", + "age": 71, + "address": { + "state": "Tennessee", + "city": "Fairfield" + } + }, + { + "id": 2664, + "name": "Dean Mendez", + "gender": "male", + "age": 69, + "address": { + "state": "Kentucky", + "city": "Cetronia" + } + }, + { + "id": 2665, + "name": "Wolfe Pate", + "gender": "male", + "age": 33, + "address": { + "state": "Oregon", + "city": "Hessville" + } + }, + { + "id": 2666, + "name": "Anita Vega", + "gender": "female", + "age": 78, + "address": { + "state": "South Dakota", + "city": "Dixonville" + } + }, + { + "id": 2667, + "name": "Talley Wilkinson", + "gender": "male", + "age": 69, + "address": { + "state": "Florida", + "city": "Selma" + } + }, + { + "id": 2668, + "name": "Sutton Lang", + "gender": "male", + "age": 46, + "address": { + "state": "Massachusetts", + "city": "Clarktown" + } + }, + { + "id": 2669, + "name": "Oliver Hunt", + "gender": "male", + "age": 78, + "address": { + "state": "Idaho", + "city": "Warsaw" + } + }, + { + "id": 2670, + "name": "Florine Hayden", + "gender": "female", + "age": 74, + "address": { + "state": "Wisconsin", + "city": "Barrelville" + } + }, + { + "id": 2671, + "name": "Bennett Ramsey", + "gender": "male", + "age": 19, + "address": { + "state": "New Mexico", + "city": "Strykersville" + } + }, + { + "id": 2672, + "name": "Mcmahon Mendoza", + "gender": "male", + "age": 71, + "address": { + "state": "Kansas", + "city": "Faxon" + } + }, + { + "id": 2673, + "name": "Mamie Lewis", + "gender": "female", + "age": 30, + "address": { + "state": "Mississippi", + "city": "Elfrida" + } + }, + { + "id": 2674, + "name": "Kramer Puckett", + "gender": "male", + "age": 63, + "address": { + "state": "Colorado", + "city": "Santel" + } + }, + { + "id": 2675, + "name": "Hopkins Vincent", + "gender": "male", + "age": 65, + "address": { + "state": "West Virginia", + "city": "Topaz" + } + }, + { + "id": 2676, + "name": "Stephanie Munoz", + "gender": "female", + "age": 82, + "address": { + "state": "New Hampshire", + "city": "Bannock" + } + }, + { + "id": 2677, + "name": "Clemons Roach", + "gender": "male", + "age": 79, + "address": { + "state": "Montana", + "city": "Rivera" + } + }, + { + "id": 2678, + "name": "Watson Campos", + "gender": "male", + "age": 24, + "address": { + "state": "Utah", + "city": "Tioga" + } + }, + { + "id": 2679, + "name": "Espinoza Tanner", + "gender": "male", + "age": 28, + "address": { + "state": "Wyoming", + "city": "Cleary" + } + }, + { + "id": 2680, + "name": "Lessie Hogan", + "gender": "female", + "age": 29, + "address": { + "state": "Alabama", + "city": "Kanauga" + } + }, + { + "id": 2681, + "name": "Dominguez York", + "gender": "male", + "age": 32, + "address": { + "state": "Pennsylvania", + "city": "Grandview" + } + }, + { + "id": 2682, + "name": "Earlene Weeks", + "gender": "female", + "age": 34, + "address": { + "state": "Alaska", + "city": "Dunnavant" + } + }, + { + "id": 2683, + "name": "Odom Booth", + "gender": "male", + "age": 17, + "address": { + "state": "Arkansas", + "city": "Taycheedah" + } + }, + { + "id": 2684, + "name": "Simmons Dunlap", + "gender": "male", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Hasty" + } + }, + { + "id": 2685, + "name": "Camille Maynard", + "gender": "female", + "age": 43, + "address": { + "state": "Virginia", + "city": "Riegelwood" + } + }, + { + "id": 2686, + "name": "Marion Decker", + "gender": "female", + "age": 81, + "address": { + "state": "Washington", + "city": "Martinsville" + } + }, + { + "id": 2687, + "name": "Mitzi Farmer", + "gender": "female", + "age": 35, + "address": { + "state": "Nevada", + "city": "Wheaton" + } + }, + { + "id": 2688, + "name": "Hall Wall", + "gender": "male", + "age": 81, + "address": { + "state": "Missouri", + "city": "Keller" + } + }, + { + "id": 2689, + "name": "Hewitt Higgins", + "gender": "male", + "age": 35, + "address": { + "state": "North Carolina", + "city": "Movico" + } + }, + { + "id": 2690, + "name": "Winnie Montoya", + "gender": "female", + "age": 41, + "address": { + "state": "Indiana", + "city": "Inkerman" + } + }, + { + "id": 2691, + "name": "Payne Bradley", + "gender": "male", + "age": 63, + "address": { + "state": "Connecticut", + "city": "Forestburg" + } + }, + { + "id": 2692, + "name": "Olivia Simmons", + "gender": "female", + "age": 65, + "address": { + "state": "Maine", + "city": "Shasta" + } + }, + { + "id": 2693, + "name": "Aguilar Mclean", + "gender": "male", + "age": 25, + "address": { + "state": "Maryland", + "city": "Greenock" + } + }, + { + "id": 2694, + "name": "Rene Walker", + "gender": "female", + "age": 69, + "address": { + "state": "Nebraska", + "city": "Abiquiu" + } + }, + { + "id": 2695, + "name": "Eva Rowe", + "gender": "female", + "age": 26, + "address": { + "state": "Maine", + "city": "Bedias" + } + }, + { + "id": 2696, + "name": "Gillespie Decker", + "gender": "male", + "age": 54, + "address": { + "state": "Pennsylvania", + "city": "Weeksville" + } + }, + { + "id": 2697, + "name": "Leonor Mcdonald", + "gender": "female", + "age": 54, + "address": { + "state": "Missouri", + "city": "Bethany" + } + }, + { + "id": 2698, + "name": "Megan Dillon", + "gender": "female", + "age": 52, + "address": { + "state": "Connecticut", + "city": "Coinjock" + } + }, + { + "id": 2699, + "name": "Oneal Bryant", + "gender": "male", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Murillo" + } + }, + { + "id": 2700, + "name": "Lorene Mcclain", + "gender": "female", + "age": 39, + "address": { + "state": "New Jersey", + "city": "Whitewater" + } + }, + { + "id": 2701, + "name": "Thelma Cochran", + "gender": "female", + "age": 67, + "address": { + "state": "West Virginia", + "city": "Layhill" + } + }, + { + "id": 2702, + "name": "Nichols Jacobson", + "gender": "male", + "age": 47, + "address": { + "state": "Wyoming", + "city": "Sylvanite" + } + }, + { + "id": 2703, + "name": "Maryann Kelly", + "gender": "female", + "age": 71, + "address": { + "state": "California", + "city": "Gilgo" + } + }, + { + "id": 2704, + "name": "Hubbard Santana", + "gender": "male", + "age": 28, + "address": { + "state": "Maryland", + "city": "Cedarville" + } + }, + { + "id": 2705, + "name": "Louisa Rodriquez", + "gender": "female", + "age": 76, + "address": { + "state": "Arizona", + "city": "Laurelton" + } + }, + { + "id": 2706, + "name": "Dina Brewer", + "gender": "female", + "age": 42, + "address": { + "state": "Minnesota", + "city": "Collins" + } + }, + { + "id": 2707, + "name": "Vicky Flynn", + "gender": "female", + "age": 58, + "address": { + "state": "Utah", + "city": "Lisco" + } + }, + { + "id": 2708, + "name": "Clarissa Reese", + "gender": "female", + "age": 51, + "address": { + "state": "Montana", + "city": "Oceola" + } + }, + { + "id": 2709, + "name": "Baldwin Hodge", + "gender": "male", + "age": 35, + "address": { + "state": "Washington", + "city": "Indio" + } + }, + { + "id": 2710, + "name": "Sawyer Weaver", + "gender": "male", + "age": 57, + "address": { + "state": "Nevada", + "city": "Gerber" + } + }, + { + "id": 2711, + "name": "Lowery Holloway", + "gender": "male", + "age": 32, + "address": { + "state": "Iowa", + "city": "Magnolia" + } + }, + { + "id": 2712, + "name": "Julie Rice", + "gender": "female", + "age": 80, + "address": { + "state": "Colorado", + "city": "Hall" + } + }, + { + "id": 2713, + "name": "Alvarez James", + "gender": "male", + "age": 82, + "address": { + "state": "New Hampshire", + "city": "Homeworth" + } + }, + { + "id": 2714, + "name": "Gretchen Fischer", + "gender": "female", + "age": 18, + "address": { + "state": "Rhode Island", + "city": "Wells" + } + }, + { + "id": 2715, + "name": "Magdalena Hartman", + "gender": "female", + "age": 65, + "address": { + "state": "Georgia", + "city": "Austinburg" + } + }, + { + "id": 2716, + "name": "Cain Juarez", + "gender": "male", + "age": 79, + "address": { + "state": "Kentucky", + "city": "Sanders" + } + }, + { + "id": 2717, + "name": "Gonzales Bowers", + "gender": "male", + "age": 45, + "address": { + "state": "Oklahoma", + "city": "National" + } + }, + { + "id": 2718, + "name": "Frost Berry", + "gender": "male", + "age": 19, + "address": { + "state": "Tennessee", + "city": "Veguita" + } + }, + { + "id": 2719, + "name": "Freda Gibson", + "gender": "female", + "age": 66, + "address": { + "state": "Texas", + "city": "Genoa" + } + }, + { + "id": 2720, + "name": "Lessie Le", + "gender": "female", + "age": 63, + "address": { + "state": "Kansas", + "city": "Garfield" + } + }, + { + "id": 2721, + "name": "Conrad Merritt", + "gender": "male", + "age": 52, + "address": { + "state": "Illinois", + "city": "Belfair" + } + }, + { + "id": 2722, + "name": "Susan Buck", + "gender": "female", + "age": 41, + "address": { + "state": "Alabama", + "city": "Sidman" + } + }, + { + "id": 2723, + "name": "Lilly Horne", + "gender": "female", + "age": 56, + "address": { + "state": "South Dakota", + "city": "Deputy" + } + }, + { + "id": 2724, + "name": "Mia Sampson", + "gender": "female", + "age": 30, + "address": { + "state": "Michigan", + "city": "Toftrees" + } + }, + { + "id": 2725, + "name": "House Stone", + "gender": "male", + "age": 59, + "address": { + "state": "Alaska", + "city": "Goldfield" + } + }, + { + "id": 2726, + "name": "Karyn Underwood", + "gender": "female", + "age": 25, + "address": { + "state": "North Dakota", + "city": "Baden" + } + }, + { + "id": 2727, + "name": "Reese Henson", + "gender": "male", + "age": 64, + "address": { + "state": "North Carolina", + "city": "Bakersville" + } + }, + { + "id": 2728, + "name": "Bowen Cameron", + "gender": "male", + "age": 35, + "address": { + "state": "South Carolina", + "city": "Russellville" + } + }, + { + "id": 2729, + "name": "Hughes Ayers", + "gender": "male", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Cascades" + } + }, + { + "id": 2730, + "name": "Moses Barr", + "gender": "male", + "age": 53, + "address": { + "state": "Ohio", + "city": "Cade" + } + }, + { + "id": 2731, + "name": "Duran Reynolds", + "gender": "male", + "age": 60, + "address": { + "state": "New York", + "city": "Vandiver" + } + }, + { + "id": 2732, + "name": "Jaclyn Baker", + "gender": "female", + "age": 53, + "address": { + "state": "Oregon", + "city": "Glasgow" + } + }, + { + "id": 2733, + "name": "Millie Erickson", + "gender": "female", + "age": 25, + "address": { + "state": "Idaho", + "city": "Juntura" + } + }, + { + "id": 2734, + "name": "Juliet Flowers", + "gender": "female", + "age": 21, + "address": { + "state": "Wisconsin", + "city": "Century" + } + }, + { + "id": 2735, + "name": "Brigitte Garrett", + "gender": "female", + "age": 49, + "address": { + "state": "Vermont", + "city": "Barclay" + } + }, + { + "id": 2736, + "name": "Watson Donovan", + "gender": "male", + "age": 81, + "address": { + "state": "Arkansas", + "city": "Jenkinsville" + } + }, + { + "id": 2737, + "name": "Golden Johns", + "gender": "male", + "age": 53, + "address": { + "state": "Florida", + "city": "Groton" + } + }, + { + "id": 2738, + "name": "Allie Carroll", + "gender": "female", + "age": 70, + "address": { + "state": "Hawaii", + "city": "Thermal" + } + }, + { + "id": 2739, + "name": "Craft Gould", + "gender": "male", + "age": 47, + "address": { + "state": "Nebraska", + "city": "Berwind" + } + }, + { + "id": 2740, + "name": "Kirby Boyd", + "gender": "male", + "age": 55, + "address": { + "state": "Delaware", + "city": "Eastmont" + } + }, + { + "id": 2741, + "name": "Parrish Luna", + "gender": "male", + "age": 40, + "address": { + "state": "Mississippi", + "city": "Catherine" + } + }, + { + "id": 2742, + "name": "Patterson Pugh", + "gender": "male", + "age": 31, + "address": { + "state": "New Mexico", + "city": "Beaulieu" + } + }, + { + "id": 2743, + "name": "Morris Harding", + "gender": "male", + "age": 26, + "address": { + "state": "Virginia", + "city": "Goochland" + } + }, + { + "id": 2744, + "name": "Cohen Welch", + "gender": "male", + "age": 66, + "address": { + "state": "South Carolina", + "city": "Marshall" + } + }, + { + "id": 2745, + "name": "Collier Scott", + "gender": "male", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Farmington" + } + }, + { + "id": 2746, + "name": "Ruby Klein", + "gender": "female", + "age": 38, + "address": { + "state": "North Dakota", + "city": "Chautauqua" + } + }, + { + "id": 2747, + "name": "Newman Mills", + "gender": "male", + "age": 71, + "address": { + "state": "North Carolina", + "city": "Dennard" + } + }, + { + "id": 2748, + "name": "Janis Fleming", + "gender": "female", + "age": 23, + "address": { + "state": "Rhode Island", + "city": "Driftwood" + } + }, + { + "id": 2749, + "name": "Hogan Sears", + "gender": "male", + "age": 38, + "address": { + "state": "Virginia", + "city": "Eagleville" + } + }, + { + "id": 2750, + "name": "Joann Oconnor", + "gender": "female", + "age": 74, + "address": { + "state": "Hawaii", + "city": "Camas" + } + }, + { + "id": 2751, + "name": "Chapman Good", + "gender": "male", + "age": 74, + "address": { + "state": "Nebraska", + "city": "Belleview" + } + }, + { + "id": 2752, + "name": "Fitzgerald Benjamin", + "gender": "male", + "age": 17, + "address": { + "state": "Oregon", + "city": "Ogema" + } + }, + { + "id": 2753, + "name": "Elva Mueller", + "gender": "female", + "age": 58, + "address": { + "state": "New Mexico", + "city": "Chalfant" + } + }, + { + "id": 2754, + "name": "Concetta Warner", + "gender": "female", + "age": 60, + "address": { + "state": "Indiana", + "city": "Yorklyn" + } + }, + { + "id": 2755, + "name": "Gale Greer", + "gender": "female", + "age": 20, + "address": { + "state": "Texas", + "city": "Derwood" + } + }, + { + "id": 2756, + "name": "Janie Flowers", + "gender": "female", + "age": 27, + "address": { + "state": "Arizona", + "city": "Retsof" + } + }, + { + "id": 2757, + "name": "Lynn Jefferson", + "gender": "male", + "age": 47, + "address": { + "state": "Maine", + "city": "Vincent" + } + }, + { + "id": 2758, + "name": "Latoya Phillips", + "gender": "female", + "age": 49, + "address": { + "state": "Louisiana", + "city": "Hasty" + } + }, + { + "id": 2759, + "name": "Ray Henson", + "gender": "male", + "age": 70, + "address": { + "state": "New Jersey", + "city": "Bentley" + } + }, + { + "id": 2760, + "name": "Foley Perry", + "gender": "male", + "age": 64, + "address": { + "state": "Wyoming", + "city": "Bainbridge" + } + }, + { + "id": 2761, + "name": "Margaret Solomon", + "gender": "female", + "age": 36, + "address": { + "state": "Michigan", + "city": "Jacksonburg" + } + }, + { + "id": 2762, + "name": "Trevino Vinson", + "gender": "male", + "age": 82, + "address": { + "state": "West Virginia", + "city": "Fairlee" + } + }, + { + "id": 2763, + "name": "Bartlett Graves", + "gender": "male", + "age": 63, + "address": { + "state": "Illinois", + "city": "Noblestown" + } + }, + { + "id": 2764, + "name": "Cain Pitts", + "gender": "male", + "age": 60, + "address": { + "state": "Washington", + "city": "Ivanhoe" + } + }, + { + "id": 2765, + "name": "Consuelo Bruce", + "gender": "female", + "age": 68, + "address": { + "state": "Alaska", + "city": "Westmoreland" + } + }, + { + "id": 2766, + "name": "Ava Montgomery", + "gender": "female", + "age": 53, + "address": { + "state": "Vermont", + "city": "Williston" + } + }, + { + "id": 2767, + "name": "Polly Giles", + "gender": "female", + "age": 18, + "address": { + "state": "Arkansas", + "city": "Kennedyville" + } + }, + { + "id": 2768, + "name": "Mari Simon", + "gender": "female", + "age": 54, + "address": { + "state": "Delaware", + "city": "Smock" + } + }, + { + "id": 2769, + "name": "Lisa Rollins", + "gender": "female", + "age": 20, + "address": { + "state": "Wisconsin", + "city": "Orick" + } + }, + { + "id": 2770, + "name": "Booker Schwartz", + "gender": "male", + "age": 47, + "address": { + "state": "New Hampshire", + "city": "Mammoth" + } + }, + { + "id": 2771, + "name": "Janelle Rodgers", + "gender": "female", + "age": 33, + "address": { + "state": "New York", + "city": "Elwood" + } + }, + { + "id": 2772, + "name": "Benita Logan", + "gender": "female", + "age": 24, + "address": { + "state": "Kentucky", + "city": "Roeville" + } + }, + { + "id": 2773, + "name": "Beverley Atkins", + "gender": "female", + "age": 71, + "address": { + "state": "Kansas", + "city": "Osage" + } + }, + { + "id": 2774, + "name": "Paula Webster", + "gender": "female", + "age": 25, + "address": { + "state": "Missouri", + "city": "Lynn" + } + }, + { + "id": 2775, + "name": "Summers Landry", + "gender": "male", + "age": 79, + "address": { + "state": "Alabama", + "city": "Enoree" + } + }, + { + "id": 2776, + "name": "Rodriguez Hart", + "gender": "male", + "age": 57, + "address": { + "state": "South Dakota", + "city": "Datil" + } + }, + { + "id": 2777, + "name": "Jean Daniel", + "gender": "female", + "age": 57, + "address": { + "state": "Utah", + "city": "Babb" + } + }, + { + "id": 2778, + "name": "Avila Schneider", + "gender": "male", + "age": 70, + "address": { + "state": "Minnesota", + "city": "Cliff" + } + }, + { + "id": 2779, + "name": "Meghan Hester", + "gender": "female", + "age": 30, + "address": { + "state": "Georgia", + "city": "Hollins" + } + }, + { + "id": 2780, + "name": "Pearson Harper", + "gender": "male", + "age": 24, + "address": { + "state": "California", + "city": "Harrodsburg" + } + }, + { + "id": 2781, + "name": "Penny Benson", + "gender": "female", + "age": 20, + "address": { + "state": "Oklahoma", + "city": "Joppa" + } + }, + { + "id": 2782, + "name": "Melva Solis", + "gender": "female", + "age": 41, + "address": { + "state": "Iowa", + "city": "Hiwasse" + } + }, + { + "id": 2783, + "name": "Doreen Benton", + "gender": "female", + "age": 36, + "address": { + "state": "Massachusetts", + "city": "Walker" + } + }, + { + "id": 2784, + "name": "Jocelyn Gregory", + "gender": "female", + "age": 21, + "address": { + "state": "Nevada", + "city": "Leyner" + } + }, + { + "id": 2785, + "name": "Tommie Hughes", + "gender": "female", + "age": 56, + "address": { + "state": "Idaho", + "city": "Wells" + } + }, + { + "id": 2786, + "name": "Mcneil Shaw", + "gender": "male", + "age": 72, + "address": { + "state": "Mississippi", + "city": "Bath" + } + }, + { + "id": 2787, + "name": "Casandra Douglas", + "gender": "female", + "age": 18, + "address": { + "state": "Ohio", + "city": "Homeland" + } + }, + { + "id": 2788, + "name": "Gilda Walters", + "gender": "female", + "age": 18, + "address": { + "state": "Tennessee", + "city": "Nicut" + } + }, + { + "id": 2789, + "name": "Lizzie Hopkins", + "gender": "female", + "age": 69, + "address": { + "state": "Maryland", + "city": "Wescosville" + } + }, + { + "id": 2790, + "name": "Rosalind Barrera", + "gender": "female", + "age": 81, + "address": { + "state": "Pennsylvania", + "city": "Bannock" + } + }, + { + "id": 2791, + "name": "Tami Schmidt", + "gender": "female", + "age": 43, + "address": { + "state": "Florida", + "city": "Brecon" + } + }, + { + "id": 2792, + "name": "Maura Sanders", + "gender": "female", + "age": 29, + "address": { + "state": "Colorado", + "city": "Cressey" + } + }, + { + "id": 2793, + "name": "Robles Carney", + "gender": "male", + "age": 51, + "address": { + "state": "Louisiana", + "city": "Churchill" + } + }, + { + "id": 2794, + "name": "Reed Pugh", + "gender": "male", + "age": 60, + "address": { + "state": "Florida", + "city": "Chaparrito" + } + }, + { + "id": 2795, + "name": "Patel Dunlap", + "gender": "male", + "age": 54, + "address": { + "state": "Illinois", + "city": "Fannett" + } + }, + { + "id": 2796, + "name": "Hess Foreman", + "gender": "male", + "age": 78, + "address": { + "state": "Idaho", + "city": "Dana" + } + }, + { + "id": 2797, + "name": "Maggie Melendez", + "gender": "female", + "age": 66, + "address": { + "state": "Texas", + "city": "Riegelwood" + } + }, + { + "id": 2798, + "name": "Estes Pitts", + "gender": "male", + "age": 21, + "address": { + "state": "Ohio", + "city": "Singer" + } + }, + { + "id": 2799, + "name": "Stuart Galloway", + "gender": "male", + "age": 37, + "address": { + "state": "Tennessee", + "city": "Kent" + } + }, + { + "id": 2800, + "name": "Callie Santana", + "gender": "female", + "age": 20, + "address": { + "state": "Arizona", + "city": "Matheny" + } + }, + { + "id": 2801, + "name": "Franks Jordan", + "gender": "male", + "age": 30, + "address": { + "state": "Mississippi", + "city": "Romeville" + } + }, + { + "id": 2802, + "name": "Hayes Scott", + "gender": "male", + "age": 57, + "address": { + "state": "Vermont", + "city": "Camptown" + } + }, + { + "id": 2803, + "name": "Arlene Henderson", + "gender": "female", + "age": 65, + "address": { + "state": "Colorado", + "city": "Flintville" + } + }, + { + "id": 2804, + "name": "Moreno Farmer", + "gender": "male", + "age": 18, + "address": { + "state": "Alabama", + "city": "Bison" + } + }, + { + "id": 2805, + "name": "Dalton Norris", + "gender": "male", + "age": 29, + "address": { + "state": "Alaska", + "city": "Strong" + } + }, + { + "id": 2806, + "name": "Brianna Koch", + "gender": "female", + "age": 81, + "address": { + "state": "South Carolina", + "city": "Needmore" + } + }, + { + "id": 2807, + "name": "Goldie Peters", + "gender": "female", + "age": 36, + "address": { + "state": "Hawaii", + "city": "Williston" + } + }, + { + "id": 2808, + "name": "Moran Holloway", + "gender": "male", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Kersey" + } + }, + { + "id": 2809, + "name": "Beatriz Cervantes", + "gender": "female", + "age": 35, + "address": { + "state": "Pennsylvania", + "city": "Freeburn" + } + }, + { + "id": 2810, + "name": "Kendra Hebert", + "gender": "female", + "age": 51, + "address": { + "state": "South Dakota", + "city": "Watchtower" + } + }, + { + "id": 2811, + "name": "Judith Bowen", + "gender": "female", + "age": 18, + "address": { + "state": "Delaware", + "city": "Ypsilanti" + } + }, + { + "id": 2812, + "name": "Aida Meadows", + "gender": "female", + "age": 75, + "address": { + "state": "Oklahoma", + "city": "Mammoth" + } + }, + { + "id": 2813, + "name": "Finley Sweet", + "gender": "male", + "age": 44, + "address": { + "state": "Maryland", + "city": "Goldfield" + } + }, + { + "id": 2814, + "name": "Belinda Fischer", + "gender": "female", + "age": 80, + "address": { + "state": "New Hampshire", + "city": "Bend" + } + }, + { + "id": 2815, + "name": "Gail Aguirre", + "gender": "female", + "age": 28, + "address": { + "state": "West Virginia", + "city": "Oasis" + } + }, + { + "id": 2816, + "name": "Georgette Davis", + "gender": "female", + "age": 32, + "address": { + "state": "Kentucky", + "city": "Roosevelt" + } + }, + { + "id": 2817, + "name": "Erna Hood", + "gender": "female", + "age": 17, + "address": { + "state": "Rhode Island", + "city": "Boykin" + } + }, + { + "id": 2818, + "name": "Jerri Dyer", + "gender": "female", + "age": 37, + "address": { + "state": "Iowa", + "city": "Wakulla" + } + }, + { + "id": 2819, + "name": "Berg Alston", + "gender": "male", + "age": 38, + "address": { + "state": "Indiana", + "city": "Blackgum" + } + }, + { + "id": 2820, + "name": "Swanson Sawyer", + "gender": "male", + "age": 50, + "address": { + "state": "North Dakota", + "city": "Fontanelle" + } + }, + { + "id": 2821, + "name": "Lindsay Huffman", + "gender": "female", + "age": 82, + "address": { + "state": "Virginia", + "city": "Waterford" + } + }, + { + "id": 2822, + "name": "Harrington Durham", + "gender": "male", + "age": 32, + "address": { + "state": "New York", + "city": "Elrama" + } + }, + { + "id": 2823, + "name": "Alana Stone", + "gender": "female", + "age": 29, + "address": { + "state": "Kansas", + "city": "Kenvil" + } + }, + { + "id": 2824, + "name": "Velez Lopez", + "gender": "male", + "age": 17, + "address": { + "state": "Missouri", + "city": "Hilltop" + } + }, + { + "id": 2825, + "name": "Mcdowell Peck", + "gender": "male", + "age": 65, + "address": { + "state": "Massachusetts", + "city": "Vernon" + } + }, + { + "id": 2826, + "name": "Chan Cleveland", + "gender": "male", + "age": 56, + "address": { + "state": "North Carolina", + "city": "Rowe" + } + }, + { + "id": 2827, + "name": "Vargas Puckett", + "gender": "male", + "age": 52, + "address": { + "state": "Michigan", + "city": "Abiquiu" + } + }, + { + "id": 2828, + "name": "Juliette Hatfield", + "gender": "female", + "age": 64, + "address": { + "state": "Washington", + "city": "Nadine" + } + }, + { + "id": 2829, + "name": "Joanna Guerra", + "gender": "female", + "age": 70, + "address": { + "state": "California", + "city": "Dawn" + } + }, + { + "id": 2830, + "name": "Kelly Ramos", + "gender": "female", + "age": 61, + "address": { + "state": "Arkansas", + "city": "Shelby" + } + }, + { + "id": 2831, + "name": "Polly Lowery", + "gender": "female", + "age": 33, + "address": { + "state": "Oregon", + "city": "Calverton" + } + }, + { + "id": 2832, + "name": "Shari Wade", + "gender": "female", + "age": 50, + "address": { + "state": "Wyoming", + "city": "Roderfield" + } + }, + { + "id": 2833, + "name": "Ryan Contreras", + "gender": "male", + "age": 52, + "address": { + "state": "Nevada", + "city": "Williams" + } + }, + { + "id": 2834, + "name": "Small Delacruz", + "gender": "male", + "age": 26, + "address": { + "state": "Nebraska", + "city": "Sunnyside" + } + }, + { + "id": 2835, + "name": "Jannie Simpson", + "gender": "female", + "age": 38, + "address": { + "state": "Wisconsin", + "city": "Macdona" + } + }, + { + "id": 2836, + "name": "Bonnie Huber", + "gender": "female", + "age": 22, + "address": { + "state": "New Mexico", + "city": "Broadlands" + } + }, + { + "id": 2837, + "name": "Marilyn Moreno", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Sunwest" + } + }, + { + "id": 2838, + "name": "Riggs Blackburn", + "gender": "male", + "age": 75, + "address": { + "state": "Connecticut", + "city": "Caberfae" + } + }, + { + "id": 2839, + "name": "Twila Marks", + "gender": "female", + "age": 31, + "address": { + "state": "Montana", + "city": "Gila" + } + }, + { + "id": 2840, + "name": "Kaitlin Vincent", + "gender": "female", + "age": 23, + "address": { + "state": "New Jersey", + "city": "Marshall" + } + }, + { + "id": 2841, + "name": "Phoebe Newton", + "gender": "female", + "age": 42, + "address": { + "state": "Utah", + "city": "Hickory" + } + }, + { + "id": 2842, + "name": "Bianca Duran", + "gender": "female", + "age": 59, + "address": { + "state": "Vermont", + "city": "Rossmore" + } + }, + { + "id": 2843, + "name": "Morrow Bean", + "gender": "male", + "age": 53, + "address": { + "state": "Mississippi", + "city": "Shindler" + } + }, + { + "id": 2844, + "name": "House Boyle", + "gender": "male", + "age": 56, + "address": { + "state": "Delaware", + "city": "Dixonville" + } + }, + { + "id": 2845, + "name": "Mcpherson Phelps", + "gender": "male", + "age": 74, + "address": { + "state": "Montana", + "city": "Deputy" + } + }, + { + "id": 2846, + "name": "Francis Mcneil", + "gender": "female", + "age": 74, + "address": { + "state": "Tennessee", + "city": "Gorst" + } + }, + { + "id": 2847, + "name": "Baldwin Morse", + "gender": "male", + "age": 53, + "address": { + "state": "Nebraska", + "city": "Baker" + } + }, + { + "id": 2848, + "name": "Rich Rich", + "gender": "male", + "age": 22, + "address": { + "state": "Wyoming", + "city": "Alamo" + } + }, + { + "id": 2849, + "name": "Mccormick Head", + "gender": "male", + "age": 78, + "address": { + "state": "New Jersey", + "city": "Vowinckel" + } + }, + { + "id": 2850, + "name": "Lynn Young", + "gender": "female", + "age": 25, + "address": { + "state": "Idaho", + "city": "Ogema" + } + }, + { + "id": 2851, + "name": "Terri Kerr", + "gender": "female", + "age": 45, + "address": { + "state": "Kentucky", + "city": "Durham" + } + }, + { + "id": 2852, + "name": "Robyn Joyner", + "gender": "female", + "age": 30, + "address": { + "state": "Rhode Island", + "city": "Nelson" + } + }, + { + "id": 2853, + "name": "Suzanne Bradley", + "gender": "female", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Zortman" + } + }, + { + "id": 2854, + "name": "Fowler Carlson", + "gender": "male", + "age": 74, + "address": { + "state": "Minnesota", + "city": "Marion" + } + }, + { + "id": 2855, + "name": "Casey Douglas", + "gender": "female", + "age": 81, + "address": { + "state": "Arkansas", + "city": "Allensworth" + } + }, + { + "id": 2856, + "name": "Boyle Rivers", + "gender": "male", + "age": 43, + "address": { + "state": "Nevada", + "city": "Dotsero" + } + }, + { + "id": 2857, + "name": "French Romero", + "gender": "male", + "age": 34, + "address": { + "state": "Missouri", + "city": "Blandburg" + } + }, + { + "id": 2858, + "name": "Diana Webb", + "gender": "female", + "age": 65, + "address": { + "state": "Indiana", + "city": "Websterville" + } + }, + { + "id": 2859, + "name": "Calderon Mooney", + "gender": "male", + "age": 40, + "address": { + "state": "California", + "city": "Konterra" + } + }, + { + "id": 2860, + "name": "Dorothea Vance", + "gender": "female", + "age": 18, + "address": { + "state": "Alabama", + "city": "Edmund" + } + }, + { + "id": 2861, + "name": "Tanner Good", + "gender": "male", + "age": 54, + "address": { + "state": "North Dakota", + "city": "Westwood" + } + }, + { + "id": 2862, + "name": "Lenora Bishop", + "gender": "female", + "age": 36, + "address": { + "state": "Maine", + "city": "Williams" + } + }, + { + "id": 2863, + "name": "Adeline Hodge", + "gender": "female", + "age": 31, + "address": { + "state": "Louisiana", + "city": "Itmann" + } + }, + { + "id": 2864, + "name": "Henderson Cash", + "gender": "male", + "age": 56, + "address": { + "state": "New Hampshire", + "city": "Beechmont" + } + }, + { + "id": 2865, + "name": "Diane Green", + "gender": "female", + "age": 73, + "address": { + "state": "Arizona", + "city": "Trail" + } + }, + { + "id": 2866, + "name": "Pollard Huff", + "gender": "male", + "age": 73, + "address": { + "state": "Kansas", + "city": "Cliff" + } + }, + { + "id": 2867, + "name": "Sadie Gould", + "gender": "female", + "age": 76, + "address": { + "state": "Alaska", + "city": "Roland" + } + }, + { + "id": 2868, + "name": "Kari Preston", + "gender": "female", + "age": 53, + "address": { + "state": "Utah", + "city": "Freetown" + } + }, + { + "id": 2869, + "name": "Roy Noel", + "gender": "male", + "age": 76, + "address": { + "state": "Texas", + "city": "Sims" + } + }, + { + "id": 2870, + "name": "Marla Salinas", + "gender": "female", + "age": 70, + "address": { + "state": "Virginia", + "city": "Bodega" + } + }, + { + "id": 2871, + "name": "Bridget Dean", + "gender": "female", + "age": 55, + "address": { + "state": "Georgia", + "city": "Caberfae" + } + }, + { + "id": 2872, + "name": "Celina Odom", + "gender": "female", + "age": 69, + "address": { + "state": "Colorado", + "city": "Caledonia" + } + }, + { + "id": 2873, + "name": "Shelby Howe", + "gender": "female", + "age": 79, + "address": { + "state": "Ohio", + "city": "Avoca" + } + }, + { + "id": 2874, + "name": "Jeanette Myers", + "gender": "female", + "age": 41, + "address": { + "state": "Florida", + "city": "Woodburn" + } + }, + { + "id": 2875, + "name": "Elaine Pearson", + "gender": "female", + "age": 69, + "address": { + "state": "Hawaii", + "city": "Manila" + } + }, + { + "id": 2876, + "name": "Meyer Roth", + "gender": "male", + "age": 29, + "address": { + "state": "Iowa", + "city": "Alleghenyville" + } + }, + { + "id": 2877, + "name": "Nixon Casey", + "gender": "male", + "age": 60, + "address": { + "state": "Illinois", + "city": "Highland" + } + }, + { + "id": 2878, + "name": "Conley Olsen", + "gender": "male", + "age": 57, + "address": { + "state": "New York", + "city": "Lindisfarne" + } + }, + { + "id": 2879, + "name": "Guthrie Burnett", + "gender": "male", + "age": 63, + "address": { + "state": "Pennsylvania", + "city": "Yorklyn" + } + }, + { + "id": 2880, + "name": "Mack Hamilton", + "gender": "male", + "age": 65, + "address": { + "state": "South Dakota", + "city": "Gorham" + } + }, + { + "id": 2881, + "name": "Griffith Macias", + "gender": "male", + "age": 44, + "address": { + "state": "Wisconsin", + "city": "Zarephath" + } + }, + { + "id": 2882, + "name": "Bettie Pugh", + "gender": "female", + "age": 39, + "address": { + "state": "Connecticut", + "city": "Grantville" + } + }, + { + "id": 2883, + "name": "Reid Berg", + "gender": "male", + "age": 41, + "address": { + "state": "Maryland", + "city": "Reno" + } + }, + { + "id": 2884, + "name": "Le Walton", + "gender": "male", + "age": 37, + "address": { + "state": "New Mexico", + "city": "Dawn" + } + }, + { + "id": 2885, + "name": "Diaz Schwartz", + "gender": "male", + "age": 34, + "address": { + "state": "Oklahoma", + "city": "Cowiche" + } + }, + { + "id": 2886, + "name": "Fannie Fuentes", + "gender": "female", + "age": 71, + "address": { + "state": "Oregon", + "city": "Muir" + } + }, + { + "id": 2887, + "name": "Juliet Schmidt", + "gender": "female", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Glenshaw" + } + }, + { + "id": 2888, + "name": "Ellen Diaz", + "gender": "female", + "age": 36, + "address": { + "state": "Washington", + "city": "Linwood" + } + }, + { + "id": 2889, + "name": "Avis Owen", + "gender": "female", + "age": 79, + "address": { + "state": "Michigan", + "city": "Lumberton" + } + }, + { + "id": 2890, + "name": "Victoria Hardy", + "gender": "female", + "age": 30, + "address": { + "state": "South Carolina", + "city": "Dana" + } + }, + { + "id": 2891, + "name": "Candice Maxwell", + "gender": "female", + "age": 19, + "address": { + "state": "Alabama", + "city": "Clara" + } + }, + { + "id": 2892, + "name": "Silva Waller", + "gender": "male", + "age": 26, + "address": { + "state": "Montana", + "city": "Lisco" + } + }, + { + "id": 2893, + "name": "Glenn Fleming", + "gender": "male", + "age": 31, + "address": { + "state": "Ohio", + "city": "Sanford" + } + }, + { + "id": 2894, + "name": "Thelma Bass", + "gender": "female", + "age": 44, + "address": { + "state": "South Carolina", + "city": "Nutrioso" + } + }, + { + "id": 2895, + "name": "Hendricks Harmon", + "gender": "male", + "age": 71, + "address": { + "state": "Tennessee", + "city": "Tilden" + } + }, + { + "id": 2896, + "name": "Freeman Delgado", + "gender": "male", + "age": 70, + "address": { + "state": "Colorado", + "city": "Fairlee" + } + }, + { + "id": 2897, + "name": "Dominique Gallegos", + "gender": "female", + "age": 80, + "address": { + "state": "Indiana", + "city": "Trinway" + } + }, + { + "id": 2898, + "name": "Glenna Green", + "gender": "female", + "age": 64, + "address": { + "state": "Washington", + "city": "Catharine" + } + }, + { + "id": 2899, + "name": "Page Pope", + "gender": "male", + "age": 25, + "address": { + "state": "Florida", + "city": "Madrid" + } + }, + { + "id": 2900, + "name": "Lakeisha Ramsey", + "gender": "female", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Canterwood" + } + }, + { + "id": 2901, + "name": "Sanders Guerra", + "gender": "male", + "age": 28, + "address": { + "state": "Hawaii", + "city": "Newry" + } + }, + { + "id": 2902, + "name": "Jamie Harris", + "gender": "female", + "age": 33, + "address": { + "state": "Alaska", + "city": "Lowell" + } + }, + { + "id": 2903, + "name": "Fuentes Beck", + "gender": "male", + "age": 78, + "address": { + "state": "Wyoming", + "city": "Florence" + } + }, + { + "id": 2904, + "name": "Higgins Velez", + "gender": "male", + "age": 54, + "address": { + "state": "Iowa", + "city": "Woodruff" + } + }, + { + "id": 2905, + "name": "Carmen Mcgee", + "gender": "female", + "age": 70, + "address": { + "state": "Utah", + "city": "Kanauga" + } + }, + { + "id": 2906, + "name": "Dorsey Cook", + "gender": "male", + "age": 48, + "address": { + "state": "Nevada", + "city": "Hollins" + } + }, + { + "id": 2907, + "name": "Coffey Mcpherson", + "gender": "male", + "age": 71, + "address": { + "state": "New Hampshire", + "city": "Canoochee" + } + }, + { + "id": 2908, + "name": "Love Jennings", + "gender": "male", + "age": 23, + "address": { + "state": "Rhode Island", + "city": "Vaughn" + } + }, + { + "id": 2909, + "name": "Mary Rocha", + "gender": "female", + "age": 41, + "address": { + "state": "West Virginia", + "city": "Cutter" + } + }, + { + "id": 2910, + "name": "Nadine Langley", + "gender": "female", + "age": 79, + "address": { + "state": "Connecticut", + "city": "Troy" + } + }, + { + "id": 2911, + "name": "Adele Fuentes", + "gender": "female", + "age": 56, + "address": { + "state": "New Jersey", + "city": "Beaulieu" + } + }, + { + "id": 2912, + "name": "Alford Norman", + "gender": "male", + "age": 52, + "address": { + "state": "Virginia", + "city": "Delshire" + } + }, + { + "id": 2913, + "name": "Roseann Hensley", + "gender": "female", + "age": 68, + "address": { + "state": "North Dakota", + "city": "Wolcott" + } + }, + { + "id": 2914, + "name": "Beryl Knox", + "gender": "female", + "age": 55, + "address": { + "state": "Maryland", + "city": "Bynum" + } + }, + { + "id": 2915, + "name": "Dorthy Austin", + "gender": "female", + "age": 29, + "address": { + "state": "Delaware", + "city": "Ahwahnee" + } + }, + { + "id": 2916, + "name": "Kemp Stone", + "gender": "male", + "age": 38, + "address": { + "state": "Pennsylvania", + "city": "Cavalero" + } + }, + { + "id": 2917, + "name": "Carole Santos", + "gender": "female", + "age": 42, + "address": { + "state": "Mississippi", + "city": "Greenbackville" + } + }, + { + "id": 2918, + "name": "Hudson Colon", + "gender": "male", + "age": 36, + "address": { + "state": "South Dakota", + "city": "Carbonville" + } + }, + { + "id": 2919, + "name": "Jean Rojas", + "gender": "female", + "age": 17, + "address": { + "state": "Idaho", + "city": "Bethpage" + } + }, + { + "id": 2920, + "name": "Lynn Peterson", + "gender": "male", + "age": 62, + "address": { + "state": "Kentucky", + "city": "Riviera" + } + }, + { + "id": 2921, + "name": "Tisha Rivera", + "gender": "female", + "age": 65, + "address": { + "state": "Missouri", + "city": "Juarez" + } + }, + { + "id": 2922, + "name": "Fry Romero", + "gender": "male", + "age": 43, + "address": { + "state": "Arizona", + "city": "Volta" + } + }, + { + "id": 2923, + "name": "Tina Russo", + "gender": "female", + "age": 63, + "address": { + "state": "Arkansas", + "city": "Sidman" + } + }, + { + "id": 2924, + "name": "Rowland Mcguire", + "gender": "male", + "age": 30, + "address": { + "state": "Georgia", + "city": "Brooktrails" + } + }, + { + "id": 2925, + "name": "Mosley Baker", + "gender": "male", + "age": 49, + "address": { + "state": "New York", + "city": "Bennett" + } + }, + { + "id": 2926, + "name": "Sarah Trevino", + "gender": "female", + "age": 59, + "address": { + "state": "California", + "city": "Teasdale" + } + }, + { + "id": 2927, + "name": "Wright Garrison", + "gender": "male", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Suitland" + } + }, + { + "id": 2928, + "name": "Tessa Collier", + "gender": "female", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Veyo" + } + }, + { + "id": 2929, + "name": "Tameka Jimenez", + "gender": "female", + "age": 58, + "address": { + "state": "Vermont", + "city": "Dyckesville" + } + }, + { + "id": 2930, + "name": "Perkins Atkins", + "gender": "male", + "age": 48, + "address": { + "state": "Louisiana", + "city": "Nogal" + } + }, + { + "id": 2931, + "name": "Vera Gilliam", + "gender": "female", + "age": 32, + "address": { + "state": "Oklahoma", + "city": "Cataract" + } + }, + { + "id": 2932, + "name": "Blankenship Ballard", + "gender": "male", + "age": 81, + "address": { + "state": "Oregon", + "city": "Chumuckla" + } + }, + { + "id": 2933, + "name": "Gonzalez Levy", + "gender": "male", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Greensburg" + } + }, + { + "id": 2934, + "name": "Jeannie Meyer", + "gender": "female", + "age": 42, + "address": { + "state": "Illinois", + "city": "Juntura" + } + }, + { + "id": 2935, + "name": "Caroline Serrano", + "gender": "female", + "age": 23, + "address": { + "state": "Nebraska", + "city": "Summerset" + } + }, + { + "id": 2936, + "name": "Mcneil Salinas", + "gender": "male", + "age": 50, + "address": { + "state": "Michigan", + "city": "Stonybrook" + } + }, + { + "id": 2937, + "name": "Mathews Robertson", + "gender": "male", + "age": 33, + "address": { + "state": "Kansas", + "city": "Driftwood" + } + }, + { + "id": 2938, + "name": "Sofia Ortiz", + "gender": "female", + "age": 17, + "address": { + "state": "Texas", + "city": "Ruckersville" + } + }, + { + "id": 2939, + "name": "Kristine Howard", + "gender": "female", + "age": 78, + "address": { + "state": "Wisconsin", + "city": "Evergreen" + } + }, + { + "id": 2940, + "name": "Mara Myers", + "gender": "female", + "age": 70, + "address": { + "state": "Alaska", + "city": "Smeltertown" + } + }, + { + "id": 2941, + "name": "Shana Burgess", + "gender": "female", + "age": 50, + "address": { + "state": "Mississippi", + "city": "Bendon" + } + }, + { + "id": 2942, + "name": "Lynda Hamilton", + "gender": "female", + "age": 45, + "address": { + "state": "Nevada", + "city": "Sanders" + } + }, + { + "id": 2943, + "name": "Mable Day", + "gender": "female", + "age": 56, + "address": { + "state": "Maine", + "city": "Summerfield" + } + }, + { + "id": 2944, + "name": "Gonzales Justice", + "gender": "male", + "age": 17, + "address": { + "state": "Colorado", + "city": "Maury" + } + }, + { + "id": 2945, + "name": "Beck Mccullough", + "gender": "male", + "age": 18, + "address": { + "state": "New Hampshire", + "city": "Caroleen" + } + }, + { + "id": 2946, + "name": "Huff Mullen", + "gender": "male", + "age": 34, + "address": { + "state": "Oklahoma", + "city": "Tooleville" + } + }, + { + "id": 2947, + "name": "Rachelle Yang", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Saranap" + } + }, + { + "id": 2948, + "name": "Rhonda Brady", + "gender": "female", + "age": 68, + "address": { + "state": "Alabama", + "city": "Frank" + } + }, + { + "id": 2949, + "name": "Gonzalez Dunlap", + "gender": "male", + "age": 41, + "address": { + "state": "Illinois", + "city": "Kingstowne" + } + }, + { + "id": 2950, + "name": "Noemi Carroll", + "gender": "female", + "age": 33, + "address": { + "state": "South Dakota", + "city": "Coldiron" + } + }, + { + "id": 2951, + "name": "Smith Jacobson", + "gender": "male", + "age": 20, + "address": { + "state": "New Jersey", + "city": "Rosine" + } + }, + { + "id": 2952, + "name": "Patty Burton", + "gender": "female", + "age": 68, + "address": { + "state": "Washington", + "city": "Byrnedale" + } + }, + { + "id": 2953, + "name": "Ford Pearson", + "gender": "male", + "age": 65, + "address": { + "state": "Arizona", + "city": "Grahamtown" + } + }, + { + "id": 2954, + "name": "Fleming Clements", + "gender": "male", + "age": 52, + "address": { + "state": "South Carolina", + "city": "Keyport" + } + }, + { + "id": 2955, + "name": "Morton Lowe", + "gender": "male", + "age": 68, + "address": { + "state": "Pennsylvania", + "city": "Buxton" + } + }, + { + "id": 2956, + "name": "Jennie Hobbs", + "gender": "female", + "age": 37, + "address": { + "state": "New York", + "city": "Westmoreland" + } + }, + { + "id": 2957, + "name": "Dale Ortega", + "gender": "female", + "age": 69, + "address": { + "state": "Missouri", + "city": "Finzel" + } + }, + { + "id": 2958, + "name": "Kent Abbott", + "gender": "male", + "age": 30, + "address": { + "state": "West Virginia", + "city": "Sultana" + } + }, + { + "id": 2959, + "name": "Patterson Levy", + "gender": "male", + "age": 52, + "address": { + "state": "Kentucky", + "city": "Dubois" + } + }, + { + "id": 2960, + "name": "Buck Whitley", + "gender": "male", + "age": 58, + "address": { + "state": "North Dakota", + "city": "Bison" + } + }, + { + "id": 2961, + "name": "Tabatha Cherry", + "gender": "female", + "age": 76, + "address": { + "state": "Nebraska", + "city": "Diaperville" + } + }, + { + "id": 2962, + "name": "Jayne Hatfield", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Klagetoh" + } + }, + { + "id": 2963, + "name": "Hood Hernandez", + "gender": "male", + "age": 53, + "address": { + "state": "Texas", + "city": "Avalon" + } + }, + { + "id": 2964, + "name": "Hill Delacruz", + "gender": "male", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Sunbury" + } + }, + { + "id": 2965, + "name": "Alison Myers", + "gender": "female", + "age": 40, + "address": { + "state": "North Carolina", + "city": "Salix" + } + }, + { + "id": 2966, + "name": "Lynne Skinner", + "gender": "female", + "age": 75, + "address": { + "state": "Kansas", + "city": "Jacksonburg" + } + }, + { + "id": 2967, + "name": "Levine Schultz", + "gender": "male", + "age": 37, + "address": { + "state": "Wyoming", + "city": "Townsend" + } + }, + { + "id": 2968, + "name": "Lester Arnold", + "gender": "male", + "age": 30, + "address": { + "state": "Delaware", + "city": "Olney" + } + }, + { + "id": 2969, + "name": "Kristie Hurst", + "gender": "female", + "age": 18, + "address": { + "state": "Virginia", + "city": "Caberfae" + } + }, + { + "id": 2970, + "name": "Carolyn Guerra", + "gender": "female", + "age": 56, + "address": { + "state": "Indiana", + "city": "Vernon" + } + }, + { + "id": 2971, + "name": "Kathrine Mccall", + "gender": "female", + "age": 30, + "address": { + "state": "Georgia", + "city": "Hackneyville" + } + }, + { + "id": 2972, + "name": "Schneider Stone", + "gender": "male", + "age": 44, + "address": { + "state": "Utah", + "city": "Benson" + } + }, + { + "id": 2973, + "name": "Juanita Romero", + "gender": "female", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Wauhillau" + } + }, + { + "id": 2974, + "name": "Lott Molina", + "gender": "male", + "age": 42, + "address": { + "state": "Iowa", + "city": "Chamberino" + } + }, + { + "id": 2975, + "name": "Blevins May", + "gender": "male", + "age": 54, + "address": { + "state": "Rhode Island", + "city": "Roeville" + } + }, + { + "id": 2976, + "name": "Doreen Bowen", + "gender": "female", + "age": 77, + "address": { + "state": "Florida", + "city": "Fontanelle" + } + }, + { + "id": 2977, + "name": "Iris Mitchell", + "gender": "female", + "age": 50, + "address": { + "state": "New Mexico", + "city": "Tryon" + } + }, + { + "id": 2978, + "name": "Madden Vazquez", + "gender": "male", + "age": 38, + "address": { + "state": "Montana", + "city": "Brandermill" + } + }, + { + "id": 2979, + "name": "Hannah Bolton", + "gender": "female", + "age": 38, + "address": { + "state": "Maryland", + "city": "Harborton" + } + }, + { + "id": 2980, + "name": "Dionne Bright", + "gender": "female", + "age": 46, + "address": { + "state": "Vermont", + "city": "Harmon" + } + }, + { + "id": 2981, + "name": "Francine Mcclure", + "gender": "female", + "age": 20, + "address": { + "state": "Oregon", + "city": "Urie" + } + }, + { + "id": 2982, + "name": "Dorothea Padilla", + "gender": "female", + "age": 51, + "address": { + "state": "Wisconsin", + "city": "Kerby" + } + }, + { + "id": 2983, + "name": "Danielle Moody", + "gender": "female", + "age": 60, + "address": { + "state": "Michigan", + "city": "Chical" + } + }, + { + "id": 2984, + "name": "Lamb Simmons", + "gender": "male", + "age": 28, + "address": { + "state": "Arkansas", + "city": "Kenvil" + } + }, + { + "id": 2985, + "name": "Martinez Montgomery", + "gender": "male", + "age": 78, + "address": { + "state": "Ohio", + "city": "Defiance" + } + }, + { + "id": 2986, + "name": "Emilia Buckley", + "gender": "female", + "age": 28, + "address": { + "state": "Connecticut", + "city": "Sardis" + } + }, + { + "id": 2987, + "name": "Lily Gray", + "gender": "female", + "age": 21, + "address": { + "state": "Tennessee", + "city": "Trona" + } + }, + { + "id": 2988, + "name": "Evangelina Allison", + "gender": "female", + "age": 74, + "address": { + "state": "Minnesota", + "city": "Whitmer" + } + }, + { + "id": 2989, + "name": "Corine Hurley", + "gender": "female", + "age": 77, + "address": { + "state": "New Hampshire", + "city": "Blue" + } + }, + { + "id": 2990, + "name": "Sheri Whitney", + "gender": "female", + "age": 80, + "address": { + "state": "Rhode Island", + "city": "Roderfield" + } + }, + { + "id": 2991, + "name": "Hazel Sullivan", + "gender": "female", + "age": 29, + "address": { + "state": "Utah", + "city": "Staples" + } + }, + { + "id": 2992, + "name": "Joanna Schroeder", + "gender": "female", + "age": 53, + "address": { + "state": "Texas", + "city": "Neibert" + } + }, + { + "id": 2993, + "name": "Sofia Knox", + "gender": "female", + "age": 81, + "address": { + "state": "Minnesota", + "city": "Tibbie" + } + }, + { + "id": 2994, + "name": "Roy Duke", + "gender": "male", + "age": 22, + "address": { + "state": "Oregon", + "city": "Kirk" + } + }, + { + "id": 2995, + "name": "Walls Delgado", + "gender": "male", + "age": 20, + "address": { + "state": "Maryland", + "city": "Sandston" + } + }, + { + "id": 2996, + "name": "Thomas Brewer", + "gender": "male", + "age": 53, + "address": { + "state": "Indiana", + "city": "Richville" + } + }, + { + "id": 2997, + "name": "Walter Roman", + "gender": "male", + "age": 32, + "address": { + "state": "Ohio", + "city": "Felt" + } + }, + { + "id": 2998, + "name": "Mccullough Ashley", + "gender": "male", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Ronco" + } + }, + { + "id": 2999, + "name": "Winnie Donovan", + "gender": "female", + "age": 50, + "address": { + "state": "Arizona", + "city": "Matthews" + } + }, + { + "id": 3000, + "name": "Cantu Solomon", + "gender": "male", + "age": 80, + "address": { + "state": "Missouri", + "city": "Trexlertown" + } + }, + { + "id": 3001, + "name": "Tamera Bailey", + "gender": "female", + "age": 37, + "address": { + "state": "Virginia", + "city": "Stouchsburg" + } + }, + { + "id": 3002, + "name": "Letha Hurst", + "gender": "female", + "age": 72, + "address": { + "state": "Alabama", + "city": "Datil" + } + }, + { + "id": 3003, + "name": "Villarreal Willis", + "gender": "male", + "age": 21, + "address": { + "state": "Connecticut", + "city": "Hardyville" + } + }, + { + "id": 3004, + "name": "Regina Lynn", + "gender": "female", + "age": 43, + "address": { + "state": "South Carolina", + "city": "Cucumber" + } + }, + { + "id": 3005, + "name": "Baldwin Rosario", + "gender": "male", + "age": 74, + "address": { + "state": "California", + "city": "Cobbtown" + } + }, + { + "id": 3006, + "name": "Talley Weiss", + "gender": "male", + "age": 59, + "address": { + "state": "Delaware", + "city": "Vale" + } + }, + { + "id": 3007, + "name": "Elinor Knowles", + "gender": "female", + "age": 25, + "address": { + "state": "Michigan", + "city": "Teasdale" + } + }, + { + "id": 3008, + "name": "Nannie Beach", + "gender": "female", + "age": 37, + "address": { + "state": "Pennsylvania", + "city": "Rowe" + } + }, + { + "id": 3009, + "name": "Gomez Rose", + "gender": "male", + "age": 31, + "address": { + "state": "South Dakota", + "city": "Adelino" + } + }, + { + "id": 3010, + "name": "Crosby Ford", + "gender": "male", + "age": 19, + "address": { + "state": "New Jersey", + "city": "Rose" + } + }, + { + "id": 3011, + "name": "Renee Lawson", + "gender": "female", + "age": 34, + "address": { + "state": "Maine", + "city": "Yorklyn" + } + }, + { + "id": 3012, + "name": "Osborn Andrews", + "gender": "male", + "age": 67, + "address": { + "state": "Oklahoma", + "city": "Klondike" + } + }, + { + "id": 3013, + "name": "Bright Copeland", + "gender": "male", + "age": 69, + "address": { + "state": "West Virginia", + "city": "Selma" + } + }, + { + "id": 3014, + "name": "Wallace Bradford", + "gender": "male", + "age": 48, + "address": { + "state": "Louisiana", + "city": "Lutsen" + } + }, + { + "id": 3015, + "name": "Lindsay Watson", + "gender": "male", + "age": 49, + "address": { + "state": "Montana", + "city": "Gorham" + } + }, + { + "id": 3016, + "name": "Acosta Ray", + "gender": "male", + "age": 19, + "address": { + "state": "Nebraska", + "city": "Summertown" + } + }, + { + "id": 3017, + "name": "Little Mann", + "gender": "male", + "age": 60, + "address": { + "state": "Mississippi", + "city": "Gulf" + } + }, + { + "id": 3018, + "name": "Rowe Koch", + "gender": "male", + "age": 32, + "address": { + "state": "Georgia", + "city": "Neahkahnie" + } + }, + { + "id": 3019, + "name": "Mcdonald Barrera", + "gender": "male", + "age": 37, + "address": { + "state": "Florida", + "city": "Brewster" + } + }, + { + "id": 3020, + "name": "Sweeney Sweeney", + "gender": "male", + "age": 38, + "address": { + "state": "New York", + "city": "Chalfant" + } + }, + { + "id": 3021, + "name": "Lelia Lowe", + "gender": "female", + "age": 77, + "address": { + "state": "Illinois", + "city": "Westmoreland" + } + }, + { + "id": 3022, + "name": "Janis Moody", + "gender": "female", + "age": 78, + "address": { + "state": "Tennessee", + "city": "Biehle" + } + }, + { + "id": 3023, + "name": "George Gonzalez", + "gender": "male", + "age": 74, + "address": { + "state": "Arkansas", + "city": "Martell" + } + }, + { + "id": 3024, + "name": "Robbie Hays", + "gender": "female", + "age": 60, + "address": { + "state": "Kentucky", + "city": "Wyoming" + } + }, + { + "id": 3025, + "name": "Pope Doyle", + "gender": "male", + "age": 62, + "address": { + "state": "Iowa", + "city": "Calpine" + } + }, + { + "id": 3026, + "name": "Vaughan Maddox", + "gender": "male", + "age": 55, + "address": { + "state": "New Mexico", + "city": "Edenburg" + } + }, + { + "id": 3027, + "name": "Hoover Black", + "gender": "male", + "age": 60, + "address": { + "state": "Alaska", + "city": "Durham" + } + }, + { + "id": 3028, + "name": "Kathrine Hatfield", + "gender": "female", + "age": 42, + "address": { + "state": "Colorado", + "city": "Ladera" + } + }, + { + "id": 3029, + "name": "Carroll Finch", + "gender": "male", + "age": 38, + "address": { + "state": "Vermont", + "city": "Gardners" + } + }, + { + "id": 3030, + "name": "Deirdre Marshall", + "gender": "female", + "age": 45, + "address": { + "state": "North Dakota", + "city": "Kohatk" + } + }, + { + "id": 3031, + "name": "Alvarez Martinez", + "gender": "male", + "age": 62, + "address": { + "state": "Nevada", + "city": "Shasta" + } + }, + { + "id": 3032, + "name": "Kelley Shepherd", + "gender": "female", + "age": 59, + "address": { + "state": "Wisconsin", + "city": "Woodruff" + } + }, + { + "id": 3033, + "name": "Lou Beard", + "gender": "female", + "age": 57, + "address": { + "state": "Kansas", + "city": "Bradenville" + } + }, + { + "id": 3034, + "name": "Lambert Lowery", + "gender": "male", + "age": 71, + "address": { + "state": "Massachusetts", + "city": "Yardville" + } + }, + { + "id": 3035, + "name": "Jamie Alvarado", + "gender": "female", + "age": 63, + "address": { + "state": "Wyoming", + "city": "Moscow" + } + }, + { + "id": 3036, + "name": "Cole Peters", + "gender": "male", + "age": 25, + "address": { + "state": "Idaho", + "city": "Sanders" + } + }, + { + "id": 3037, + "name": "Hobbs Horton", + "gender": "male", + "age": 67, + "address": { + "state": "Washington", + "city": "Marbury" + } + }, + { + "id": 3038, + "name": "Estrada Lott", + "gender": "male", + "age": 60, + "address": { + "state": "Arkansas", + "city": "Brutus" + } + }, + { + "id": 3039, + "name": "Jeanie Walter", + "gender": "female", + "age": 46, + "address": { + "state": "Vermont", + "city": "Waiohinu" + } + }, + { + "id": 3040, + "name": "Patel Oneal", + "gender": "male", + "age": 28, + "address": { + "state": "Illinois", + "city": "Loomis" + } + }, + { + "id": 3041, + "name": "Rosa Morgan", + "gender": "female", + "age": 66, + "address": { + "state": "New Jersey", + "city": "Lloyd" + } + }, + { + "id": 3042, + "name": "Mildred Horne", + "gender": "female", + "age": 46, + "address": { + "state": "Maine", + "city": "Gardiner" + } + }, + { + "id": 3043, + "name": "Kramer Wagner", + "gender": "male", + "age": 31, + "address": { + "state": "Ohio", + "city": "Crawfordsville" + } + }, + { + "id": 3044, + "name": "Montoya David", + "gender": "male", + "age": 36, + "address": { + "state": "Maryland", + "city": "Levant" + } + }, + { + "id": 3045, + "name": "Cummings Parsons", + "gender": "male", + "age": 39, + "address": { + "state": "Pennsylvania", + "city": "Grapeview" + } + }, + { + "id": 3046, + "name": "Kay Buckner", + "gender": "female", + "age": 53, + "address": { + "state": "Utah", + "city": "Dargan" + } + }, + { + "id": 3047, + "name": "Latonya Schultz", + "gender": "female", + "age": 73, + "address": { + "state": "Connecticut", + "city": "Riegelwood" + } + }, + { + "id": 3048, + "name": "Carla Owens", + "gender": "female", + "age": 66, + "address": { + "state": "Oregon", + "city": "Linganore" + } + }, + { + "id": 3049, + "name": "Cantrell Lindsay", + "gender": "male", + "age": 60, + "address": { + "state": "Texas", + "city": "Fairhaven" + } + }, + { + "id": 3050, + "name": "Haynes Stafford", + "gender": "male", + "age": 61, + "address": { + "state": "Oklahoma", + "city": "Osage" + } + }, + { + "id": 3051, + "name": "English Dickson", + "gender": "male", + "age": 74, + "address": { + "state": "Alabama", + "city": "Churchill" + } + }, + { + "id": 3052, + "name": "May Elliott", + "gender": "male", + "age": 77, + "address": { + "state": "South Carolina", + "city": "Fostoria" + } + }, + { + "id": 3053, + "name": "Estelle Heath", + "gender": "female", + "age": 27, + "address": { + "state": "Nebraska", + "city": "Ona" + } + }, + { + "id": 3054, + "name": "Shepherd Craig", + "gender": "male", + "age": 30, + "address": { + "state": "Minnesota", + "city": "Cumminsville" + } + }, + { + "id": 3055, + "name": "Blanchard Velazquez", + "gender": "male", + "age": 35, + "address": { + "state": "West Virginia", + "city": "Dunnavant" + } + }, + { + "id": 3056, + "name": "Leta Hunter", + "gender": "female", + "age": 73, + "address": { + "state": "South Dakota", + "city": "Durham" + } + }, + { + "id": 3057, + "name": "Kemp Villarreal", + "gender": "male", + "age": 32, + "address": { + "state": "New Mexico", + "city": "Whitehaven" + } + }, + { + "id": 3058, + "name": "Vazquez Williams", + "gender": "male", + "age": 52, + "address": { + "state": "Massachusetts", + "city": "Lithium" + } + }, + { + "id": 3059, + "name": "Shelby Massey", + "gender": "female", + "age": 66, + "address": { + "state": "New York", + "city": "Takilma" + } + }, + { + "id": 3060, + "name": "Hayden Parrish", + "gender": "male", + "age": 53, + "address": { + "state": "Louisiana", + "city": "Belleview" + } + }, + { + "id": 3061, + "name": "Freeman Hinton", + "gender": "male", + "age": 80, + "address": { + "state": "Florida", + "city": "Brookfield" + } + }, + { + "id": 3062, + "name": "Maryellen Salazar", + "gender": "female", + "age": 49, + "address": { + "state": "Kentucky", + "city": "Tonopah" + } + }, + { + "id": 3063, + "name": "Pearl Harding", + "gender": "female", + "age": 70, + "address": { + "state": "Idaho", + "city": "Bedias" + } + }, + { + "id": 3064, + "name": "Stacie Bentley", + "gender": "female", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Greenwich" + } + }, + { + "id": 3065, + "name": "Roxanne Wells", + "gender": "female", + "age": 44, + "address": { + "state": "Missouri", + "city": "Bellamy" + } + }, + { + "id": 3066, + "name": "Vanessa Santana", + "gender": "female", + "age": 30, + "address": { + "state": "Kansas", + "city": "Finderne" + } + }, + { + "id": 3067, + "name": "Marsh Mcfadden", + "gender": "male", + "age": 81, + "address": { + "state": "Colorado", + "city": "Beaverdale" + } + }, + { + "id": 3068, + "name": "Colon Murphy", + "gender": "male", + "age": 26, + "address": { + "state": "Nevada", + "city": "Kula" + } + }, + { + "id": 3069, + "name": "Kristen Kirk", + "gender": "female", + "age": 23, + "address": { + "state": "Wyoming", + "city": "Reno" + } + }, + { + "id": 3070, + "name": "Watkins Chapman", + "gender": "male", + "age": 36, + "address": { + "state": "Washington", + "city": "Drytown" + } + }, + { + "id": 3071, + "name": "Britney Brown", + "gender": "female", + "age": 80, + "address": { + "state": "Delaware", + "city": "Southmont" + } + }, + { + "id": 3072, + "name": "Florence Callahan", + "gender": "female", + "age": 40, + "address": { + "state": "Michigan", + "city": "Basye" + } + }, + { + "id": 3073, + "name": "Sherman Miranda", + "gender": "male", + "age": 40, + "address": { + "state": "Mississippi", + "city": "Ladera" + } + }, + { + "id": 3074, + "name": "Ray Hogan", + "gender": "male", + "age": 63, + "address": { + "state": "New Hampshire", + "city": "Marion" + } + }, + { + "id": 3075, + "name": "Cristina Wise", + "gender": "female", + "age": 45, + "address": { + "state": "Wisconsin", + "city": "Chapin" + } + }, + { + "id": 3076, + "name": "Zimmerman Webster", + "gender": "male", + "age": 79, + "address": { + "state": "Arizona", + "city": "Glidden" + } + }, + { + "id": 3077, + "name": "Beatrice Frye", + "gender": "female", + "age": 26, + "address": { + "state": "North Carolina", + "city": "Edneyville" + } + }, + { + "id": 3078, + "name": "Robbins Riddle", + "gender": "male", + "age": 29, + "address": { + "state": "Indiana", + "city": "Greer" + } + }, + { + "id": 3079, + "name": "Mcdowell Davis", + "gender": "male", + "age": 38, + "address": { + "state": "Rhode Island", + "city": "Golconda" + } + }, + { + "id": 3080, + "name": "Deleon Harrell", + "gender": "male", + "age": 79, + "address": { + "state": "Tennessee", + "city": "Hendersonville" + } + }, + { + "id": 3081, + "name": "Carmen Gilliam", + "gender": "female", + "age": 33, + "address": { + "state": "Montana", + "city": "Blende" + } + }, + { + "id": 3082, + "name": "Hammond Harvey", + "gender": "male", + "age": 65, + "address": { + "state": "North Dakota", + "city": "Orviston" + } + }, + { + "id": 3083, + "name": "Middleton Schroeder", + "gender": "male", + "age": 47, + "address": { + "state": "Iowa", + "city": "Robinette" + } + }, + { + "id": 3084, + "name": "Aline Harrison", + "gender": "female", + "age": 42, + "address": { + "state": "Alaska", + "city": "Gilmore" + } + }, + { + "id": 3085, + "name": "Shawn Ramsey", + "gender": "female", + "age": 34, + "address": { + "state": "Virginia", + "city": "Stagecoach" + } + }, + { + "id": 3086, + "name": "Jacquelyn Hyde", + "gender": "female", + "age": 68, + "address": { + "state": "California", + "city": "Guthrie" + } + }, + { + "id": 3087, + "name": "Bradford Gallagher", + "gender": "male", + "age": 67, + "address": { + "state": "Colorado", + "city": "Holtville" + } + }, + { + "id": 3088, + "name": "Davenport Blackwell", + "gender": "male", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Wattsville" + } + }, + { + "id": 3089, + "name": "Blankenship Kerr", + "gender": "male", + "age": 46, + "address": { + "state": "Pennsylvania", + "city": "Barclay" + } + }, + { + "id": 3090, + "name": "Constance Kidd", + "gender": "female", + "age": 80, + "address": { + "state": "Montana", + "city": "Eastmont" + } + }, + { + "id": 3091, + "name": "Schroeder Pacheco", + "gender": "male", + "age": 32, + "address": { + "state": "Nebraska", + "city": "Reinerton" + } + }, + { + "id": 3092, + "name": "Bird Padilla", + "gender": "male", + "age": 44, + "address": { + "state": "Kansas", + "city": "Fairforest" + } + }, + { + "id": 3093, + "name": "Selena Knight", + "gender": "female", + "age": 59, + "address": { + "state": "Missouri", + "city": "Conway" + } + }, + { + "id": 3094, + "name": "Araceli Dominguez", + "gender": "female", + "age": 45, + "address": { + "state": "Wisconsin", + "city": "Chicopee" + } + }, + { + "id": 3095, + "name": "Burris Rasmussen", + "gender": "male", + "age": 31, + "address": { + "state": "North Dakota", + "city": "Cliffside" + } + }, + { + "id": 3096, + "name": "Trisha Vega", + "gender": "female", + "age": 48, + "address": { + "state": "Ohio", + "city": "Chesterfield" + } + }, + { + "id": 3097, + "name": "Simpson Grant", + "gender": "male", + "age": 18, + "address": { + "state": "Iowa", + "city": "Warren" + } + }, + { + "id": 3098, + "name": "Katharine Mcguire", + "gender": "female", + "age": 62, + "address": { + "state": "Oklahoma", + "city": "Orviston" + } + }, + { + "id": 3099, + "name": "Mcconnell Sharpe", + "gender": "male", + "age": 78, + "address": { + "state": "Wyoming", + "city": "Darrtown" + } + }, + { + "id": 3100, + "name": "Carey Wilkins", + "gender": "male", + "age": 39, + "address": { + "state": "Hawaii", + "city": "Falmouth" + } + }, + { + "id": 3101, + "name": "Ayala Tran", + "gender": "male", + "age": 23, + "address": { + "state": "Delaware", + "city": "Highland" + } + }, + { + "id": 3102, + "name": "Abigail Burnett", + "gender": "female", + "age": 47, + "address": { + "state": "New York", + "city": "Wildwood" + } + }, + { + "id": 3103, + "name": "Shelton Hicks", + "gender": "male", + "age": 24, + "address": { + "state": "Florida", + "city": "Day" + } + }, + { + "id": 3104, + "name": "Willis Welch", + "gender": "male", + "age": 75, + "address": { + "state": "South Carolina", + "city": "Loma" + } + }, + { + "id": 3105, + "name": "Diana Forbes", + "gender": "female", + "age": 60, + "address": { + "state": "California", + "city": "Grantville" + } + }, + { + "id": 3106, + "name": "Anita Spears", + "gender": "female", + "age": 50, + "address": { + "state": "North Carolina", + "city": "Faxon" + } + }, + { + "id": 3107, + "name": "Whitney Watson", + "gender": "male", + "age": 35, + "address": { + "state": "Arkansas", + "city": "Orovada" + } + }, + { + "id": 3108, + "name": "Bobbie Griffith", + "gender": "female", + "age": 81, + "address": { + "state": "Michigan", + "city": "Moraida" + } + }, + { + "id": 3109, + "name": "Simmons Ford", + "gender": "male", + "age": 38, + "address": { + "state": "South Dakota", + "city": "Westerville" + } + }, + { + "id": 3110, + "name": "Gina Sullivan", + "gender": "female", + "age": 57, + "address": { + "state": "Indiana", + "city": "Denio" + } + }, + { + "id": 3111, + "name": "Adrienne Holman", + "gender": "female", + "age": 69, + "address": { + "state": "Nevada", + "city": "Ogema" + } + }, + { + "id": 3112, + "name": "Boyle Livingston", + "gender": "male", + "age": 54, + "address": { + "state": "Texas", + "city": "Vandiver" + } + }, + { + "id": 3113, + "name": "Pennington Rosales", + "gender": "male", + "age": 70, + "address": { + "state": "Tennessee", + "city": "Villarreal" + } + }, + { + "id": 3114, + "name": "Clare Dejesus", + "gender": "female", + "age": 71, + "address": { + "state": "New Jersey", + "city": "Fairlee" + } + }, + { + "id": 3115, + "name": "Ellen Sanchez", + "gender": "female", + "age": 22, + "address": { + "state": "New Mexico", + "city": "Hackneyville" + } + }, + { + "id": 3116, + "name": "Ana Roy", + "gender": "female", + "age": 31, + "address": { + "state": "Washington", + "city": "Bowden" + } + }, + { + "id": 3117, + "name": "Watts Bryant", + "gender": "male", + "age": 79, + "address": { + "state": "New Hampshire", + "city": "Whitmer" + } + }, + { + "id": 3118, + "name": "Josefa May", + "gender": "female", + "age": 59, + "address": { + "state": "Alaska", + "city": "Veguita" + } + }, + { + "id": 3119, + "name": "Jolene Oneal", + "gender": "female", + "age": 40, + "address": { + "state": "Utah", + "city": "Nadine" + } + }, + { + "id": 3120, + "name": "Helene Bonner", + "gender": "female", + "age": 70, + "address": { + "state": "West Virginia", + "city": "Saticoy" + } + }, + { + "id": 3121, + "name": "Kimberley Russo", + "gender": "female", + "age": 40, + "address": { + "state": "Arizona", + "city": "Bladensburg" + } + }, + { + "id": 3122, + "name": "Bettye Stevenson", + "gender": "female", + "age": 56, + "address": { + "state": "Oregon", + "city": "Rodman" + } + }, + { + "id": 3123, + "name": "Bray Alston", + "gender": "male", + "age": 68, + "address": { + "state": "Georgia", + "city": "Franklin" + } + }, + { + "id": 3124, + "name": "Rosalinda Adams", + "gender": "female", + "age": 23, + "address": { + "state": "Vermont", + "city": "Guthrie" + } + }, + { + "id": 3125, + "name": "Heather Caldwell", + "gender": "female", + "age": 40, + "address": { + "state": "Louisiana", + "city": "Sena" + } + }, + { + "id": 3126, + "name": "Hogan Byers", + "gender": "male", + "age": 18, + "address": { + "state": "Virginia", + "city": "Fillmore" + } + }, + { + "id": 3127, + "name": "Clements Whitney", + "gender": "male", + "age": 62, + "address": { + "state": "Alabama", + "city": "Smock" + } + }, + { + "id": 3128, + "name": "Brandie Steele", + "gender": "female", + "age": 49, + "address": { + "state": "Massachusetts", + "city": "Ventress" + } + }, + { + "id": 3129, + "name": "Elise Hendrix", + "gender": "female", + "age": 18, + "address": { + "state": "Kentucky", + "city": "Cartwright" + } + }, + { + "id": 3130, + "name": "Robertson York", + "gender": "male", + "age": 54, + "address": { + "state": "Rhode Island", + "city": "Rose" + } + }, + { + "id": 3131, + "name": "Hansen Rosario", + "gender": "male", + "age": 64, + "address": { + "state": "Maine", + "city": "Rote" + } + }, + { + "id": 3132, + "name": "Sharlene Ochoa", + "gender": "female", + "age": 22, + "address": { + "state": "Connecticut", + "city": "Mooresburg" + } + }, + { + "id": 3133, + "name": "Ross Sykes", + "gender": "male", + "age": 33, + "address": { + "state": "Illinois", + "city": "Kerby" + } + }, + { + "id": 3134, + "name": "Katelyn Frost", + "gender": "female", + "age": 57, + "address": { + "state": "Maryland", + "city": "Northridge" + } + }, + { + "id": 3135, + "name": "Stevens White", + "gender": "male", + "age": 51, + "address": { + "state": "Mississippi", + "city": "Wescosville" + } + }, + { + "id": 3136, + "name": "Pollard Butler", + "gender": "male", + "age": 32, + "address": { + "state": "Florida", + "city": "Rockhill" + } + }, + { + "id": 3137, + "name": "Bowers Nichols", + "gender": "male", + "age": 31, + "address": { + "state": "Nevada", + "city": "Klondike" + } + }, + { + "id": 3138, + "name": "Ivy Gonzalez", + "gender": "female", + "age": 34, + "address": { + "state": "New York", + "city": "Bethpage" + } + }, + { + "id": 3139, + "name": "Kristina Holden", + "gender": "female", + "age": 40, + "address": { + "state": "Rhode Island", + "city": "Falmouth" + } + }, + { + "id": 3140, + "name": "Minnie Goodwin", + "gender": "female", + "age": 23, + "address": { + "state": "North Dakota", + "city": "Waukeenah" + } + }, + { + "id": 3141, + "name": "Wiggins Burnett", + "gender": "male", + "age": 45, + "address": { + "state": "Tennessee", + "city": "Loveland" + } + }, + { + "id": 3142, + "name": "Faith Weiss", + "gender": "female", + "age": 20, + "address": { + "state": "Minnesota", + "city": "Independence" + } + }, + { + "id": 3143, + "name": "Farley Schneider", + "gender": "male", + "age": 76, + "address": { + "state": "Delaware", + "city": "Sisquoc" + } + }, + { + "id": 3144, + "name": "Sophia Townsend", + "gender": "female", + "age": 17, + "address": { + "state": "New Hampshire", + "city": "Crucible" + } + }, + { + "id": 3145, + "name": "Michael Kirby", + "gender": "female", + "age": 37, + "address": { + "state": "Alabama", + "city": "Cherokee" + } + }, + { + "id": 3146, + "name": "Hattie Estrada", + "gender": "female", + "age": 35, + "address": { + "state": "Virginia", + "city": "Nile" + } + }, + { + "id": 3147, + "name": "Carr Workman", + "gender": "male", + "age": 37, + "address": { + "state": "Kansas", + "city": "Callaghan" + } + }, + { + "id": 3148, + "name": "Annette Mcfadden", + "gender": "female", + "age": 24, + "address": { + "state": "Arkansas", + "city": "Gloucester" + } + }, + { + "id": 3149, + "name": "Cole Bailey", + "gender": "male", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Garnet" + } + }, + { + "id": 3150, + "name": "Roy Gallagher", + "gender": "male", + "age": 70, + "address": { + "state": "Pennsylvania", + "city": "Wheatfields" + } + }, + { + "id": 3151, + "name": "Herrera Dyer", + "gender": "male", + "age": 69, + "address": { + "state": "Missouri", + "city": "Farmers" + } + }, + { + "id": 3152, + "name": "Keller Osborn", + "gender": "male", + "age": 51, + "address": { + "state": "Wisconsin", + "city": "Gardiner" + } + }, + { + "id": 3153, + "name": "Brennan Park", + "gender": "male", + "age": 51, + "address": { + "state": "Maine", + "city": "Ventress" + } + }, + { + "id": 3154, + "name": "Fleming Hess", + "gender": "male", + "age": 22, + "address": { + "state": "Nebraska", + "city": "Eastmont" + } + }, + { + "id": 3155, + "name": "Foster Henry", + "gender": "male", + "age": 20, + "address": { + "state": "Colorado", + "city": "Greenbackville" + } + }, + { + "id": 3156, + "name": "Lauri Conrad", + "gender": "female", + "age": 35, + "address": { + "state": "Alaska", + "city": "Heil" + } + }, + { + "id": 3157, + "name": "Payne Avila", + "gender": "male", + "age": 23, + "address": { + "state": "Kentucky", + "city": "Rosedale" + } + }, + { + "id": 3158, + "name": "Tracy Harmon", + "gender": "female", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Celeryville" + } + }, + { + "id": 3159, + "name": "Lucinda Waller", + "gender": "female", + "age": 59, + "address": { + "state": "North Carolina", + "city": "Ada" + } + }, + { + "id": 3160, + "name": "Joyner Morrison", + "gender": "male", + "age": 72, + "address": { + "state": "New Mexico", + "city": "Cumberland" + } + }, + { + "id": 3161, + "name": "Joyce Petersen", + "gender": "female", + "age": 23, + "address": { + "state": "Georgia", + "city": "Freeburn" + } + }, + { + "id": 3162, + "name": "Wilson Anthony", + "gender": "male", + "age": 21, + "address": { + "state": "Louisiana", + "city": "Stouchsburg" + } + }, + { + "id": 3163, + "name": "Camille Pollard", + "gender": "female", + "age": 21, + "address": { + "state": "Utah", + "city": "Goodville" + } + }, + { + "id": 3164, + "name": "Hunt Garner", + "gender": "male", + "age": 20, + "address": { + "state": "Ohio", + "city": "Stonybrook" + } + }, + { + "id": 3165, + "name": "Morse Hamilton", + "gender": "male", + "age": 72, + "address": { + "state": "West Virginia", + "city": "Kersey" + } + }, + { + "id": 3166, + "name": "Aguirre Caldwell", + "gender": "male", + "age": 29, + "address": { + "state": "Oregon", + "city": "Tyro" + } + }, + { + "id": 3167, + "name": "Frankie Lambert", + "gender": "female", + "age": 32, + "address": { + "state": "New Jersey", + "city": "Holcombe" + } + }, + { + "id": 3168, + "name": "Fowler Rasmussen", + "gender": "male", + "age": 48, + "address": { + "state": "Iowa", + "city": "Boyd" + } + }, + { + "id": 3169, + "name": "Beatrice Bowen", + "gender": "female", + "age": 22, + "address": { + "state": "California", + "city": "Zarephath" + } + }, + { + "id": 3170, + "name": "Cameron Cohen", + "gender": "male", + "age": 58, + "address": { + "state": "Oklahoma", + "city": "Lopezo" + } + }, + { + "id": 3171, + "name": "Caroline Flynn", + "gender": "female", + "age": 54, + "address": { + "state": "Washington", + "city": "Lutsen" + } + }, + { + "id": 3172, + "name": "Rowe Mccarthy", + "gender": "male", + "age": 71, + "address": { + "state": "Idaho", + "city": "Adelino" + } + }, + { + "id": 3173, + "name": "Sullivan Carlson", + "gender": "male", + "age": 58, + "address": { + "state": "Montana", + "city": "Winesburg" + } + }, + { + "id": 3174, + "name": "Carolina Sweet", + "gender": "female", + "age": 35, + "address": { + "state": "Indiana", + "city": "Lawrence" + } + }, + { + "id": 3175, + "name": "Claudette Serrano", + "gender": "female", + "age": 57, + "address": { + "state": "Illinois", + "city": "Gibbsville" + } + }, + { + "id": 3176, + "name": "Florence Baker", + "gender": "female", + "age": 62, + "address": { + "state": "Arizona", + "city": "Walton" + } + }, + { + "id": 3177, + "name": "Joanna Powell", + "gender": "female", + "age": 67, + "address": { + "state": "Vermont", + "city": "Coalmont" + } + }, + { + "id": 3178, + "name": "Mosley Guerrero", + "gender": "male", + "age": 38, + "address": { + "state": "Hawaii", + "city": "Magnolia" + } + }, + { + "id": 3179, + "name": "Rocha Gay", + "gender": "male", + "age": 49, + "address": { + "state": "Maryland", + "city": "Noblestown" + } + }, + { + "id": 3180, + "name": "Dawn England", + "gender": "female", + "age": 78, + "address": { + "state": "Wyoming", + "city": "Rutherford" + } + }, + { + "id": 3181, + "name": "Inez Riley", + "gender": "female", + "age": 43, + "address": { + "state": "South Dakota", + "city": "Terlingua" + } + }, + { + "id": 3182, + "name": "Joyce Crane", + "gender": "male", + "age": 54, + "address": { + "state": "Connecticut", + "city": "Rivera" + } + }, + { + "id": 3183, + "name": "Kendra Tanner", + "gender": "female", + "age": 64, + "address": { + "state": "Michigan", + "city": "Hoehne" + } + }, + { + "id": 3184, + "name": "Allison Randolph", + "gender": "female", + "age": 54, + "address": { + "state": "South Carolina", + "city": "Marshall" + } + }, + { + "id": 3185, + "name": "Hogan Morton", + "gender": "male", + "age": 40, + "address": { + "state": "New Mexico", + "city": "Sutton" + } + }, + { + "id": 3186, + "name": "Hansen Phelps", + "gender": "male", + "age": 30, + "address": { + "state": "Kentucky", + "city": "Dunbar" + } + }, + { + "id": 3187, + "name": "Rose Haynes", + "gender": "female", + "age": 60, + "address": { + "state": "Nevada", + "city": "Frank" + } + }, + { + "id": 3188, + "name": "Richards Terrell", + "gender": "male", + "age": 60, + "address": { + "state": "Maine", + "city": "Freetown" + } + }, + { + "id": 3189, + "name": "Enid Kirk", + "gender": "female", + "age": 61, + "address": { + "state": "Missouri", + "city": "Holtville" + } + }, + { + "id": 3190, + "name": "Stephens Edwards", + "gender": "male", + "age": 65, + "address": { + "state": "Idaho", + "city": "Talpa" + } + }, + { + "id": 3191, + "name": "Vicki Finley", + "gender": "female", + "age": 74, + "address": { + "state": "Delaware", + "city": "Mapletown" + } + }, + { + "id": 3192, + "name": "Nguyen Huffman", + "gender": "male", + "age": 61, + "address": { + "state": "North Carolina", + "city": "Ypsilanti" + } + }, + { + "id": 3193, + "name": "Sharp Levine", + "gender": "male", + "age": 35, + "address": { + "state": "Wisconsin", + "city": "Glenshaw" + } + }, + { + "id": 3194, + "name": "Sarah Berger", + "gender": "female", + "age": 52, + "address": { + "state": "Colorado", + "city": "Cresaptown" + } + }, + { + "id": 3195, + "name": "Nora Dotson", + "gender": "female", + "age": 69, + "address": { + "state": "South Carolina", + "city": "Clarktown" + } + }, + { + "id": 3196, + "name": "Hall Potts", + "gender": "male", + "age": 47, + "address": { + "state": "Oregon", + "city": "Edgar" + } + }, + { + "id": 3197, + "name": "Lara Norris", + "gender": "male", + "age": 35, + "address": { + "state": "Florida", + "city": "Osage" + } + }, + { + "id": 3198, + "name": "Tanisha Charles", + "gender": "female", + "age": 33, + "address": { + "state": "Maryland", + "city": "Sperryville" + } + }, + { + "id": 3199, + "name": "Rosemary Stevenson", + "gender": "female", + "age": 46, + "address": { + "state": "Alabama", + "city": "Veyo" + } + }, + { + "id": 3200, + "name": "Luella Bauer", + "gender": "female", + "age": 43, + "address": { + "state": "Utah", + "city": "Reno" + } + }, + { + "id": 3201, + "name": "Green Wise", + "gender": "male", + "age": 72, + "address": { + "state": "Illinois", + "city": "Kraemer" + } + }, + { + "id": 3202, + "name": "Chen Castro", + "gender": "male", + "age": 74, + "address": { + "state": "New York", + "city": "Kenvil" + } + }, + { + "id": 3203, + "name": "Huff Herrera", + "gender": "male", + "age": 59, + "address": { + "state": "Kansas", + "city": "Chase" + } + }, + { + "id": 3204, + "name": "Cynthia Buckley", + "gender": "female", + "age": 22, + "address": { + "state": "Rhode Island", + "city": "Avalon" + } + }, + { + "id": 3205, + "name": "Forbes Stanley", + "gender": "male", + "age": 20, + "address": { + "state": "Indiana", + "city": "Concho" + } + }, + { + "id": 3206, + "name": "Ila Herman", + "gender": "female", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Darlington" + } + }, + { + "id": 3207, + "name": "Brooks Kinney", + "gender": "male", + "age": 36, + "address": { + "state": "Washington", + "city": "Saranap" + } + }, + { + "id": 3208, + "name": "Fuentes Byrd", + "gender": "male", + "age": 81, + "address": { + "state": "Arkansas", + "city": "Allendale" + } + }, + { + "id": 3209, + "name": "Leanna Clements", + "gender": "female", + "age": 35, + "address": { + "state": "South Dakota", + "city": "Mathews" + } + }, + { + "id": 3210, + "name": "Gilmore Reeves", + "gender": "male", + "age": 75, + "address": { + "state": "Virginia", + "city": "Onton" + } + }, + { + "id": 3211, + "name": "Marla Riddle", + "gender": "female", + "age": 33, + "address": { + "state": "Vermont", + "city": "Grill" + } + }, + { + "id": 3212, + "name": "Cannon Ellison", + "gender": "male", + "age": 68, + "address": { + "state": "Arizona", + "city": "Logan" + } + }, + { + "id": 3213, + "name": "Nichols Peck", + "gender": "male", + "age": 66, + "address": { + "state": "Texas", + "city": "Eggertsville" + } + }, + { + "id": 3214, + "name": "Flowers Vang", + "gender": "male", + "age": 26, + "address": { + "state": "Massachusetts", + "city": "Titanic" + } + }, + { + "id": 3215, + "name": "Kelley Walker", + "gender": "female", + "age": 33, + "address": { + "state": "Louisiana", + "city": "Falmouth" + } + }, + { + "id": 3216, + "name": "Esther Estrada", + "gender": "female", + "age": 63, + "address": { + "state": "Alaska", + "city": "Biddle" + } + }, + { + "id": 3217, + "name": "Lindsay Maxwell", + "gender": "male", + "age": 76, + "address": { + "state": "New Jersey", + "city": "Byrnedale" + } + }, + { + "id": 3218, + "name": "Marion Padilla", + "gender": "female", + "age": 73, + "address": { + "state": "Iowa", + "city": "Diaperville" + } + }, + { + "id": 3219, + "name": "Schmidt Bean", + "gender": "male", + "age": 34, + "address": { + "state": "West Virginia", + "city": "Castleton" + } + }, + { + "id": 3220, + "name": "Lowery Shaw", + "gender": "male", + "age": 61, + "address": { + "state": "Nebraska", + "city": "Coleville" + } + }, + { + "id": 3221, + "name": "Herring Owen", + "gender": "male", + "age": 58, + "address": { + "state": "Connecticut", + "city": "Cowiche" + } + }, + { + "id": 3222, + "name": "Wilcox Pierce", + "gender": "male", + "age": 61, + "address": { + "state": "Pennsylvania", + "city": "Ada" + } + }, + { + "id": 3223, + "name": "Spence Dillon", + "gender": "male", + "age": 52, + "address": { + "state": "Montana", + "city": "Marienthal" + } + }, + { + "id": 3224, + "name": "Blanchard Wilkinson", + "gender": "male", + "age": 65, + "address": { + "state": "California", + "city": "Ola" + } + }, + { + "id": 3225, + "name": "Evelyn Galloway", + "gender": "female", + "age": 43, + "address": { + "state": "Tennessee", + "city": "Cetronia" + } + }, + { + "id": 3226, + "name": "Hooper Chen", + "gender": "male", + "age": 60, + "address": { + "state": "Wyoming", + "city": "Yettem" + } + }, + { + "id": 3227, + "name": "Lucy Casey", + "gender": "female", + "age": 23, + "address": { + "state": "Michigan", + "city": "Finderne" + } + }, + { + "id": 3228, + "name": "Pamela Mcdaniel", + "gender": "female", + "age": 29, + "address": { + "state": "Ohio", + "city": "Biehle" + } + }, + { + "id": 3229, + "name": "Paige Ware", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Goldfield" + } + }, + { + "id": 3230, + "name": "Sofia Perez", + "gender": "female", + "age": 64, + "address": { + "state": "Minnesota", + "city": "Craig" + } + }, + { + "id": 3231, + "name": "Blankenship Saunders", + "gender": "male", + "age": 82, + "address": { + "state": "New Hampshire", + "city": "Fruitdale" + } + }, + { + "id": 3232, + "name": "Slater Wiley", + "gender": "male", + "age": 21, + "address": { + "state": "North Dakota", + "city": "Marbury" + } + }, + { + "id": 3233, + "name": "Barbra Boone", + "gender": "female", + "age": 40, + "address": { + "state": "Hawaii", + "city": "Norwood" + } + }, + { + "id": 3234, + "name": "Ofelia Martin", + "gender": "female", + "age": 20, + "address": { + "state": "Wyoming", + "city": "Rockingham" + } + }, + { + "id": 3235, + "name": "Wood Kennedy", + "gender": "male", + "age": 51, + "address": { + "state": "Tennessee", + "city": "Deercroft" + } + }, + { + "id": 3236, + "name": "Ford Luna", + "gender": "male", + "age": 35, + "address": { + "state": "Minnesota", + "city": "Weogufka" + } + }, + { + "id": 3237, + "name": "Beryl Gilbert", + "gender": "female", + "age": 45, + "address": { + "state": "Connecticut", + "city": "Statenville" + } + }, + { + "id": 3238, + "name": "Caldwell Potter", + "gender": "male", + "age": 63, + "address": { + "state": "Vermont", + "city": "Cliff" + } + }, + { + "id": 3239, + "name": "Alisha Price", + "gender": "female", + "age": 27, + "address": { + "state": "Colorado", + "city": "Cassel" + } + }, + { + "id": 3240, + "name": "Weeks Gay", + "gender": "male", + "age": 25, + "address": { + "state": "Texas", + "city": "Kirk" + } + }, + { + "id": 3241, + "name": "Carol Jefferson", + "gender": "female", + "age": 61, + "address": { + "state": "Ohio", + "city": "Guthrie" + } + }, + { + "id": 3242, + "name": "Harper Bass", + "gender": "male", + "age": 61, + "address": { + "state": "Indiana", + "city": "Manitou" + } + }, + { + "id": 3243, + "name": "Benjamin Wooten", + "gender": "male", + "age": 57, + "address": { + "state": "Georgia", + "city": "Nicut" + } + }, + { + "id": 3244, + "name": "Christy Nieves", + "gender": "female", + "age": 72, + "address": { + "state": "New Jersey", + "city": "Chesapeake" + } + }, + { + "id": 3245, + "name": "Elliott Rowe", + "gender": "male", + "age": 52, + "address": { + "state": "Nevada", + "city": "Belgreen" + } + }, + { + "id": 3246, + "name": "Mcclain Copeland", + "gender": "male", + "age": 69, + "address": { + "state": "Florida", + "city": "Vowinckel" + } + }, + { + "id": 3247, + "name": "Lott Shields", + "gender": "male", + "age": 17, + "address": { + "state": "Kentucky", + "city": "Connerton" + } + }, + { + "id": 3248, + "name": "Hanson Barrera", + "gender": "male", + "age": 78, + "address": { + "state": "New York", + "city": "Golconda" + } + }, + { + "id": 3249, + "name": "Brandie Richard", + "gender": "female", + "age": 78, + "address": { + "state": "Oregon", + "city": "Marne" + } + }, + { + "id": 3250, + "name": "Ella Ramos", + "gender": "female", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Williams" + } + }, + { + "id": 3251, + "name": "Josephine Mcfarland", + "gender": "female", + "age": 72, + "address": { + "state": "New Hampshire", + "city": "Welch" + } + }, + { + "id": 3252, + "name": "Adams Randall", + "gender": "male", + "age": 77, + "address": { + "state": "Alabama", + "city": "Thynedale" + } + }, + { + "id": 3253, + "name": "Barlow Downs", + "gender": "male", + "age": 44, + "address": { + "state": "Washington", + "city": "Stonybrook" + } + }, + { + "id": 3254, + "name": "Roach Marsh", + "gender": "male", + "age": 50, + "address": { + "state": "Nebraska", + "city": "Grantville" + } + }, + { + "id": 3255, + "name": "Juliana Lowery", + "gender": "female", + "age": 79, + "address": { + "state": "Illinois", + "city": "Levant" + } + }, + { + "id": 3256, + "name": "Oconnor Jensen", + "gender": "male", + "age": 75, + "address": { + "state": "Louisiana", + "city": "Waukeenah" + } + }, + { + "id": 3257, + "name": "Pamela Saunders", + "gender": "female", + "age": 25, + "address": { + "state": "Delaware", + "city": "Omar" + } + }, + { + "id": 3258, + "name": "Blackburn Williamson", + "gender": "male", + "age": 30, + "address": { + "state": "Michigan", + "city": "Indio" + } + }, + { + "id": 3259, + "name": "Bell Coffey", + "gender": "male", + "age": 20, + "address": { + "state": "Massachusetts", + "city": "Motley" + } + }, + { + "id": 3260, + "name": "Norma Jenkins", + "gender": "female", + "age": 46, + "address": { + "state": "South Carolina", + "city": "Lindcove" + } + }, + { + "id": 3261, + "name": "Polly Mooney", + "gender": "female", + "age": 20, + "address": { + "state": "Idaho", + "city": "Herbster" + } + }, + { + "id": 3262, + "name": "Allen Welch", + "gender": "male", + "age": 72, + "address": { + "state": "Pennsylvania", + "city": "Escondida" + } + }, + { + "id": 3263, + "name": "Lorrie Freeman", + "gender": "female", + "age": 80, + "address": { + "state": "Maryland", + "city": "Whitmer" + } + }, + { + "id": 3264, + "name": "Julie Duke", + "gender": "female", + "age": 30, + "address": { + "state": "Maine", + "city": "Nicholson" + } + }, + { + "id": 3265, + "name": "Tasha Fuller", + "gender": "female", + "age": 71, + "address": { + "state": "North Dakota", + "city": "Williston" + } + }, + { + "id": 3266, + "name": "Josefina Shaw", + "gender": "female", + "age": 49, + "address": { + "state": "Wisconsin", + "city": "Sattley" + } + }, + { + "id": 3267, + "name": "Autumn Neal", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Madrid" + } + }, + { + "id": 3268, + "name": "House Daniels", + "gender": "male", + "age": 73, + "address": { + "state": "Kansas", + "city": "Naomi" + } + }, + { + "id": 3269, + "name": "Ellen Mendez", + "gender": "female", + "age": 42, + "address": { + "state": "West Virginia", + "city": "Lithium" + } + }, + { + "id": 3270, + "name": "Young Frye", + "gender": "female", + "age": 40, + "address": { + "state": "California", + "city": "Orviston" + } + }, + { + "id": 3271, + "name": "Dickson Valdez", + "gender": "male", + "age": 46, + "address": { + "state": "Mississippi", + "city": "Cartwright" + } + }, + { + "id": 3272, + "name": "Marian Oneill", + "gender": "female", + "age": 41, + "address": { + "state": "South Dakota", + "city": "Floris" + } + }, + { + "id": 3273, + "name": "Rowland Salazar", + "gender": "male", + "age": 44, + "address": { + "state": "Utah", + "city": "Slovan" + } + }, + { + "id": 3274, + "name": "Meyer Bentley", + "gender": "male", + "age": 45, + "address": { + "state": "Iowa", + "city": "Darlington" + } + }, + { + "id": 3275, + "name": "Petty Stanton", + "gender": "male", + "age": 74, + "address": { + "state": "Virginia", + "city": "Waumandee" + } + }, + { + "id": 3276, + "name": "Deena Crosby", + "gender": "female", + "age": 74, + "address": { + "state": "Montana", + "city": "Martell" + } + }, + { + "id": 3277, + "name": "Marcella Knapp", + "gender": "female", + "age": 22, + "address": { + "state": "Arizona", + "city": "Babb" + } + }, + { + "id": 3278, + "name": "Evans Myers", + "gender": "male", + "age": 26, + "address": { + "state": "Arkansas", + "city": "Shelby" + } + }, + { + "id": 3279, + "name": "Pansy Pearson", + "gender": "female", + "age": 51, + "address": { + "state": "Missouri", + "city": "Hilltop" + } + }, + { + "id": 3280, + "name": "Oneill Simmons", + "gender": "male", + "age": 17, + "address": { + "state": "Rhode Island", + "city": "Crown" + } + }, + { + "id": 3281, + "name": "Lizzie Carson", + "gender": "female", + "age": 61, + "address": { + "state": "Alaska", + "city": "Chase" + } + }, + { + "id": 3282, + "name": "Mildred Aguilar", + "gender": "female", + "age": 75, + "address": { + "state": "New Mexico", + "city": "Leroy" + } + }, + { + "id": 3283, + "name": "Lottie Burch", + "gender": "female", + "age": 27, + "address": { + "state": "Illinois", + "city": "Lawrence" + } + }, + { + "id": 3284, + "name": "Queen Sheppard", + "gender": "female", + "age": 28, + "address": { + "state": "Connecticut", + "city": "Klondike" + } + }, + { + "id": 3285, + "name": "Marquita Paul", + "gender": "female", + "age": 64, + "address": { + "state": "Michigan", + "city": "Brooktrails" + } + }, + { + "id": 3286, + "name": "Roberts Moses", + "gender": "male", + "age": 43, + "address": { + "state": "Hawaii", + "city": "Mulberry" + } + }, + { + "id": 3287, + "name": "Wilder Joyce", + "gender": "male", + "age": 65, + "address": { + "state": "Massachusetts", + "city": "Mathews" + } + }, + { + "id": 3288, + "name": "Garner Hensley", + "gender": "male", + "age": 74, + "address": { + "state": "Nebraska", + "city": "Rushford" + } + }, + { + "id": 3289, + "name": "Monica Owen", + "gender": "female", + "age": 66, + "address": { + "state": "New York", + "city": "Mapletown" + } + }, + { + "id": 3290, + "name": "Effie Gibson", + "gender": "female", + "age": 33, + "address": { + "state": "Arizona", + "city": "Brookfield" + } + }, + { + "id": 3291, + "name": "Watson Gordon", + "gender": "male", + "age": 36, + "address": { + "state": "Delaware", + "city": "Logan" + } + }, + { + "id": 3292, + "name": "Vega Conley", + "gender": "male", + "age": 43, + "address": { + "state": "Nevada", + "city": "Tonopah" + } + }, + { + "id": 3293, + "name": "Townsend Decker", + "gender": "male", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Enoree" + } + }, + { + "id": 3294, + "name": "Tia Freeman", + "gender": "female", + "age": 30, + "address": { + "state": "South Dakota", + "city": "Kenmar" + } + }, + { + "id": 3295, + "name": "Mccormick Mann", + "gender": "male", + "age": 74, + "address": { + "state": "Iowa", + "city": "Murillo" + } + }, + { + "id": 3296, + "name": "Juanita Wolf", + "gender": "female", + "age": 42, + "address": { + "state": "Mississippi", + "city": "Dyckesville" + } + }, + { + "id": 3297, + "name": "Catherine Foreman", + "gender": "female", + "age": 19, + "address": { + "state": "North Carolina", + "city": "Hobucken" + } + }, + { + "id": 3298, + "name": "Rosemarie Blevins", + "gender": "female", + "age": 76, + "address": { + "state": "Utah", + "city": "Hoagland" + } + }, + { + "id": 3299, + "name": "Williamson Barry", + "gender": "male", + "age": 61, + "address": { + "state": "Idaho", + "city": "Graniteville" + } + }, + { + "id": 3300, + "name": "Young Kramer", + "gender": "female", + "age": 20, + "address": { + "state": "Alaska", + "city": "Watchtower" + } + }, + { + "id": 3301, + "name": "Jimenez Wynn", + "gender": "male", + "age": 41, + "address": { + "state": "New Jersey", + "city": "Russellville" + } + }, + { + "id": 3302, + "name": "Robertson Boyd", + "gender": "male", + "age": 24, + "address": { + "state": "Minnesota", + "city": "Coral" + } + }, + { + "id": 3303, + "name": "Lauri Curtis", + "gender": "female", + "age": 79, + "address": { + "state": "Kansas", + "city": "Convent" + } + }, + { + "id": 3304, + "name": "Hess Cotton", + "gender": "male", + "age": 18, + "address": { + "state": "Florida", + "city": "Rivers" + } + }, + { + "id": 3305, + "name": "Nettie Grimes", + "gender": "female", + "age": 60, + "address": { + "state": "West Virginia", + "city": "Allensworth" + } + }, + { + "id": 3306, + "name": "Hays Collins", + "gender": "male", + "age": 43, + "address": { + "state": "Virginia", + "city": "Hachita" + } + }, + { + "id": 3307, + "name": "Pansy Buchanan", + "gender": "female", + "age": 53, + "address": { + "state": "Oklahoma", + "city": "Alafaya" + } + }, + { + "id": 3308, + "name": "Melton Gentry", + "gender": "male", + "age": 29, + "address": { + "state": "Missouri", + "city": "Terlingua" + } + }, + { + "id": 3309, + "name": "Harrell Murray", + "gender": "male", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Gila" + } + }, + { + "id": 3310, + "name": "Clarke Gaines", + "gender": "male", + "age": 71, + "address": { + "state": "South Carolina", + "city": "Rosine" + } + }, + { + "id": 3311, + "name": "Abigail Parrish", + "gender": "female", + "age": 21, + "address": { + "state": "Maine", + "city": "Moraida" + } + }, + { + "id": 3312, + "name": "Aguirre Fleming", + "gender": "male", + "age": 73, + "address": { + "state": "Louisiana", + "city": "Snelling" + } + }, + { + "id": 3313, + "name": "Patrice Osborn", + "gender": "female", + "age": 49, + "address": { + "state": "California", + "city": "Moquino" + } + }, + { + "id": 3314, + "name": "Conley Brennan", + "gender": "male", + "age": 38, + "address": { + "state": "Texas", + "city": "Newcastle" + } + }, + { + "id": 3315, + "name": "Luisa Rowland", + "gender": "female", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Emison" + } + }, + { + "id": 3316, + "name": "Lang Stone", + "gender": "male", + "age": 28, + "address": { + "state": "Colorado", + "city": "Gorst" + } + }, + { + "id": 3317, + "name": "Bruce Rodriguez", + "gender": "male", + "age": 35, + "address": { + "state": "Oregon", + "city": "Bradenville" + } + }, + { + "id": 3318, + "name": "Cruz Craft", + "gender": "male", + "age": 43, + "address": { + "state": "Kentucky", + "city": "Bluffview" + } + }, + { + "id": 3319, + "name": "Ronda Walter", + "gender": "female", + "age": 40, + "address": { + "state": "Washington", + "city": "Johnsonburg" + } + }, + { + "id": 3320, + "name": "Wright Bates", + "gender": "male", + "age": 52, + "address": { + "state": "Georgia", + "city": "Canterwood" + } + }, + { + "id": 3321, + "name": "Lester Reilly", + "gender": "male", + "age": 20, + "address": { + "state": "Wisconsin", + "city": "Southview" + } + }, + { + "id": 3322, + "name": "Araceli Marks", + "gender": "female", + "age": 67, + "address": { + "state": "New Mexico", + "city": "Nanafalia" + } + }, + { + "id": 3323, + "name": "Lucinda Wilkerson", + "gender": "female", + "age": 30, + "address": { + "state": "Indiana", + "city": "Chilton" + } + }, + { + "id": 3324, + "name": "Celia Britt", + "gender": "female", + "age": 73, + "address": { + "state": "Montana", + "city": "Waterview" + } + }, + { + "id": 3325, + "name": "Weiss Arnold", + "gender": "male", + "age": 57, + "address": { + "state": "Alabama", + "city": "Martell" + } + }, + { + "id": 3326, + "name": "Sosa Mcneil", + "gender": "male", + "age": 44, + "address": { + "state": "New Hampshire", + "city": "Allentown" + } + }, + { + "id": 3327, + "name": "Erika Beard", + "gender": "female", + "age": 27, + "address": { + "state": "Maryland", + "city": "Dragoon" + } + }, + { + "id": 3328, + "name": "Stephens Bray", + "gender": "male", + "age": 64, + "address": { + "state": "Pennsylvania", + "city": "Ripley" + } + }, + { + "id": 3329, + "name": "Katina Baldwin", + "gender": "female", + "age": 69, + "address": { + "state": "North Dakota", + "city": "Whitestone" + } + }, + { + "id": 3330, + "name": "Irwin Villarreal", + "gender": "male", + "age": 46, + "address": { + "state": "Ohio", + "city": "Glenville" + } + }, + { + "id": 3331, + "name": "Sarah Carey", + "gender": "female", + "age": 32, + "address": { + "state": "Vermont", + "city": "Eureka" + } + }, + { + "id": 3332, + "name": "Marianne Washington", + "gender": "female", + "age": 57, + "address": { + "state": "Kentucky", + "city": "Blanford" + } + }, + { + "id": 3333, + "name": "Tillman Powers", + "gender": "male", + "age": 81, + "address": { + "state": "Minnesota", + "city": "Nicholson" + } + }, + { + "id": 3334, + "name": "Poole Newman", + "gender": "male", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Movico" + } + }, + { + "id": 3335, + "name": "Kaufman Anthony", + "gender": "male", + "age": 56, + "address": { + "state": "Colorado", + "city": "Wolcott" + } + }, + { + "id": 3336, + "name": "Audra Peterson", + "gender": "female", + "age": 63, + "address": { + "state": "Alabama", + "city": "Edneyville" + } + }, + { + "id": 3337, + "name": "Estrada Grimes", + "gender": "male", + "age": 52, + "address": { + "state": "Indiana", + "city": "Sparkill" + } + }, + { + "id": 3338, + "name": "Robles Walter", + "gender": "male", + "age": 30, + "address": { + "state": "Wisconsin", + "city": "Dola" + } + }, + { + "id": 3339, + "name": "Mcfarland Diaz", + "gender": "male", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Accoville" + } + }, + { + "id": 3340, + "name": "Rachael Madden", + "gender": "female", + "age": 58, + "address": { + "state": "Massachusetts", + "city": "Chemung" + } + }, + { + "id": 3341, + "name": "Celeste Melton", + "gender": "female", + "age": 37, + "address": { + "state": "Michigan", + "city": "Adamstown" + } + }, + { + "id": 3342, + "name": "Isabella Wilcox", + "gender": "female", + "age": 35, + "address": { + "state": "Nebraska", + "city": "Otranto" + } + }, + { + "id": 3343, + "name": "Sears Roach", + "gender": "male", + "age": 22, + "address": { + "state": "Arkansas", + "city": "Mapletown" + } + }, + { + "id": 3344, + "name": "Ester Hatfield", + "gender": "female", + "age": 23, + "address": { + "state": "Tennessee", + "city": "Detroit" + } + }, + { + "id": 3345, + "name": "Alford Moon", + "gender": "male", + "age": 71, + "address": { + "state": "New Mexico", + "city": "Denio" + } + }, + { + "id": 3346, + "name": "Anastasia Delaney", + "gender": "female", + "age": 82, + "address": { + "state": "Vermont", + "city": "Ballico" + } + }, + { + "id": 3347, + "name": "Mccoy Dale", + "gender": "male", + "age": 49, + "address": { + "state": "Connecticut", + "city": "Valmy" + } + }, + { + "id": 3348, + "name": "Bond Byers", + "gender": "male", + "age": 63, + "address": { + "state": "Idaho", + "city": "Sabillasville" + } + }, + { + "id": 3349, + "name": "Connie Underwood", + "gender": "female", + "age": 41, + "address": { + "state": "South Dakota", + "city": "Macdona" + } + }, + { + "id": 3350, + "name": "Deirdre Glover", + "gender": "female", + "age": 69, + "address": { + "state": "New York", + "city": "Thynedale" + } + }, + { + "id": 3351, + "name": "Garza Rhodes", + "gender": "male", + "age": 36, + "address": { + "state": "Iowa", + "city": "Cawood" + } + }, + { + "id": 3352, + "name": "Earnestine Hartman", + "gender": "female", + "age": 20, + "address": { + "state": "Pennsylvania", + "city": "Chalfant" + } + }, + { + "id": 3353, + "name": "Alma Mills", + "gender": "female", + "age": 66, + "address": { + "state": "South Carolina", + "city": "Orviston" + } + }, + { + "id": 3354, + "name": "Dianne Hoffman", + "gender": "female", + "age": 27, + "address": { + "state": "New Jersey", + "city": "Brenton" + } + }, + { + "id": 3355, + "name": "Maxine Clay", + "gender": "female", + "age": 51, + "address": { + "state": "Georgia", + "city": "Deseret" + } + }, + { + "id": 3356, + "name": "Lina Rogers", + "gender": "female", + "age": 24, + "address": { + "state": "Maine", + "city": "Belfair" + } + }, + { + "id": 3357, + "name": "Nicholson Pittman", + "gender": "male", + "age": 61, + "address": { + "state": "California", + "city": "Waumandee" + } + }, + { + "id": 3358, + "name": "Shepard Gentry", + "gender": "male", + "age": 32, + "address": { + "state": "Nevada", + "city": "Vallonia" + } + }, + { + "id": 3359, + "name": "Denise Kirkland", + "gender": "female", + "age": 55, + "address": { + "state": "Hawaii", + "city": "Bath" + } + }, + { + "id": 3360, + "name": "Malone Everett", + "gender": "male", + "age": 77, + "address": { + "state": "Arizona", + "city": "Barclay" + } + }, + { + "id": 3361, + "name": "Mays Herman", + "gender": "male", + "age": 61, + "address": { + "state": "Missouri", + "city": "Allensworth" + } + }, + { + "id": 3362, + "name": "Sophia Mitchell", + "gender": "female", + "age": 62, + "address": { + "state": "North Dakota", + "city": "Eggertsville" + } + }, + { + "id": 3363, + "name": "Bennett Nichols", + "gender": "male", + "age": 76, + "address": { + "state": "North Carolina", + "city": "Bowden" + } + }, + { + "id": 3364, + "name": "Luna Mathews", + "gender": "male", + "age": 39, + "address": { + "state": "Delaware", + "city": "Osage" + } + }, + { + "id": 3365, + "name": "Schneider Olsen", + "gender": "male", + "age": 63, + "address": { + "state": "Oklahoma", + "city": "Newcastle" + } + }, + { + "id": 3366, + "name": "Ware Valentine", + "gender": "male", + "age": 27, + "address": { + "state": "Louisiana", + "city": "Ilchester" + } + }, + { + "id": 3367, + "name": "Francis Bonner", + "gender": "female", + "age": 57, + "address": { + "state": "Washington", + "city": "Fedora" + } + }, + { + "id": 3368, + "name": "Brown Beck", + "gender": "male", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Mulino" + } + }, + { + "id": 3369, + "name": "Leblanc Hendricks", + "gender": "male", + "age": 49, + "address": { + "state": "Utah", + "city": "Noblestown" + } + }, + { + "id": 3370, + "name": "Susie Middleton", + "gender": "female", + "age": 53, + "address": { + "state": "Maryland", + "city": "Catharine" + } + }, + { + "id": 3371, + "name": "Mendez Norman", + "gender": "male", + "age": 73, + "address": { + "state": "Illinois", + "city": "Urbana" + } + }, + { + "id": 3372, + "name": "Gentry Noel", + "gender": "male", + "age": 28, + "address": { + "state": "Florida", + "city": "Roy" + } + }, + { + "id": 3373, + "name": "Vance Rose", + "gender": "male", + "age": 21, + "address": { + "state": "Rhode Island", + "city": "Hinsdale" + } + }, + { + "id": 3374, + "name": "Marquita Vaughn", + "gender": "female", + "age": 38, + "address": { + "state": "Kansas", + "city": "Berwind" + } + }, + { + "id": 3375, + "name": "Ernestine Harrington", + "gender": "female", + "age": 67, + "address": { + "state": "Alaska", + "city": "National" + } + }, + { + "id": 3376, + "name": "Robbins Langley", + "gender": "male", + "age": 54, + "address": { + "state": "Texas", + "city": "Sutton" + } + }, + { + "id": 3377, + "name": "Frances Mccullough", + "gender": "female", + "age": 75, + "address": { + "state": "Ohio", + "city": "Dixonville" + } + }, + { + "id": 3378, + "name": "Bryan Henderson", + "gender": "male", + "age": 79, + "address": { + "state": "Montana", + "city": "Websterville" + } + }, + { + "id": 3379, + "name": "Sofia Peters", + "gender": "female", + "age": 42, + "address": { + "state": "Virginia", + "city": "Valle" + } + }, + { + "id": 3380, + "name": "Wright Mckee", + "gender": "male", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Dundee" + } + }, + { + "id": 3381, + "name": "Leticia Vasquez", + "gender": "female", + "age": 64, + "address": { + "state": "West Virginia", + "city": "Hall" + } + }, + { + "id": 3382, + "name": "Rice Avila", + "gender": "male", + "age": 45, + "address": { + "state": "Michigan", + "city": "Nipinnawasee" + } + }, + { + "id": 3383, + "name": "Valenzuela Peterson", + "gender": "male", + "age": 78, + "address": { + "state": "Massachusetts", + "city": "Ruffin" + } + }, + { + "id": 3384, + "name": "Anne Shields", + "gender": "female", + "age": 17, + "address": { + "state": "Hawaii", + "city": "Thatcher" + } + }, + { + "id": 3385, + "name": "Madelyn Cochran", + "gender": "female", + "age": 62, + "address": { + "state": "Iowa", + "city": "Carbonville" + } + }, + { + "id": 3386, + "name": "Casey Raymond", + "gender": "female", + "age": 17, + "address": { + "state": "Minnesota", + "city": "Stockwell" + } + }, + { + "id": 3387, + "name": "Ollie Schultz", + "gender": "female", + "age": 33, + "address": { + "state": "Mississippi", + "city": "Foscoe" + } + }, + { + "id": 3388, + "name": "Goodwin Fields", + "gender": "male", + "age": 61, + "address": { + "state": "Ohio", + "city": "Tryon" + } + }, + { + "id": 3389, + "name": "Alissa Murphy", + "gender": "female", + "age": 47, + "address": { + "state": "North Dakota", + "city": "Brady" + } + }, + { + "id": 3390, + "name": "Antoinette Rose", + "gender": "female", + "age": 44, + "address": { + "state": "New Mexico", + "city": "Clayville" + } + }, + { + "id": 3391, + "name": "Erika Spencer", + "gender": "female", + "age": 60, + "address": { + "state": "Alaska", + "city": "Lafferty" + } + }, + { + "id": 3392, + "name": "Mallory Fox", + "gender": "female", + "age": 20, + "address": { + "state": "Idaho", + "city": "Canterwood" + } + }, + { + "id": 3393, + "name": "Hensley Mooney", + "gender": "male", + "age": 80, + "address": { + "state": "New York", + "city": "Matheny" + } + }, + { + "id": 3394, + "name": "Ann Curtis", + "gender": "female", + "age": 47, + "address": { + "state": "California", + "city": "Boonville" + } + }, + { + "id": 3395, + "name": "Melinda Erickson", + "gender": "female", + "age": 18, + "address": { + "state": "Rhode Island", + "city": "Riceville" + } + }, + { + "id": 3396, + "name": "Esmeralda Nunez", + "gender": "female", + "age": 44, + "address": { + "state": "Utah", + "city": "Loyalhanna" + } + }, + { + "id": 3397, + "name": "Sheryl Gamble", + "gender": "female", + "age": 52, + "address": { + "state": "Louisiana", + "city": "Succasunna" + } + }, + { + "id": 3398, + "name": "Rowena Haney", + "gender": "female", + "age": 76, + "address": { + "state": "Pennsylvania", + "city": "Sharon" + } + }, + { + "id": 3399, + "name": "Concetta Beck", + "gender": "female", + "age": 70, + "address": { + "state": "Nevada", + "city": "Mansfield" + } + }, + { + "id": 3400, + "name": "Sherrie Hansen", + "gender": "female", + "age": 66, + "address": { + "state": "Colorado", + "city": "Masthope" + } + }, + { + "id": 3401, + "name": "Marla Woods", + "gender": "female", + "age": 63, + "address": { + "state": "Oklahoma", + "city": "Yogaville" + } + }, + { + "id": 3402, + "name": "Latonya Holt", + "gender": "female", + "age": 19, + "address": { + "state": "South Dakota", + "city": "Innsbrook" + } + }, + { + "id": 3403, + "name": "Bright Leblanc", + "gender": "male", + "age": 75, + "address": { + "state": "Oregon", + "city": "Craig" + } + }, + { + "id": 3404, + "name": "Kelsey Castro", + "gender": "female", + "age": 41, + "address": { + "state": "Georgia", + "city": "Cassel" + } + }, + { + "id": 3405, + "name": "Shelly Solis", + "gender": "female", + "age": 55, + "address": { + "state": "Nebraska", + "city": "Cetronia" + } + }, + { + "id": 3406, + "name": "Rutledge Ewing", + "gender": "male", + "age": 39, + "address": { + "state": "Florida", + "city": "Robinette" + } + }, + { + "id": 3407, + "name": "Julia Cote", + "gender": "female", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Basye" + } + }, + { + "id": 3408, + "name": "Janet Tyler", + "gender": "female", + "age": 70, + "address": { + "state": "Delaware", + "city": "Detroit" + } + }, + { + "id": 3409, + "name": "Carolyn Rollins", + "gender": "female", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Coloma" + } + }, + { + "id": 3410, + "name": "Ingrid Manning", + "gender": "female", + "age": 73, + "address": { + "state": "Connecticut", + "city": "Bayview" + } + }, + { + "id": 3411, + "name": "Elaine Pate", + "gender": "female", + "age": 73, + "address": { + "state": "Virginia", + "city": "Newcastle" + } + }, + { + "id": 3412, + "name": "Nixon Pierce", + "gender": "male", + "age": 57, + "address": { + "state": "New Hampshire", + "city": "Glidden" + } + }, + { + "id": 3413, + "name": "Johnston Fitzpatrick", + "gender": "male", + "age": 28, + "address": { + "state": "Illinois", + "city": "Garfield" + } + }, + { + "id": 3414, + "name": "Gonzalez Mills", + "gender": "male", + "age": 80, + "address": { + "state": "Indiana", + "city": "Jennings" + } + }, + { + "id": 3415, + "name": "Berger Santos", + "gender": "male", + "age": 80, + "address": { + "state": "North Carolina", + "city": "Brutus" + } + }, + { + "id": 3416, + "name": "Angie Saunders", + "gender": "female", + "age": 18, + "address": { + "state": "Tennessee", + "city": "Vowinckel" + } + }, + { + "id": 3417, + "name": "Sargent Oneill", + "gender": "male", + "age": 72, + "address": { + "state": "Vermont", + "city": "Riverton" + } + }, + { + "id": 3418, + "name": "Gibbs Reyes", + "gender": "male", + "age": 27, + "address": { + "state": "Kansas", + "city": "Montura" + } + }, + { + "id": 3419, + "name": "Reese Nichols", + "gender": "male", + "age": 70, + "address": { + "state": "Arizona", + "city": "Barstow" + } + }, + { + "id": 3420, + "name": "Holder Mcmahon", + "gender": "male", + "age": 66, + "address": { + "state": "Alabama", + "city": "Dubois" + } + }, + { + "id": 3421, + "name": "Sheppard Emerson", + "gender": "male", + "age": 81, + "address": { + "state": "Maine", + "city": "Elizaville" + } + }, + { + "id": 3422, + "name": "Garrett Castillo", + "gender": "male", + "age": 47, + "address": { + "state": "Kentucky", + "city": "Boyd" + } + }, + { + "id": 3423, + "name": "Sears Levy", + "gender": "male", + "age": 56, + "address": { + "state": "Wyoming", + "city": "Datil" + } + }, + { + "id": 3424, + "name": "Wagner Joyner", + "gender": "male", + "age": 60, + "address": { + "state": "Texas", + "city": "Elbert" + } + }, + { + "id": 3425, + "name": "Young Lambert", + "gender": "female", + "age": 17, + "address": { + "state": "South Carolina", + "city": "Dundee" + } + }, + { + "id": 3426, + "name": "Sofia Britt", + "gender": "female", + "age": 20, + "address": { + "state": "Washington", + "city": "Goochland" + } + }, + { + "id": 3427, + "name": "Caroline Johns", + "gender": "female", + "age": 58, + "address": { + "state": "Montana", + "city": "Sims" + } + }, + { + "id": 3428, + "name": "Stacie Reynolds", + "gender": "female", + "age": 62, + "address": { + "state": "Arkansas", + "city": "Mathews" + } + }, + { + "id": 3429, + "name": "Hatfield Bishop", + "gender": "male", + "age": 26, + "address": { + "state": "Missouri", + "city": "Mooresburg" + } + }, + { + "id": 3430, + "name": "Rodriguez Maddox", + "gender": "male", + "age": 64, + "address": { + "state": "Iowa", + "city": "Wolcott" + } + }, + { + "id": 3431, + "name": "Frieda Carpenter", + "gender": "female", + "age": 54, + "address": { + "state": "Maine", + "city": "Escondida" + } + }, + { + "id": 3432, + "name": "Concetta Williamson", + "gender": "female", + "age": 33, + "address": { + "state": "Alaska", + "city": "Churchill" + } + }, + { + "id": 3433, + "name": "Amie Holloway", + "gender": "female", + "age": 40, + "address": { + "state": "Nebraska", + "city": "Maury" + } + }, + { + "id": 3434, + "name": "Powell Heath", + "gender": "male", + "age": 55, + "address": { + "state": "Washington", + "city": "Omar" + } + }, + { + "id": 3435, + "name": "Mccarthy Nelson", + "gender": "male", + "age": 29, + "address": { + "state": "Pennsylvania", + "city": "Wyano" + } + }, + { + "id": 3436, + "name": "Mcgee Tanner", + "gender": "male", + "age": 24, + "address": { + "state": "Kansas", + "city": "Juntura" + } + }, + { + "id": 3437, + "name": "Berta Christian", + "gender": "female", + "age": 21, + "address": { + "state": "Oklahoma", + "city": "Cassel" + } + }, + { + "id": 3438, + "name": "Maxine Johnston", + "gender": "female", + "age": 41, + "address": { + "state": "Florida", + "city": "Freeburn" + } + }, + { + "id": 3439, + "name": "Bender Marsh", + "gender": "male", + "age": 76, + "address": { + "state": "Nevada", + "city": "Glenshaw" + } + }, + { + "id": 3440, + "name": "Neva Stafford", + "gender": "female", + "age": 54, + "address": { + "state": "Maryland", + "city": "Wright" + } + }, + { + "id": 3441, + "name": "Kate Clements", + "gender": "female", + "age": 32, + "address": { + "state": "Idaho", + "city": "Avoca" + } + }, + { + "id": 3442, + "name": "Aida Glass", + "gender": "female", + "age": 59, + "address": { + "state": "Missouri", + "city": "Clarktown" + } + }, + { + "id": 3443, + "name": "Heath Durham", + "gender": "male", + "age": 41, + "address": { + "state": "Hawaii", + "city": "Lisco" + } + }, + { + "id": 3444, + "name": "Dixon Hampton", + "gender": "male", + "age": 46, + "address": { + "state": "Illinois", + "city": "Tolu" + } + }, + { + "id": 3445, + "name": "Giles Ayala", + "gender": "male", + "age": 67, + "address": { + "state": "Virginia", + "city": "Manchester" + } + }, + { + "id": 3446, + "name": "Lila Bridges", + "gender": "female", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Verdi" + } + }, + { + "id": 3447, + "name": "Hale Potts", + "gender": "male", + "age": 26, + "address": { + "state": "Minnesota", + "city": "Brantleyville" + } + }, + { + "id": 3448, + "name": "Allison Munoz", + "gender": "female", + "age": 73, + "address": { + "state": "Montana", + "city": "Chaparrito" + } + }, + { + "id": 3449, + "name": "Allen Cunningham", + "gender": "male", + "age": 23, + "address": { + "state": "Texas", + "city": "Russellville" + } + }, + { + "id": 3450, + "name": "Callie Conrad", + "gender": "female", + "age": 48, + "address": { + "state": "New Mexico", + "city": "Hollins" + } + }, + { + "id": 3451, + "name": "Jeanine Salazar", + "gender": "female", + "age": 47, + "address": { + "state": "Ohio", + "city": "Bascom" + } + }, + { + "id": 3452, + "name": "West Mclaughlin", + "gender": "male", + "age": 56, + "address": { + "state": "Arizona", + "city": "Itmann" + } + }, + { + "id": 3453, + "name": "Burnett Hughes", + "gender": "male", + "age": 36, + "address": { + "state": "North Dakota", + "city": "Freetown" + } + }, + { + "id": 3454, + "name": "Simone Reese", + "gender": "female", + "age": 59, + "address": { + "state": "Oregon", + "city": "Watrous" + } + }, + { + "id": 3455, + "name": "Sheila Mcfarland", + "gender": "female", + "age": 57, + "address": { + "state": "Delaware", + "city": "Needmore" + } + }, + { + "id": 3456, + "name": "Chapman Sanford", + "gender": "male", + "age": 23, + "address": { + "state": "New Jersey", + "city": "Fingerville" + } + }, + { + "id": 3457, + "name": "Marcella Massey", + "gender": "female", + "age": 80, + "address": { + "state": "North Carolina", + "city": "Thatcher" + } + }, + { + "id": 3458, + "name": "Mckay Delgado", + "gender": "male", + "age": 34, + "address": { + "state": "Utah", + "city": "Chamizal" + } + }, + { + "id": 3459, + "name": "Davenport Sherman", + "gender": "male", + "age": 31, + "address": { + "state": "Kentucky", + "city": "Sidman" + } + }, + { + "id": 3460, + "name": "Hernandez Craft", + "gender": "male", + "age": 19, + "address": { + "state": "New Hampshire", + "city": "Marion" + } + }, + { + "id": 3461, + "name": "Letitia Rodriguez", + "gender": "female", + "age": 61, + "address": { + "state": "Alabama", + "city": "Bridgetown" + } + }, + { + "id": 3462, + "name": "Jarvis Riggs", + "gender": "male", + "age": 18, + "address": { + "state": "Wisconsin", + "city": "Delwood" + } + }, + { + "id": 3463, + "name": "Mcfarland Walsh", + "gender": "male", + "age": 19, + "address": { + "state": "West Virginia", + "city": "Blue" + } + }, + { + "id": 3464, + "name": "Lott Bartlett", + "gender": "male", + "age": 56, + "address": { + "state": "Indiana", + "city": "Salix" + } + }, + { + "id": 3465, + "name": "Atkinson Velazquez", + "gender": "male", + "age": 65, + "address": { + "state": "South Carolina", + "city": "Frank" + } + }, + { + "id": 3466, + "name": "Felecia Craig", + "gender": "female", + "age": 33, + "address": { + "state": "New York", + "city": "Shasta" + } + }, + { + "id": 3467, + "name": "Tammy Guzman", + "gender": "female", + "age": 53, + "address": { + "state": "Connecticut", + "city": "Nipinnawasee" + } + }, + { + "id": 3468, + "name": "Salas Patel", + "gender": "male", + "age": 18, + "address": { + "state": "South Dakota", + "city": "Wyoming" + } + }, + { + "id": 3469, + "name": "Chase Phillips", + "gender": "male", + "age": 28, + "address": { + "state": "Michigan", + "city": "Trail" + } + }, + { + "id": 3470, + "name": "Sylvia Dalton", + "gender": "female", + "age": 29, + "address": { + "state": "Colorado", + "city": "National" + } + }, + { + "id": 3471, + "name": "Ruby Fischer", + "gender": "female", + "age": 30, + "address": { + "state": "Massachusetts", + "city": "Jacksonburg" + } + }, + { + "id": 3472, + "name": "Kelli William", + "gender": "female", + "age": 60, + "address": { + "state": "California", + "city": "Calvary" + } + }, + { + "id": 3473, + "name": "Raymond Carlson", + "gender": "male", + "age": 29, + "address": { + "state": "Georgia", + "city": "Sims" + } + }, + { + "id": 3474, + "name": "Christensen Manning", + "gender": "male", + "age": 29, + "address": { + "state": "Mississippi", + "city": "Boonville" + } + }, + { + "id": 3475, + "name": "Howard Valencia", + "gender": "male", + "age": 45, + "address": { + "state": "Wyoming", + "city": "Leyner" + } + }, + { + "id": 3476, + "name": "Mavis Berger", + "gender": "female", + "age": 20, + "address": { + "state": "Louisiana", + "city": "Kansas" + } + }, + { + "id": 3477, + "name": "Joanne Snow", + "gender": "female", + "age": 60, + "address": { + "state": "Arkansas", + "city": "Glenville" + } + }, + { + "id": 3478, + "name": "Christian Faulkner", + "gender": "male", + "age": 23, + "address": { + "state": "Vermont", + "city": "Marbury" + } + }, + { + "id": 3479, + "name": "Arline Campos", + "gender": "female", + "age": 24, + "address": { + "state": "Georgia", + "city": "Stouchsburg" + } + }, + { + "id": 3480, + "name": "Davidson Conrad", + "gender": "male", + "age": 44, + "address": { + "state": "New Jersey", + "city": "Chesapeake" + } + }, + { + "id": 3481, + "name": "Gay Moore", + "gender": "female", + "age": 62, + "address": { + "state": "Vermont", + "city": "Coaldale" + } + }, + { + "id": 3482, + "name": "Rosemarie Peck", + "gender": "female", + "age": 32, + "address": { + "state": "Ohio", + "city": "Emory" + } + }, + { + "id": 3483, + "name": "Marie Lindsay", + "gender": "female", + "age": 82, + "address": { + "state": "South Dakota", + "city": "Westphalia" + } + }, + { + "id": 3484, + "name": "Anderson Wilson", + "gender": "male", + "age": 31, + "address": { + "state": "New York", + "city": "Lindisfarne" + } + }, + { + "id": 3485, + "name": "Guerrero Meyer", + "gender": "male", + "age": 48, + "address": { + "state": "Missouri", + "city": "Brantleyville" + } + }, + { + "id": 3486, + "name": "Maynard Mcfadden", + "gender": "male", + "age": 65, + "address": { + "state": "North Carolina", + "city": "Condon" + } + }, + { + "id": 3487, + "name": "Lucas Wheeler", + "gender": "male", + "age": 35, + "address": { + "state": "Arizona", + "city": "Germanton" + } + }, + { + "id": 3488, + "name": "Mayo Gentry", + "gender": "male", + "age": 65, + "address": { + "state": "Delaware", + "city": "Sehili" + } + }, + { + "id": 3489, + "name": "Hilary Davis", + "gender": "female", + "age": 66, + "address": { + "state": "Oklahoma", + "city": "Cascades" + } + }, + { + "id": 3490, + "name": "Josie Noble", + "gender": "female", + "age": 17, + "address": { + "state": "Utah", + "city": "Crayne" + } + }, + { + "id": 3491, + "name": "Carpenter Conner", + "gender": "male", + "age": 25, + "address": { + "state": "Nevada", + "city": "Gloucester" + } + }, + { + "id": 3492, + "name": "Estella Washington", + "gender": "female", + "age": 80, + "address": { + "state": "Florida", + "city": "Williston" + } + }, + { + "id": 3493, + "name": "Anastasia Hopper", + "gender": "female", + "age": 19, + "address": { + "state": "Kansas", + "city": "Sussex" + } + }, + { + "id": 3494, + "name": "Maricela Ware", + "gender": "female", + "age": 54, + "address": { + "state": "Idaho", + "city": "Weogufka" + } + }, + { + "id": 3495, + "name": "Morton Chaney", + "gender": "male", + "age": 48, + "address": { + "state": "Maine", + "city": "Como" + } + }, + { + "id": 3496, + "name": "Coleman Sykes", + "gender": "male", + "age": 81, + "address": { + "state": "Rhode Island", + "city": "Otranto" + } + }, + { + "id": 3497, + "name": "Jerri Reed", + "gender": "female", + "age": 47, + "address": { + "state": "Texas", + "city": "Naomi" + } + }, + { + "id": 3498, + "name": "Mccray Atkins", + "gender": "male", + "age": 36, + "address": { + "state": "Alabama", + "city": "Bison" + } + }, + { + "id": 3499, + "name": "Herrera Duke", + "gender": "male", + "age": 20, + "address": { + "state": "New Hampshire", + "city": "Spokane" + } + }, + { + "id": 3500, + "name": "Graciela Perry", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Homeland" + } + }, + { + "id": 3501, + "name": "Herring Maldonado", + "gender": "male", + "age": 22, + "address": { + "state": "Minnesota", + "city": "Homeworth" + } + }, + { + "id": 3502, + "name": "Cohen Acosta", + "gender": "male", + "age": 57, + "address": { + "state": "South Carolina", + "city": "Vaughn" + } + }, + { + "id": 3503, + "name": "Evelyn Glover", + "gender": "female", + "age": 49, + "address": { + "state": "Wisconsin", + "city": "Konterra" + } + }, + { + "id": 3504, + "name": "Clarissa Hawkins", + "gender": "female", + "age": 40, + "address": { + "state": "Michigan", + "city": "Carlton" + } + }, + { + "id": 3505, + "name": "Mcintyre Petersen", + "gender": "male", + "age": 46, + "address": { + "state": "Maryland", + "city": "Dennard" + } + }, + { + "id": 3506, + "name": "Blair Mcguire", + "gender": "male", + "age": 75, + "address": { + "state": "Kentucky", + "city": "Sandston" + } + }, + { + "id": 3507, + "name": "Kelley Wells", + "gender": "male", + "age": 21, + "address": { + "state": "Massachusetts", + "city": "Driftwood" + } + }, + { + "id": 3508, + "name": "Jill Vang", + "gender": "female", + "age": 51, + "address": { + "state": "Connecticut", + "city": "Nescatunga" + } + }, + { + "id": 3509, + "name": "Rose Dillon", + "gender": "female", + "age": 56, + "address": { + "state": "California", + "city": "Urbana" + } + }, + { + "id": 3510, + "name": "Silvia Blair", + "gender": "female", + "age": 53, + "address": { + "state": "Illinois", + "city": "Kimmell" + } + }, + { + "id": 3511, + "name": "Dale Camacho", + "gender": "female", + "age": 42, + "address": { + "state": "Washington", + "city": "Trona" + } + }, + { + "id": 3512, + "name": "Pacheco Delacruz", + "gender": "male", + "age": 32, + "address": { + "state": "Arkansas", + "city": "Eggertsville" + } + }, + { + "id": 3513, + "name": "Ward Ayala", + "gender": "male", + "age": 30, + "address": { + "state": "West Virginia", + "city": "Byrnedale" + } + }, + { + "id": 3514, + "name": "Carter Hewitt", + "gender": "male", + "age": 20, + "address": { + "state": "Oregon", + "city": "Tryon" + } + }, + { + "id": 3515, + "name": "Lolita Flynn", + "gender": "female", + "age": 61, + "address": { + "state": "Wyoming", + "city": "Kidder" + } + }, + { + "id": 3516, + "name": "Isabel Howell", + "gender": "female", + "age": 35, + "address": { + "state": "New Mexico", + "city": "Cornucopia" + } + }, + { + "id": 3517, + "name": "Lorraine Preston", + "gender": "female", + "age": 42, + "address": { + "state": "North Dakota", + "city": "Madrid" + } + }, + { + "id": 3518, + "name": "Davis Frye", + "gender": "male", + "age": 24, + "address": { + "state": "Montana", + "city": "Turpin" + } + }, + { + "id": 3519, + "name": "Harriet Crane", + "gender": "female", + "age": 21, + "address": { + "state": "Tennessee", + "city": "Gerton" + } + }, + { + "id": 3520, + "name": "Atkins Bradshaw", + "gender": "male", + "age": 19, + "address": { + "state": "Pennsylvania", + "city": "Riviera" + } + }, + { + "id": 3521, + "name": "Kinney Alexander", + "gender": "male", + "age": 47, + "address": { + "state": "Alaska", + "city": "Saranap" + } + }, + { + "id": 3522, + "name": "Savage Goodwin", + "gender": "male", + "age": 80, + "address": { + "state": "Nebraska", + "city": "Rosburg" + } + }, + { + "id": 3523, + "name": "Boone Hart", + "gender": "male", + "age": 24, + "address": { + "state": "Virginia", + "city": "Winfred" + } + }, + { + "id": 3524, + "name": "Mcbride Banks", + "gender": "male", + "age": 59, + "address": { + "state": "Iowa", + "city": "Ferney" + } + }, + { + "id": 3525, + "name": "Whitney Kelley", + "gender": "male", + "age": 22, + "address": { + "state": "Louisiana", + "city": "Navarre" + } + }, + { + "id": 3526, + "name": "Jo Bauer", + "gender": "female", + "age": 57, + "address": { + "state": "Indiana", + "city": "Clarktown" + } + }, + { + "id": 3527, + "name": "Lacy Day", + "gender": "female", + "age": 49, + "address": { + "state": "Colorado", + "city": "Klagetoh" + } + }, + { + "id": 3528, + "name": "Rena Bryant", + "gender": "female", + "age": 26, + "address": { + "state": "Delaware", + "city": "Cliff" + } + }, + { + "id": 3529, + "name": "Ingrid Bailey", + "gender": "female", + "age": 53, + "address": { + "state": "Rhode Island", + "city": "Brutus" + } + }, + { + "id": 3530, + "name": "Nichole Davis", + "gender": "female", + "age": 68, + "address": { + "state": "Arkansas", + "city": "Dahlen" + } + }, + { + "id": 3531, + "name": "Patsy Maddox", + "gender": "female", + "age": 57, + "address": { + "state": "North Carolina", + "city": "Cornfields" + } + }, + { + "id": 3532, + "name": "Johns Holland", + "gender": "male", + "age": 46, + "address": { + "state": "Illinois", + "city": "Stevens" + } + }, + { + "id": 3533, + "name": "Thornton Pearson", + "gender": "male", + "age": 44, + "address": { + "state": "Hawaii", + "city": "Dunnavant" + } + }, + { + "id": 3534, + "name": "Fisher Wynn", + "gender": "male", + "age": 57, + "address": { + "state": "North Dakota", + "city": "Nadine" + } + }, + { + "id": 3535, + "name": "Blackburn Lambert", + "gender": "male", + "age": 62, + "address": { + "state": "Ohio", + "city": "Wadsworth" + } + }, + { + "id": 3536, + "name": "Terra Carey", + "gender": "female", + "age": 59, + "address": { + "state": "Wyoming", + "city": "Hickory" + } + }, + { + "id": 3537, + "name": "Jackson Morales", + "gender": "male", + "age": 71, + "address": { + "state": "Vermont", + "city": "Alfarata" + } + }, + { + "id": 3538, + "name": "Avila Rogers", + "gender": "male", + "age": 25, + "address": { + "state": "West Virginia", + "city": "Lowell" + } + }, + { + "id": 3539, + "name": "Paul Collins", + "gender": "male", + "age": 73, + "address": { + "state": "South Carolina", + "city": "Nelson" + } + }, + { + "id": 3540, + "name": "Ingram Cantu", + "gender": "male", + "age": 80, + "address": { + "state": "Nebraska", + "city": "Greenbush" + } + }, + { + "id": 3541, + "name": "Tran Avila", + "gender": "male", + "age": 56, + "address": { + "state": "New Hampshire", + "city": "Swartzville" + } + }, + { + "id": 3542, + "name": "Suzette Maxwell", + "gender": "female", + "age": 44, + "address": { + "state": "Kansas", + "city": "Eggertsville" + } + }, + { + "id": 3543, + "name": "Carpenter Gardner", + "gender": "male", + "age": 29, + "address": { + "state": "Idaho", + "city": "Vicksburg" + } + }, + { + "id": 3544, + "name": "Reba Duffy", + "gender": "female", + "age": 67, + "address": { + "state": "Michigan", + "city": "Kidder" + } + }, + { + "id": 3545, + "name": "Maddox Myers", + "gender": "male", + "age": 43, + "address": { + "state": "Florida", + "city": "Leyner" + } + }, + { + "id": 3546, + "name": "Bruce Valenzuela", + "gender": "male", + "age": 24, + "address": { + "state": "Georgia", + "city": "Glenshaw" + } + }, + { + "id": 3547, + "name": "Barbra Boyle", + "gender": "female", + "age": 69, + "address": { + "state": "Louisiana", + "city": "Waumandee" + } + }, + { + "id": 3548, + "name": "Gloria Villarreal", + "gender": "female", + "age": 67, + "address": { + "state": "Maryland", + "city": "Norwood" + } + }, + { + "id": 3549, + "name": "Melody Kirby", + "gender": "female", + "age": 20, + "address": { + "state": "Washington", + "city": "Coyote" + } + }, + { + "id": 3550, + "name": "Puckett Best", + "gender": "male", + "age": 57, + "address": { + "state": "Minnesota", + "city": "Roeville" + } + }, + { + "id": 3551, + "name": "Madeleine Schmidt", + "gender": "female", + "age": 82, + "address": { + "state": "Indiana", + "city": "Alafaya" + } + }, + { + "id": 3552, + "name": "Elizabeth Callahan", + "gender": "female", + "age": 70, + "address": { + "state": "Colorado", + "city": "Adelino" + } + }, + { + "id": 3553, + "name": "Celia Morse", + "gender": "female", + "age": 80, + "address": { + "state": "Virginia", + "city": "Chumuckla" + } + }, + { + "id": 3554, + "name": "Acosta Fitzgerald", + "gender": "male", + "age": 28, + "address": { + "state": "Missouri", + "city": "Edenburg" + } + }, + { + "id": 3555, + "name": "Wheeler Camacho", + "gender": "male", + "age": 19, + "address": { + "state": "Alabama", + "city": "Yardville" + } + }, + { + "id": 3556, + "name": "Sybil Torres", + "gender": "female", + "age": 70, + "address": { + "state": "California", + "city": "Brandywine" + } + }, + { + "id": 3557, + "name": "Maribel Franklin", + "gender": "female", + "age": 51, + "address": { + "state": "Arizona", + "city": "Walker" + } + }, + { + "id": 3558, + "name": "Yvette Chen", + "gender": "female", + "age": 36, + "address": { + "state": "Nevada", + "city": "Hampstead" + } + }, + { + "id": 3559, + "name": "Carey Ellis", + "gender": "male", + "age": 43, + "address": { + "state": "Oklahoma", + "city": "Westboro" + } + }, + { + "id": 3560, + "name": "Booth Arnold", + "gender": "male", + "age": 30, + "address": { + "state": "Wisconsin", + "city": "Wells" + } + }, + { + "id": 3561, + "name": "Britney Mcleod", + "gender": "female", + "age": 44, + "address": { + "state": "New Mexico", + "city": "Wikieup" + } + }, + { + "id": 3562, + "name": "Mae Peterson", + "gender": "female", + "age": 44, + "address": { + "state": "Maine", + "city": "Rose" + } + }, + { + "id": 3563, + "name": "Underwood Reynolds", + "gender": "male", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Roulette" + } + }, + { + "id": 3564, + "name": "Yesenia Henson", + "gender": "female", + "age": 52, + "address": { + "state": "Kentucky", + "city": "Freetown" + } + }, + { + "id": 3565, + "name": "Angela Durham", + "gender": "female", + "age": 51, + "address": { + "state": "New York", + "city": "Winfred" + } + }, + { + "id": 3566, + "name": "Carson Livingston", + "gender": "male", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Kent" + } + }, + { + "id": 3567, + "name": "Hamilton Lindsay", + "gender": "male", + "age": 55, + "address": { + "state": "Tennessee", + "city": "Gracey" + } + }, + { + "id": 3568, + "name": "Terri Sawyer", + "gender": "female", + "age": 75, + "address": { + "state": "Utah", + "city": "Kraemer" + } + }, + { + "id": 3569, + "name": "Clay Olson", + "gender": "male", + "age": 81, + "address": { + "state": "South Dakota", + "city": "Darlington" + } + }, + { + "id": 3570, + "name": "Berta Roberson", + "gender": "female", + "age": 29, + "address": { + "state": "Mississippi", + "city": "Skyland" + } + }, + { + "id": 3571, + "name": "Chelsea Everett", + "gender": "female", + "age": 76, + "address": { + "state": "Texas", + "city": "Coaldale" + } + }, + { + "id": 3572, + "name": "Sabrina Noble", + "gender": "female", + "age": 21, + "address": { + "state": "Alaska", + "city": "Newcastle" + } + }, + { + "id": 3573, + "name": "Sanchez Valentine", + "gender": "male", + "age": 78, + "address": { + "state": "Iowa", + "city": "Nicut" + } + }, + { + "id": 3574, + "name": "Ashley Talley", + "gender": "female", + "age": 44, + "address": { + "state": "Oregon", + "city": "Falmouth" + } + }, + { + "id": 3575, + "name": "Mcknight Washington", + "gender": "male", + "age": 50, + "address": { + "state": "Pennsylvania", + "city": "Williamson" + } + }, + { + "id": 3576, + "name": "Carver Herring", + "gender": "male", + "age": 36, + "address": { + "state": "Connecticut", + "city": "Cowiche" + } + }, + { + "id": 3577, + "name": "Dianne Mercer", + "gender": "female", + "age": 82, + "address": { + "state": "Rhode Island", + "city": "Hondah" + } + }, + { + "id": 3578, + "name": "Buckley Mclaughlin", + "gender": "male", + "age": 33, + "address": { + "state": "Virginia", + "city": "Grenelefe" + } + }, + { + "id": 3579, + "name": "Rogers Mcleod", + "gender": "male", + "age": 41, + "address": { + "state": "Indiana", + "city": "Kidder" + } + }, + { + "id": 3580, + "name": "Kristy Estrada", + "gender": "female", + "age": 50, + "address": { + "state": "Nebraska", + "city": "Coloma" + } + }, + { + "id": 3581, + "name": "Lora Hyde", + "gender": "female", + "age": 68, + "address": { + "state": "Wisconsin", + "city": "Silkworth" + } + }, + { + "id": 3582, + "name": "Cathleen Chandler", + "gender": "female", + "age": 52, + "address": { + "state": "Iowa", + "city": "Lorraine" + } + }, + { + "id": 3583, + "name": "Isabel Tucker", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Lowgap" + } + }, + { + "id": 3584, + "name": "Hale Stevenson", + "gender": "male", + "age": 39, + "address": { + "state": "South Dakota", + "city": "Coldiron" + } + }, + { + "id": 3585, + "name": "Lacy Haynes", + "gender": "female", + "age": 75, + "address": { + "state": "Alaska", + "city": "Shepardsville" + } + }, + { + "id": 3586, + "name": "Noble Cotton", + "gender": "male", + "age": 59, + "address": { + "state": "Alabama", + "city": "Riviera" + } + }, + { + "id": 3587, + "name": "Little Mccoy", + "gender": "male", + "age": 30, + "address": { + "state": "Wyoming", + "city": "Succasunna" + } + }, + { + "id": 3588, + "name": "Erin Cox", + "gender": "female", + "age": 49, + "address": { + "state": "Arkansas", + "city": "Onton" + } + }, + { + "id": 3589, + "name": "Jacqueline Reilly", + "gender": "female", + "age": 38, + "address": { + "state": "Missouri", + "city": "Breinigsville" + } + }, + { + "id": 3590, + "name": "Melba Griffith", + "gender": "female", + "age": 39, + "address": { + "state": "Minnesota", + "city": "Loomis" + } + }, + { + "id": 3591, + "name": "Candice Blackwell", + "gender": "female", + "age": 28, + "address": { + "state": "Louisiana", + "city": "Bascom" + } + }, + { + "id": 3592, + "name": "Thomas Hopkins", + "gender": "male", + "age": 76, + "address": { + "state": "Oklahoma", + "city": "Babb" + } + }, + { + "id": 3593, + "name": "Billie Rivers", + "gender": "female", + "age": 45, + "address": { + "state": "Delaware", + "city": "Homeland" + } + }, + { + "id": 3594, + "name": "Barnes Shepard", + "gender": "male", + "age": 63, + "address": { + "state": "Georgia", + "city": "Geyserville" + } + }, + { + "id": 3595, + "name": "Rodgers Nelson", + "gender": "male", + "age": 28, + "address": { + "state": "Massachusetts", + "city": "Driftwood" + } + }, + { + "id": 3596, + "name": "Kaye Foster", + "gender": "female", + "age": 29, + "address": { + "state": "Tennessee", + "city": "Nelson" + } + }, + { + "id": 3597, + "name": "Walsh Watson", + "gender": "male", + "age": 79, + "address": { + "state": "Ohio", + "city": "Yonah" + } + }, + { + "id": 3598, + "name": "Schultz Floyd", + "gender": "male", + "age": 47, + "address": { + "state": "Pennsylvania", + "city": "Whitewater" + } + }, + { + "id": 3599, + "name": "Ramirez Young", + "gender": "male", + "age": 69, + "address": { + "state": "Connecticut", + "city": "Glasgow" + } + }, + { + "id": 3600, + "name": "Jacobs Hall", + "gender": "male", + "age": 25, + "address": { + "state": "Texas", + "city": "Warsaw" + } + }, + { + "id": 3601, + "name": "Katina Romero", + "gender": "female", + "age": 73, + "address": { + "state": "Kentucky", + "city": "Newry" + } + }, + { + "id": 3602, + "name": "Cindy Lloyd", + "gender": "female", + "age": 53, + "address": { + "state": "New Mexico", + "city": "Welda" + } + }, + { + "id": 3603, + "name": "Genevieve Delaney", + "gender": "female", + "age": 75, + "address": { + "state": "Utah", + "city": "Belva" + } + }, + { + "id": 3604, + "name": "Ashley Pennington", + "gender": "female", + "age": 45, + "address": { + "state": "Washington", + "city": "Rew" + } + }, + { + "id": 3605, + "name": "Hahn Harrison", + "gender": "male", + "age": 44, + "address": { + "state": "Montana", + "city": "Madaket" + } + }, + { + "id": 3606, + "name": "Kim Witt", + "gender": "male", + "age": 58, + "address": { + "state": "North Dakota", + "city": "Florence" + } + }, + { + "id": 3607, + "name": "Allie Elliott", + "gender": "female", + "age": 44, + "address": { + "state": "Nevada", + "city": "Roberts" + } + }, + { + "id": 3608, + "name": "Atkinson Wolfe", + "gender": "male", + "age": 37, + "address": { + "state": "Maryland", + "city": "Convent" + } + }, + { + "id": 3609, + "name": "Beasley Powell", + "gender": "male", + "age": 28, + "address": { + "state": "New Jersey", + "city": "Cannondale" + } + }, + { + "id": 3610, + "name": "Zimmerman Fisher", + "gender": "male", + "age": 68, + "address": { + "state": "Illinois", + "city": "Homeworth" + } + }, + { + "id": 3611, + "name": "Ollie Pearson", + "gender": "female", + "age": 53, + "address": { + "state": "Colorado", + "city": "Tilden" + } + }, + { + "id": 3612, + "name": "Ruth Palmer", + "gender": "female", + "age": 27, + "address": { + "state": "Kansas", + "city": "Norris" + } + }, + { + "id": 3613, + "name": "Rosario Boyd", + "gender": "female", + "age": 17, + "address": { + "state": "New Hampshire", + "city": "Cliff" + } + }, + { + "id": 3614, + "name": "Levy Robinson", + "gender": "male", + "age": 63, + "address": { + "state": "Oregon", + "city": "Biddle" + } + }, + { + "id": 3615, + "name": "Monroe Maldonado", + "gender": "male", + "age": 72, + "address": { + "state": "Mississippi", + "city": "Santel" + } + }, + { + "id": 3616, + "name": "Shaffer Aguirre", + "gender": "male", + "age": 66, + "address": { + "state": "Maine", + "city": "Eastmont" + } + }, + { + "id": 3617, + "name": "Flynn Bush", + "gender": "male", + "age": 35, + "address": { + "state": "New York", + "city": "Ladera" + } + }, + { + "id": 3618, + "name": "Hallie Terry", + "gender": "female", + "age": 18, + "address": { + "state": "South Carolina", + "city": "Sylvanite" + } + }, + { + "id": 3619, + "name": "James Curry", + "gender": "female", + "age": 29, + "address": { + "state": "North Carolina", + "city": "Linwood" + } + }, + { + "id": 3620, + "name": "Nichols Fowler", + "gender": "male", + "age": 63, + "address": { + "state": "California", + "city": "Fairhaven" + } + }, + { + "id": 3621, + "name": "Beulah Shaw", + "gender": "female", + "age": 37, + "address": { + "state": "Michigan", + "city": "Spokane" + } + }, + { + "id": 3622, + "name": "Chen Richards", + "gender": "male", + "age": 32, + "address": { + "state": "Arizona", + "city": "Martinez" + } + }, + { + "id": 3623, + "name": "Kelsey Valenzuela", + "gender": "female", + "age": 61, + "address": { + "state": "Idaho", + "city": "Chelsea" + } + }, + { + "id": 3624, + "name": "Chan Everett", + "gender": "male", + "age": 18, + "address": { + "state": "Florida", + "city": "Coultervillle" + } + }, + { + "id": 3625, + "name": "Adrienne Kelly", + "gender": "female", + "age": 64, + "address": { + "state": "West Virginia", + "city": "Aberdeen" + } + }, + { + "id": 3626, + "name": "Renee Hood", + "gender": "female", + "age": 68, + "address": { + "state": "Utah", + "city": "Bawcomville" + } + }, + { + "id": 3627, + "name": "Crane Rush", + "gender": "male", + "age": 66, + "address": { + "state": "Minnesota", + "city": "Rowe" + } + }, + { + "id": 3628, + "name": "Fleming Mendez", + "gender": "male", + "age": 64, + "address": { + "state": "Colorado", + "city": "Topaz" + } + }, + { + "id": 3629, + "name": "Susanne Osborn", + "gender": "female", + "age": 42, + "address": { + "state": "Alabama", + "city": "Brenton" + } + }, + { + "id": 3630, + "name": "Jaclyn Mccoy", + "gender": "female", + "age": 76, + "address": { + "state": "Pennsylvania", + "city": "Camino" + } + }, + { + "id": 3631, + "name": "Espinoza Fowler", + "gender": "male", + "age": 60, + "address": { + "state": "Idaho", + "city": "Thatcher" + } + }, + { + "id": 3632, + "name": "Mcmahon Sullivan", + "gender": "male", + "age": 64, + "address": { + "state": "Iowa", + "city": "Homeworth" + } + }, + { + "id": 3633, + "name": "Mari Giles", + "gender": "female", + "age": 34, + "address": { + "state": "Connecticut", + "city": "Groveville" + } + }, + { + "id": 3634, + "name": "Hardy Kramer", + "gender": "male", + "age": 62, + "address": { + "state": "Maine", + "city": "Klagetoh" + } + }, + { + "id": 3635, + "name": "Cooke Heath", + "gender": "male", + "age": 41, + "address": { + "state": "Maryland", + "city": "Grazierville" + } + }, + { + "id": 3636, + "name": "Judy Cameron", + "gender": "female", + "age": 36, + "address": { + "state": "Illinois", + "city": "Bakersville" + } + }, + { + "id": 3637, + "name": "Jacklyn Ryan", + "gender": "female", + "age": 54, + "address": { + "state": "Arkansas", + "city": "Hannasville" + } + }, + { + "id": 3638, + "name": "Church Wynn", + "gender": "male", + "age": 18, + "address": { + "state": "Michigan", + "city": "Beason" + } + }, + { + "id": 3639, + "name": "Holmes Kline", + "gender": "male", + "age": 76, + "address": { + "state": "Kentucky", + "city": "Emison" + } + }, + { + "id": 3640, + "name": "Austin Garcia", + "gender": "male", + "age": 73, + "address": { + "state": "Delaware", + "city": "Herbster" + } + }, + { + "id": 3641, + "name": "Jodi Thornton", + "gender": "female", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Rivers" + } + }, + { + "id": 3642, + "name": "Terri Talley", + "gender": "female", + "age": 66, + "address": { + "state": "South Dakota", + "city": "Falconaire" + } + }, + { + "id": 3643, + "name": "Solomon Hudson", + "gender": "male", + "age": 49, + "address": { + "state": "Oklahoma", + "city": "Alden" + } + }, + { + "id": 3644, + "name": "Tammi Alexander", + "gender": "female", + "age": 76, + "address": { + "state": "New Mexico", + "city": "Goochland" + } + }, + { + "id": 3645, + "name": "Campbell Nelson", + "gender": "male", + "age": 31, + "address": { + "state": "New Jersey", + "city": "Springville" + } + }, + { + "id": 3646, + "name": "Hudson Finley", + "gender": "male", + "age": 49, + "address": { + "state": "Arizona", + "city": "Fidelis" + } + }, + { + "id": 3647, + "name": "Goodman Underwood", + "gender": "male", + "age": 66, + "address": { + "state": "Ohio", + "city": "Manila" + } + }, + { + "id": 3648, + "name": "Whitfield Sherman", + "gender": "male", + "age": 30, + "address": { + "state": "Alaska", + "city": "Mapletown" + } + }, + { + "id": 3649, + "name": "Karla Herman", + "gender": "female", + "age": 64, + "address": { + "state": "Montana", + "city": "Rushford" + } + }, + { + "id": 3650, + "name": "Patel Rodriquez", + "gender": "male", + "age": 42, + "address": { + "state": "Nevada", + "city": "Richford" + } + }, + { + "id": 3651, + "name": "Tammy Smith", + "gender": "female", + "age": 53, + "address": { + "state": "North Dakota", + "city": "Dupuyer" + } + }, + { + "id": 3652, + "name": "Lynne Coleman", + "gender": "female", + "age": 23, + "address": { + "state": "Louisiana", + "city": "Elliott" + } + }, + { + "id": 3653, + "name": "Janelle Dominguez", + "gender": "female", + "age": 33, + "address": { + "state": "Vermont", + "city": "Emory" + } + }, + { + "id": 3654, + "name": "Belinda Carey", + "gender": "female", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Nettie" + } + }, + { + "id": 3655, + "name": "Spencer Finch", + "gender": "male", + "age": 56, + "address": { + "state": "Virginia", + "city": "Chelsea" + } + }, + { + "id": 3656, + "name": "Mcneil Murray", + "gender": "male", + "age": 60, + "address": { + "state": "Mississippi", + "city": "Baker" + } + }, + { + "id": 3657, + "name": "Mercado Levy", + "gender": "male", + "age": 56, + "address": { + "state": "New Hampshire", + "city": "Deercroft" + } + }, + { + "id": 3658, + "name": "Hardin Short", + "gender": "male", + "age": 49, + "address": { + "state": "West Virginia", + "city": "Rodman" + } + }, + { + "id": 3659, + "name": "Ivy Villarreal", + "gender": "female", + "age": 33, + "address": { + "state": "California", + "city": "Vivian" + } + }, + { + "id": 3660, + "name": "Wolf Gould", + "gender": "male", + "age": 20, + "address": { + "state": "Georgia", + "city": "Westphalia" + } + }, + { + "id": 3661, + "name": "Lopez Buchanan", + "gender": "male", + "age": 36, + "address": { + "state": "Hawaii", + "city": "Shelby" + } + }, + { + "id": 3662, + "name": "Mercedes Benton", + "gender": "female", + "age": 23, + "address": { + "state": "Tennessee", + "city": "Caroline" + } + }, + { + "id": 3663, + "name": "Watkins Landry", + "gender": "male", + "age": 21, + "address": { + "state": "Texas", + "city": "Shaft" + } + }, + { + "id": 3664, + "name": "Pearl Bates", + "gender": "female", + "age": 60, + "address": { + "state": "Missouri", + "city": "Salvo" + } + }, + { + "id": 3665, + "name": "Daugherty Joyner", + "gender": "male", + "age": 58, + "address": { + "state": "North Carolina", + "city": "Sultana" + } + }, + { + "id": 3666, + "name": "Aida Farmer", + "gender": "female", + "age": 22, + "address": { + "state": "Oregon", + "city": "Levant" + } + }, + { + "id": 3667, + "name": "Kara Mcdonald", + "gender": "female", + "age": 70, + "address": { + "state": "Massachusetts", + "city": "Dalton" + } + }, + { + "id": 3668, + "name": "Dominique Mack", + "gender": "female", + "age": 64, + "address": { + "state": "Nebraska", + "city": "Crumpler" + } + }, + { + "id": 3669, + "name": "Whitehead Medina", + "gender": "male", + "age": 60, + "address": { + "state": "Wisconsin", + "city": "Rivereno" + } + }, + { + "id": 3670, + "name": "Lillie May", + "gender": "female", + "age": 50, + "address": { + "state": "Florida", + "city": "Edgar" + } + }, + { + "id": 3671, + "name": "Aurelia Gibbs", + "gender": "female", + "age": 59, + "address": { + "state": "Washington", + "city": "Torboy" + } + }, + { + "id": 3672, + "name": "Socorro Donaldson", + "gender": "female", + "age": 81, + "address": { + "state": "South Carolina", + "city": "Calverton" + } + }, + { + "id": 3673, + "name": "Consuelo Wiley", + "gender": "female", + "age": 18, + "address": { + "state": "Kansas", + "city": "Lacomb" + } + }, + { + "id": 3674, + "name": "Justine Gilmore", + "gender": "female", + "age": 56, + "address": { + "state": "New York", + "city": "Stouchsburg" + } + }, + { + "id": 3675, + "name": "Rivera Conway", + "gender": "male", + "age": 53, + "address": { + "state": "Hawaii", + "city": "Kraemer" + } + }, + { + "id": 3676, + "name": "Jenny Carlson", + "gender": "female", + "age": 73, + "address": { + "state": "New Mexico", + "city": "Hillsboro" + } + }, + { + "id": 3677, + "name": "Stafford Sheppard", + "gender": "male", + "age": 29, + "address": { + "state": "Idaho", + "city": "Crown" + } + }, + { + "id": 3678, + "name": "Deena Barker", + "gender": "female", + "age": 57, + "address": { + "state": "Maine", + "city": "Robinette" + } + }, + { + "id": 3679, + "name": "Lara Solis", + "gender": "female", + "age": 36, + "address": { + "state": "Tennessee", + "city": "Greer" + } + }, + { + "id": 3680, + "name": "Alyssa Kerr", + "gender": "female", + "age": 51, + "address": { + "state": "Maryland", + "city": "Wilsonia" + } + }, + { + "id": 3681, + "name": "Mckay Wiley", + "gender": "male", + "age": 64, + "address": { + "state": "Louisiana", + "city": "Wattsville" + } + }, + { + "id": 3682, + "name": "Kasey Howard", + "gender": "female", + "age": 53, + "address": { + "state": "California", + "city": "Nadine" + } + }, + { + "id": 3683, + "name": "Holman Turner", + "gender": "male", + "age": 34, + "address": { + "state": "Michigan", + "city": "Blanford" + } + }, + { + "id": 3684, + "name": "Fowler Hardy", + "gender": "male", + "age": 44, + "address": { + "state": "Oklahoma", + "city": "Garnet" + } + }, + { + "id": 3685, + "name": "Hurst Osborne", + "gender": "male", + "age": 81, + "address": { + "state": "Kansas", + "city": "Lodoga" + } + }, + { + "id": 3686, + "name": "Clay Vaughn", + "gender": "male", + "age": 43, + "address": { + "state": "North Dakota", + "city": "Woodlake" + } + }, + { + "id": 3687, + "name": "Rose Adkins", + "gender": "female", + "age": 45, + "address": { + "state": "New Jersey", + "city": "Breinigsville" + } + }, + { + "id": 3688, + "name": "Myrtle Wyatt", + "gender": "female", + "age": 69, + "address": { + "state": "Wyoming", + "city": "Succasunna" + } + }, + { + "id": 3689, + "name": "Tracey Kirby", + "gender": "female", + "age": 72, + "address": { + "state": "Nebraska", + "city": "Chase" + } + }, + { + "id": 3690, + "name": "Lori Terrell", + "gender": "female", + "age": 63, + "address": { + "state": "Minnesota", + "city": "Roeville" + } + }, + { + "id": 3691, + "name": "Jacobs Cox", + "gender": "male", + "age": 28, + "address": { + "state": "Oregon", + "city": "Allison" + } + }, + { + "id": 3692, + "name": "Villarreal Miles", + "gender": "male", + "age": 34, + "address": { + "state": "Vermont", + "city": "Bedias" + } + }, + { + "id": 3693, + "name": "Cheryl Gilliam", + "gender": "female", + "age": 41, + "address": { + "state": "Rhode Island", + "city": "Taft" + } + }, + { + "id": 3694, + "name": "Sharp Cohen", + "gender": "male", + "age": 17, + "address": { + "state": "South Carolina", + "city": "Ballico" + } + }, + { + "id": 3695, + "name": "Steele Whitfield", + "gender": "male", + "age": 21, + "address": { + "state": "Pennsylvania", + "city": "Bethpage" + } + }, + { + "id": 3696, + "name": "Debora Perkins", + "gender": "female", + "age": 53, + "address": { + "state": "Illinois", + "city": "Glenbrook" + } + }, + { + "id": 3697, + "name": "Small Sykes", + "gender": "male", + "age": 28, + "address": { + "state": "Alaska", + "city": "Century" + } + }, + { + "id": 3698, + "name": "Delia Velasquez", + "gender": "female", + "age": 55, + "address": { + "state": "Texas", + "city": "Woodruff" + } + }, + { + "id": 3699, + "name": "Clara Emerson", + "gender": "female", + "age": 74, + "address": { + "state": "Iowa", + "city": "Boyd" + } + }, + { + "id": 3700, + "name": "Huffman Fisher", + "gender": "male", + "age": 24, + "address": { + "state": "Florida", + "city": "Durham" + } + }, + { + "id": 3701, + "name": "Bentley Ball", + "gender": "male", + "age": 33, + "address": { + "state": "Georgia", + "city": "Volta" + } + }, + { + "id": 3702, + "name": "Neva Daniel", + "gender": "female", + "age": 57, + "address": { + "state": "Wisconsin", + "city": "Oretta" + } + }, + { + "id": 3703, + "name": "Ware Harper", + "gender": "male", + "age": 59, + "address": { + "state": "Nevada", + "city": "Springhill" + } + }, + { + "id": 3704, + "name": "Hensley Foreman", + "gender": "male", + "age": 55, + "address": { + "state": "West Virginia", + "city": "Bawcomville" + } + }, + { + "id": 3705, + "name": "Baxter Christensen", + "gender": "male", + "age": 74, + "address": { + "state": "Washington", + "city": "Deercroft" + } + }, + { + "id": 3706, + "name": "Elisa Cortez", + "gender": "female", + "age": 23, + "address": { + "state": "Colorado", + "city": "Islandia" + } + }, + { + "id": 3707, + "name": "Roman Patel", + "gender": "male", + "age": 49, + "address": { + "state": "Massachusetts", + "city": "Fairlee" + } + }, + { + "id": 3708, + "name": "Janell Ortega", + "gender": "female", + "age": 30, + "address": { + "state": "Montana", + "city": "Rivera" + } + }, + { + "id": 3709, + "name": "Lindsey Bradshaw", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Roland" + } + }, + { + "id": 3710, + "name": "Winters James", + "gender": "male", + "age": 57, + "address": { + "state": "Indiana", + "city": "Boykin" + } + }, + { + "id": 3711, + "name": "Tamika Mcclure", + "gender": "female", + "age": 30, + "address": { + "state": "Delaware", + "city": "Edinburg" + } + }, + { + "id": 3712, + "name": "Allison Galloway", + "gender": "male", + "age": 31, + "address": { + "state": "Missouri", + "city": "Duryea" + } + }, + { + "id": 3713, + "name": "Lawrence Preston", + "gender": "male", + "age": 66, + "address": { + "state": "Arizona", + "city": "Wyoming" + } + }, + { + "id": 3714, + "name": "Kinney Cash", + "gender": "male", + "age": 80, + "address": { + "state": "Connecticut", + "city": "Moscow" + } + }, + { + "id": 3715, + "name": "Kirkland Montgomery", + "gender": "male", + "age": 31, + "address": { + "state": "Kentucky", + "city": "Cazadero" + } + }, + { + "id": 3716, + "name": "Ines Valdez", + "gender": "female", + "age": 80, + "address": { + "state": "Alabama", + "city": "National" + } + }, + { + "id": 3717, + "name": "Roy Rojas", + "gender": "male", + "age": 55, + "address": { + "state": "Virginia", + "city": "Sehili" + } + }, + { + "id": 3718, + "name": "Roth Holloway", + "gender": "male", + "age": 52, + "address": { + "state": "Ohio", + "city": "Wyano" + } + }, + { + "id": 3719, + "name": "Coffey Wilkerson", + "gender": "male", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Hanover" + } + }, + { + "id": 3720, + "name": "Reyes Smith", + "gender": "male", + "age": 74, + "address": { + "state": "Utah", + "city": "Leyner" + } + }, + { + "id": 3721, + "name": "Harrison Carey", + "gender": "male", + "age": 38, + "address": { + "state": "New York", + "city": "Glendale" + } + }, + { + "id": 3722, + "name": "Hilda Atkinson", + "gender": "female", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Saticoy" + } + }, + { + "id": 3723, + "name": "Nellie Wilder", + "gender": "female", + "age": 74, + "address": { + "state": "Mississippi", + "city": "Vienna" + } + }, + { + "id": 3724, + "name": "Elvia Knowles", + "gender": "female", + "age": 48, + "address": { + "state": "Illinois", + "city": "Robinson" + } + }, + { + "id": 3725, + "name": "Kenya Wall", + "gender": "female", + "age": 65, + "address": { + "state": "Mississippi", + "city": "Loretto" + } + }, + { + "id": 3726, + "name": "Dickerson Vincent", + "gender": "male", + "age": 36, + "address": { + "state": "Rhode Island", + "city": "Navarre" + } + }, + { + "id": 3727, + "name": "Santos Underwood", + "gender": "male", + "age": 50, + "address": { + "state": "Connecticut", + "city": "Cleary" + } + }, + { + "id": 3728, + "name": "York Ingram", + "gender": "male", + "age": 64, + "address": { + "state": "Virginia", + "city": "Chaparrito" + } + }, + { + "id": 3729, + "name": "Gamble Perry", + "gender": "male", + "age": 23, + "address": { + "state": "Maine", + "city": "Richville" + } + }, + { + "id": 3730, + "name": "Cline Coffey", + "gender": "male", + "age": 33, + "address": { + "state": "Washington", + "city": "Nicholson" + } + }, + { + "id": 3731, + "name": "Blanchard Serrano", + "gender": "male", + "age": 46, + "address": { + "state": "Iowa", + "city": "Kraemer" + } + }, + { + "id": 3732, + "name": "Cathy Dean", + "gender": "female", + "age": 17, + "address": { + "state": "Minnesota", + "city": "Edneyville" + } + }, + { + "id": 3733, + "name": "Hebert Alexander", + "gender": "male", + "age": 55, + "address": { + "state": "Missouri", + "city": "Snelling" + } + }, + { + "id": 3734, + "name": "Roach Jennings", + "gender": "male", + "age": 50, + "address": { + "state": "West Virginia", + "city": "Sexton" + } + }, + { + "id": 3735, + "name": "Larson Manning", + "gender": "male", + "age": 27, + "address": { + "state": "South Dakota", + "city": "Henrietta" + } + }, + { + "id": 3736, + "name": "Lawson Wiley", + "gender": "male", + "age": 28, + "address": { + "state": "Georgia", + "city": "Trona" + } + }, + { + "id": 3737, + "name": "Lawrence Bush", + "gender": "male", + "age": 69, + "address": { + "state": "Wisconsin", + "city": "Enlow" + } + }, + { + "id": 3738, + "name": "Yates Webster", + "gender": "male", + "age": 61, + "address": { + "state": "New Hampshire", + "city": "Warsaw" + } + }, + { + "id": 3739, + "name": "Acosta Yates", + "gender": "male", + "age": 44, + "address": { + "state": "Indiana", + "city": "Salvo" + } + }, + { + "id": 3740, + "name": "Carlson Shepard", + "gender": "male", + "age": 76, + "address": { + "state": "Arizona", + "city": "Loveland" + } + }, + { + "id": 3741, + "name": "Byrd Ochoa", + "gender": "male", + "age": 54, + "address": { + "state": "Utah", + "city": "Sattley" + } + }, + { + "id": 3742, + "name": "Dixie Goff", + "gender": "female", + "age": 54, + "address": { + "state": "Hawaii", + "city": "Dale" + } + }, + { + "id": 3743, + "name": "Corrine Jimenez", + "gender": "female", + "age": 36, + "address": { + "state": "Alaska", + "city": "Tampico" + } + }, + { + "id": 3744, + "name": "Fuentes Christensen", + "gender": "male", + "age": 72, + "address": { + "state": "Delaware", + "city": "Martinez" + } + }, + { + "id": 3745, + "name": "Kristen Reilly", + "gender": "female", + "age": 19, + "address": { + "state": "Florida", + "city": "Libertytown" + } + }, + { + "id": 3746, + "name": "Kerry Gallegos", + "gender": "female", + "age": 33, + "address": { + "state": "Massachusetts", + "city": "Riviera" + } + }, + { + "id": 3747, + "name": "Bates Cooke", + "gender": "male", + "age": 42, + "address": { + "state": "Kansas", + "city": "Linganore" + } + }, + { + "id": 3748, + "name": "Earnestine Kemp", + "gender": "female", + "age": 75, + "address": { + "state": "Montana", + "city": "Chamberino" + } + }, + { + "id": 3749, + "name": "Patrica Pearson", + "gender": "female", + "age": 52, + "address": { + "state": "Tennessee", + "city": "Floriston" + } + }, + { + "id": 3750, + "name": "Peters Lucas", + "gender": "male", + "age": 25, + "address": { + "state": "New York", + "city": "Lookingglass" + } + }, + { + "id": 3751, + "name": "Christa Cole", + "gender": "female", + "age": 35, + "address": { + "state": "Pennsylvania", + "city": "Neahkahnie" + } + }, + { + "id": 3752, + "name": "Roxie Pope", + "gender": "female", + "age": 45, + "address": { + "state": "Colorado", + "city": "Websterville" + } + }, + { + "id": 3753, + "name": "Santiago King", + "gender": "male", + "age": 32, + "address": { + "state": "Idaho", + "city": "Chemung" + } + }, + { + "id": 3754, + "name": "Juliette Weaver", + "gender": "female", + "age": 20, + "address": { + "state": "Louisiana", + "city": "Urbana" + } + }, + { + "id": 3755, + "name": "Annette Beck", + "gender": "female", + "age": 77, + "address": { + "state": "Michigan", + "city": "Carlos" + } + }, + { + "id": 3756, + "name": "Taylor Burns", + "gender": "male", + "age": 18, + "address": { + "state": "North Carolina", + "city": "Grandview" + } + }, + { + "id": 3757, + "name": "Doris Alston", + "gender": "female", + "age": 75, + "address": { + "state": "South Carolina", + "city": "Kula" + } + }, + { + "id": 3758, + "name": "Cheri Rowland", + "gender": "female", + "age": 74, + "address": { + "state": "New Jersey", + "city": "Wintersburg" + } + }, + { + "id": 3759, + "name": "Millie Griffin", + "gender": "female", + "age": 53, + "address": { + "state": "California", + "city": "Collins" + } + }, + { + "id": 3760, + "name": "Christie Adams", + "gender": "female", + "age": 77, + "address": { + "state": "Nebraska", + "city": "Orick" + } + }, + { + "id": 3761, + "name": "Jacqueline Valentine", + "gender": "female", + "age": 46, + "address": { + "state": "Nevada", + "city": "Statenville" + } + }, + { + "id": 3762, + "name": "Hawkins Hyde", + "gender": "male", + "age": 37, + "address": { + "state": "Alabama", + "city": "Nash" + } + }, + { + "id": 3763, + "name": "Valeria Brock", + "gender": "female", + "age": 66, + "address": { + "state": "Texas", + "city": "Vivian" + } + }, + { + "id": 3764, + "name": "Oliver Swanson", + "gender": "male", + "age": 37, + "address": { + "state": "Vermont", + "city": "Troy" + } + }, + { + "id": 3765, + "name": "May Chavez", + "gender": "male", + "age": 78, + "address": { + "state": "Oregon", + "city": "Berlin" + } + }, + { + "id": 3766, + "name": "Lynn Kim", + "gender": "male", + "age": 75, + "address": { + "state": "Oklahoma", + "city": "Needmore" + } + }, + { + "id": 3767, + "name": "Dodson Suarez", + "gender": "male", + "age": 46, + "address": { + "state": "Kentucky", + "city": "Bentley" + } + }, + { + "id": 3768, + "name": "Joanne Young", + "gender": "female", + "age": 62, + "address": { + "state": "Arkansas", + "city": "Sunriver" + } + }, + { + "id": 3769, + "name": "Howard Hill", + "gender": "male", + "age": 56, + "address": { + "state": "Ohio", + "city": "Stouchsburg" + } + }, + { + "id": 3770, + "name": "Battle Wyatt", + "gender": "male", + "age": 65, + "address": { + "state": "Maryland", + "city": "Adamstown" + } + }, + { + "id": 3771, + "name": "Jill Acevedo", + "gender": "female", + "age": 29, + "address": { + "state": "North Dakota", + "city": "Jugtown" + } + }, + { + "id": 3772, + "name": "Leah Shaw", + "gender": "female", + "age": 66, + "address": { + "state": "New Mexico", + "city": "Ernstville" + } + }, + { + "id": 3773, + "name": "Chris Hooper", + "gender": "female", + "age": 35, + "address": { + "state": "California", + "city": "Oley" + } + }, + { + "id": 3774, + "name": "Barrera Hubbard", + "gender": "male", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Emory" + } + }, + { + "id": 3775, + "name": "Mildred Browning", + "gender": "female", + "age": 63, + "address": { + "state": "Nevada", + "city": "Weeksville" + } + }, + { + "id": 3776, + "name": "Kinney Blair", + "gender": "male", + "age": 66, + "address": { + "state": "Colorado", + "city": "Innsbrook" + } + }, + { + "id": 3777, + "name": "Lowe Chan", + "gender": "male", + "age": 81, + "address": { + "state": "Tennessee", + "city": "Coinjock" + } + }, + { + "id": 3778, + "name": "Banks Gregory", + "gender": "male", + "age": 31, + "address": { + "state": "Nebraska", + "city": "Eden" + } + }, + { + "id": 3779, + "name": "Magdalena Bruce", + "gender": "female", + "age": 29, + "address": { + "state": "Arizona", + "city": "Crisman" + } + }, + { + "id": 3780, + "name": "Sharp Leblanc", + "gender": "male", + "age": 29, + "address": { + "state": "Illinois", + "city": "Savannah" + } + }, + { + "id": 3781, + "name": "Ina Brooks", + "gender": "female", + "age": 34, + "address": { + "state": "Missouri", + "city": "Olney" + } + }, + { + "id": 3782, + "name": "Angelina Chandler", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Columbus" + } + }, + { + "id": 3783, + "name": "Laurel Dunlap", + "gender": "female", + "age": 26, + "address": { + "state": "Hawaii", + "city": "Greenwich" + } + }, + { + "id": 3784, + "name": "Hood Whitehead", + "gender": "male", + "age": 65, + "address": { + "state": "Delaware", + "city": "Maplewood" + } + }, + { + "id": 3785, + "name": "Price Cleveland", + "gender": "male", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Beaverdale" + } + }, + { + "id": 3786, + "name": "Barker England", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Caroline" + } + }, + { + "id": 3787, + "name": "Beasley Chapman", + "gender": "male", + "age": 45, + "address": { + "state": "Mississippi", + "city": "Hachita" + } + }, + { + "id": 3788, + "name": "Claudine Elliott", + "gender": "female", + "age": 68, + "address": { + "state": "Michigan", + "city": "Southview" + } + }, + { + "id": 3789, + "name": "Nolan Mullen", + "gender": "male", + "age": 82, + "address": { + "state": "Alaska", + "city": "Maybell" + } + }, + { + "id": 3790, + "name": "Martinez Ortiz", + "gender": "male", + "age": 29, + "address": { + "state": "New Mexico", + "city": "Fowlerville" + } + }, + { + "id": 3791, + "name": "Robin Lowe", + "gender": "female", + "age": 27, + "address": { + "state": "Arkansas", + "city": "Wilsonia" + } + }, + { + "id": 3792, + "name": "Ruthie Boyle", + "gender": "female", + "age": 52, + "address": { + "state": "Kansas", + "city": "Malo" + } + }, + { + "id": 3793, + "name": "Kathy Mclaughlin", + "gender": "female", + "age": 24, + "address": { + "state": "Georgia", + "city": "Frank" + } + }, + { + "id": 3794, + "name": "Bertha Bush", + "gender": "female", + "age": 55, + "address": { + "state": "Vermont", + "city": "Yonah" + } + }, + { + "id": 3795, + "name": "Pierce Sharpe", + "gender": "male", + "age": 65, + "address": { + "state": "Montana", + "city": "Bodega" + } + }, + { + "id": 3796, + "name": "Montoya Cross", + "gender": "male", + "age": 63, + "address": { + "state": "Connecticut", + "city": "Avoca" + } + }, + { + "id": 3797, + "name": "Stephenson Yates", + "gender": "male", + "age": 48, + "address": { + "state": "Kentucky", + "city": "Valmy" + } + }, + { + "id": 3798, + "name": "Hawkins Holder", + "gender": "male", + "age": 32, + "address": { + "state": "Idaho", + "city": "Gasquet" + } + }, + { + "id": 3799, + "name": "Herminia Trevino", + "gender": "female", + "age": 66, + "address": { + "state": "Louisiana", + "city": "Russellville" + } + }, + { + "id": 3800, + "name": "Kenya Spears", + "gender": "female", + "age": 37, + "address": { + "state": "Massachusetts", + "city": "Orick" + } + }, + { + "id": 3801, + "name": "Rosetta Owens", + "gender": "female", + "age": 52, + "address": { + "state": "Virginia", + "city": "Beyerville" + } + }, + { + "id": 3802, + "name": "Mckay Cannon", + "gender": "male", + "age": 40, + "address": { + "state": "Oregon", + "city": "Statenville" + } + }, + { + "id": 3803, + "name": "Maryellen Sweet", + "gender": "female", + "age": 49, + "address": { + "state": "New York", + "city": "Nettie" + } + }, + { + "id": 3804, + "name": "Michael Snyder", + "gender": "female", + "age": 18, + "address": { + "state": "Iowa", + "city": "Nescatunga" + } + }, + { + "id": 3805, + "name": "Norton Lamb", + "gender": "male", + "age": 48, + "address": { + "state": "Maryland", + "city": "Enetai" + } + }, + { + "id": 3806, + "name": "Ines Buckley", + "gender": "female", + "age": 50, + "address": { + "state": "Rhode Island", + "city": "Galesville" + } + }, + { + "id": 3807, + "name": "Wade Buckner", + "gender": "male", + "age": 54, + "address": { + "state": "South Carolina", + "city": "Conway" + } + }, + { + "id": 3808, + "name": "Snyder Boyd", + "gender": "male", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Woodburn" + } + }, + { + "id": 3809, + "name": "Lenore Guzman", + "gender": "female", + "age": 60, + "address": { + "state": "North Dakota", + "city": "Barrelville" + } + }, + { + "id": 3810, + "name": "Koch Bailey", + "gender": "male", + "age": 56, + "address": { + "state": "Indiana", + "city": "Dotsero" + } + }, + { + "id": 3811, + "name": "Denise Britt", + "gender": "female", + "age": 21, + "address": { + "state": "Maine", + "city": "Machias" + } + }, + { + "id": 3812, + "name": "Tanisha Everett", + "gender": "female", + "age": 69, + "address": { + "state": "Washington", + "city": "Tivoli" + } + }, + { + "id": 3813, + "name": "Raquel Holcomb", + "gender": "female", + "age": 57, + "address": { + "state": "Minnesota", + "city": "Lavalette" + } + }, + { + "id": 3814, + "name": "Harriett Riggs", + "gender": "female", + "age": 36, + "address": { + "state": "Florida", + "city": "Martell" + } + }, + { + "id": 3815, + "name": "Strickland Kirby", + "gender": "male", + "age": 77, + "address": { + "state": "Alabama", + "city": "Taft" + } + }, + { + "id": 3816, + "name": "Amber Perry", + "gender": "female", + "age": 35, + "address": { + "state": "South Dakota", + "city": "Baker" + } + }, + { + "id": 3817, + "name": "Kara Day", + "gender": "female", + "age": 44, + "address": { + "state": "Ohio", + "city": "Shawmut" + } + }, + { + "id": 3818, + "name": "Dee Finley", + "gender": "female", + "age": 53, + "address": { + "state": "Wyoming", + "city": "Camino" + } + }, + { + "id": 3819, + "name": "Barr Humphrey", + "gender": "male", + "age": 17, + "address": { + "state": "Texas", + "city": "Weedville" + } + }, + { + "id": 3820, + "name": "Jamie Walters", + "gender": "female", + "age": 31, + "address": { + "state": "Wisconsin", + "city": "Marienthal" + } + }, + { + "id": 3821, + "name": "Valarie Rush", + "gender": "female", + "age": 60, + "address": { + "state": "Oklahoma", + "city": "Caberfae" + } + }, + { + "id": 3822, + "name": "Carolina Fields", + "gender": "female", + "age": 39, + "address": { + "state": "Kansas", + "city": "Hailesboro" + } + }, + { + "id": 3823, + "name": "Casey Robles", + "gender": "male", + "age": 24, + "address": { + "state": "Nebraska", + "city": "Chemung" + } + }, + { + "id": 3824, + "name": "Sears Dennis", + "gender": "male", + "age": 47, + "address": { + "state": "Georgia", + "city": "Finzel" + } + }, + { + "id": 3825, + "name": "Marianne Buchanan", + "gender": "female", + "age": 54, + "address": { + "state": "Florida", + "city": "Callaghan" + } + }, + { + "id": 3826, + "name": "Shepherd Weeks", + "gender": "male", + "age": 19, + "address": { + "state": "Michigan", + "city": "Germanton" + } + }, + { + "id": 3827, + "name": "Anderson Rhodes", + "gender": "male", + "age": 38, + "address": { + "state": "Colorado", + "city": "Movico" + } + }, + { + "id": 3828, + "name": "Irma Hardin", + "gender": "female", + "age": 19, + "address": { + "state": "Iowa", + "city": "Bordelonville" + } + }, + { + "id": 3829, + "name": "Carrillo Bass", + "gender": "male", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Gratton" + } + }, + { + "id": 3830, + "name": "Ronda Bradley", + "gender": "female", + "age": 44, + "address": { + "state": "Arkansas", + "city": "Leroy" + } + }, + { + "id": 3831, + "name": "Pearl Oliver", + "gender": "female", + "age": 75, + "address": { + "state": "West Virginia", + "city": "Yonah" + } + }, + { + "id": 3832, + "name": "Dillard Beach", + "gender": "male", + "age": 35, + "address": { + "state": "Kentucky", + "city": "Lupton" + } + }, + { + "id": 3833, + "name": "Graham Wilder", + "gender": "male", + "age": 80, + "address": { + "state": "Alabama", + "city": "Breinigsville" + } + }, + { + "id": 3834, + "name": "Sharlene Shelton", + "gender": "female", + "age": 80, + "address": { + "state": "Hawaii", + "city": "Levant" + } + }, + { + "id": 3835, + "name": "Autumn Cobb", + "gender": "female", + "age": 64, + "address": { + "state": "Wisconsin", + "city": "Leming" + } + }, + { + "id": 3836, + "name": "Blackburn Benson", + "gender": "male", + "age": 44, + "address": { + "state": "Oregon", + "city": "Outlook" + } + }, + { + "id": 3837, + "name": "Imelda Vega", + "gender": "female", + "age": 23, + "address": { + "state": "California", + "city": "Bluetown" + } + }, + { + "id": 3838, + "name": "Giles Spencer", + "gender": "male", + "age": 40, + "address": { + "state": "Pennsylvania", + "city": "Bartley" + } + }, + { + "id": 3839, + "name": "Butler Jensen", + "gender": "male", + "age": 70, + "address": { + "state": "Missouri", + "city": "Wescosville" + } + }, + { + "id": 3840, + "name": "Rutledge Lang", + "gender": "male", + "age": 54, + "address": { + "state": "Washington", + "city": "Fairmount" + } + }, + { + "id": 3841, + "name": "Elisabeth Buckley", + "gender": "female", + "age": 38, + "address": { + "state": "New Jersey", + "city": "Kula" + } + }, + { + "id": 3842, + "name": "Daniel Haynes", + "gender": "male", + "age": 22, + "address": { + "state": "Indiana", + "city": "Frierson" + } + }, + { + "id": 3843, + "name": "Elba Burks", + "gender": "female", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Shasta" + } + }, + { + "id": 3844, + "name": "Farrell Sanford", + "gender": "male", + "age": 46, + "address": { + "state": "New York", + "city": "Joes" + } + }, + { + "id": 3845, + "name": "Amber Waller", + "gender": "female", + "age": 69, + "address": { + "state": "Arizona", + "city": "Allendale" + } + }, + { + "id": 3846, + "name": "Rosario Tyler", + "gender": "male", + "age": 77, + "address": { + "state": "Montana", + "city": "Oneida" + } + }, + { + "id": 3847, + "name": "Henrietta Reynolds", + "gender": "female", + "age": 53, + "address": { + "state": "Virginia", + "city": "Kipp" + } + }, + { + "id": 3848, + "name": "Tamara Kennedy", + "gender": "female", + "age": 30, + "address": { + "state": "Connecticut", + "city": "Hamilton" + } + }, + { + "id": 3849, + "name": "Wells Sanders", + "gender": "male", + "age": 59, + "address": { + "state": "Vermont", + "city": "Hendersonville" + } + }, + { + "id": 3850, + "name": "Booth Curry", + "gender": "male", + "age": 40, + "address": { + "state": "Texas", + "city": "Troy" + } + }, + { + "id": 3851, + "name": "Greer Kramer", + "gender": "male", + "age": 29, + "address": { + "state": "North Dakota", + "city": "Edinburg" + } + }, + { + "id": 3852, + "name": "Jean Pate", + "gender": "female", + "age": 45, + "address": { + "state": "Minnesota", + "city": "Canterwood" + } + }, + { + "id": 3853, + "name": "Gregory Serrano", + "gender": "male", + "age": 39, + "address": { + "state": "New Hampshire", + "city": "Nile" + } + }, + { + "id": 3854, + "name": "Avila Cervantes", + "gender": "male", + "age": 25, + "address": { + "state": "Utah", + "city": "Madaket" + } + }, + { + "id": 3855, + "name": "Wynn Barrera", + "gender": "male", + "age": 72, + "address": { + "state": "South Dakota", + "city": "Collins" + } + }, + { + "id": 3856, + "name": "Sonja Fox", + "gender": "female", + "age": 74, + "address": { + "state": "Alaska", + "city": "Allensworth" + } + }, + { + "id": 3857, + "name": "Britt Mcclain", + "gender": "male", + "age": 50, + "address": { + "state": "Massachusetts", + "city": "Templeton" + } + }, + { + "id": 3858, + "name": "Mcleod Pace", + "gender": "male", + "age": 75, + "address": { + "state": "Idaho", + "city": "Frystown" + } + }, + { + "id": 3859, + "name": "Mary Holloway", + "gender": "female", + "age": 18, + "address": { + "state": "Ohio", + "city": "Jessie" + } + }, + { + "id": 3860, + "name": "Hill Merritt", + "gender": "male", + "age": 22, + "address": { + "state": "Wyoming", + "city": "Jeff" + } + }, + { + "id": 3861, + "name": "Deidre Wolfe", + "gender": "female", + "age": 78, + "address": { + "state": "Delaware", + "city": "Weeksville" + } + }, + { + "id": 3862, + "name": "May Chaney", + "gender": "male", + "age": 60, + "address": { + "state": "Maine", + "city": "Lutsen" + } + }, + { + "id": 3863, + "name": "Ladonna Blake", + "gender": "female", + "age": 48, + "address": { + "state": "Louisiana", + "city": "Rivera" + } + }, + { + "id": 3864, + "name": "Wilder Schwartz", + "gender": "male", + "age": 21, + "address": { + "state": "South Carolina", + "city": "Cloverdale" + } + }, + { + "id": 3865, + "name": "Ferguson Huber", + "gender": "male", + "age": 56, + "address": { + "state": "Nevada", + "city": "Williston" + } + }, + { + "id": 3866, + "name": "Delacruz Anderson", + "gender": "male", + "age": 33, + "address": { + "state": "Mississippi", + "city": "Smock" + } + }, + { + "id": 3867, + "name": "Mcmillan Holcomb", + "gender": "male", + "age": 61, + "address": { + "state": "New Mexico", + "city": "Salix" + } + }, + { + "id": 3868, + "name": "Millicent Coffey", + "gender": "female", + "age": 64, + "address": { + "state": "Oklahoma", + "city": "Delwood" + } + }, + { + "id": 3869, + "name": "Nina Rush", + "gender": "female", + "age": 74, + "address": { + "state": "Tennessee", + "city": "Jugtown" + } + }, + { + "id": 3870, + "name": "Dorsey Cote", + "gender": "male", + "age": 43, + "address": { + "state": "Maryland", + "city": "Jackpot" + } + }, + { + "id": 3871, + "name": "Clarke Moran", + "gender": "male", + "age": 47, + "address": { + "state": "Colorado", + "city": "Calverton" + } + }, + { + "id": 3872, + "name": "Maura Berg", + "gender": "female", + "age": 82, + "address": { + "state": "Delaware", + "city": "Teasdale" + } + }, + { + "id": 3873, + "name": "Holcomb Mccormick", + "gender": "male", + "age": 36, + "address": { + "state": "Oklahoma", + "city": "Tonopah" + } + }, + { + "id": 3874, + "name": "Clarissa Sparks", + "gender": "female", + "age": 41, + "address": { + "state": "Arizona", + "city": "Cashtown" + } + }, + { + "id": 3875, + "name": "Lillian Cochran", + "gender": "female", + "age": 37, + "address": { + "state": "Alabama", + "city": "Murillo" + } + }, + { + "id": 3876, + "name": "Angelita Sears", + "gender": "female", + "age": 76, + "address": { + "state": "Rhode Island", + "city": "Hardyville" + } + }, + { + "id": 3877, + "name": "Kristi Rodriquez", + "gender": "female", + "age": 60, + "address": { + "state": "Arkansas", + "city": "Frierson" + } + }, + { + "id": 3878, + "name": "Rollins Ross", + "gender": "male", + "age": 62, + "address": { + "state": "Idaho", + "city": "Beason" + } + }, + { + "id": 3879, + "name": "Gilda Shepherd", + "gender": "female", + "age": 33, + "address": { + "state": "Texas", + "city": "Linwood" + } + }, + { + "id": 3880, + "name": "Yolanda Porter", + "gender": "female", + "age": 47, + "address": { + "state": "Nevada", + "city": "Frizzleburg" + } + }, + { + "id": 3881, + "name": "Erin Terrell", + "gender": "female", + "age": 27, + "address": { + "state": "California", + "city": "Tivoli" + } + }, + { + "id": 3882, + "name": "Vinson Bowers", + "gender": "male", + "age": 45, + "address": { + "state": "Florida", + "city": "Dale" + } + }, + { + "id": 3883, + "name": "Dixon Anderson", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Condon" + } + }, + { + "id": 3884, + "name": "Chelsea Carlson", + "gender": "female", + "age": 58, + "address": { + "state": "Kansas", + "city": "Shrewsbury" + } + }, + { + "id": 3885, + "name": "Lawanda Turner", + "gender": "female", + "age": 77, + "address": { + "state": "Utah", + "city": "Berlin" + } + }, + { + "id": 3886, + "name": "Ofelia Ayala", + "gender": "female", + "age": 72, + "address": { + "state": "Michigan", + "city": "Topaz" + } + }, + { + "id": 3887, + "name": "Garza Buck", + "gender": "male", + "age": 18, + "address": { + "state": "Wyoming", + "city": "Bagtown" + } + }, + { + "id": 3888, + "name": "Lynn Gardner", + "gender": "male", + "age": 20, + "address": { + "state": "Ohio", + "city": "Chelsea" + } + }, + { + "id": 3889, + "name": "John Christian", + "gender": "female", + "age": 34, + "address": { + "state": "North Carolina", + "city": "Enetai" + } + }, + { + "id": 3890, + "name": "Snow Gentry", + "gender": "male", + "age": 29, + "address": { + "state": "Massachusetts", + "city": "Topanga" + } + }, + { + "id": 3891, + "name": "Hardin Knox", + "gender": "male", + "age": 72, + "address": { + "state": "Washington", + "city": "Fredericktown" + } + }, + { + "id": 3892, + "name": "Tina Blanchard", + "gender": "female", + "age": 54, + "address": { + "state": "Minnesota", + "city": "Caspar" + } + }, + { + "id": 3893, + "name": "Cassie Herring", + "gender": "female", + "age": 42, + "address": { + "state": "New Mexico", + "city": "Whipholt" + } + }, + { + "id": 3894, + "name": "Caldwell Kent", + "gender": "male", + "age": 51, + "address": { + "state": "North Dakota", + "city": "Castleton" + } + }, + { + "id": 3895, + "name": "Schultz Avery", + "gender": "male", + "age": 44, + "address": { + "state": "New Jersey", + "city": "Virgie" + } + }, + { + "id": 3896, + "name": "Jaclyn Barrera", + "gender": "female", + "age": 50, + "address": { + "state": "Virginia", + "city": "Vernon" + } + }, + { + "id": 3897, + "name": "Owens Woods", + "gender": "male", + "age": 32, + "address": { + "state": "Louisiana", + "city": "Bonanza" + } + }, + { + "id": 3898, + "name": "Janna Simon", + "gender": "female", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Cuylerville" + } + }, + { + "id": 3899, + "name": "Anastasia Kirby", + "gender": "female", + "age": 29, + "address": { + "state": "Indiana", + "city": "Leland" + } + }, + { + "id": 3900, + "name": "Rocha Ayers", + "gender": "male", + "age": 17, + "address": { + "state": "Missouri", + "city": "Monument" + } + }, + { + "id": 3901, + "name": "Figueroa Curtis", + "gender": "male", + "age": 52, + "address": { + "state": "Tennessee", + "city": "Coalmont" + } + }, + { + "id": 3902, + "name": "Kristine Vaughn", + "gender": "female", + "age": 57, + "address": { + "state": "Georgia", + "city": "Kiskimere" + } + }, + { + "id": 3903, + "name": "Mejia Larson", + "gender": "male", + "age": 63, + "address": { + "state": "South Carolina", + "city": "Highland" + } + }, + { + "id": 3904, + "name": "Dejesus Hawkins", + "gender": "male", + "age": 71, + "address": { + "state": "Alaska", + "city": "Orviston" + } + }, + { + "id": 3905, + "name": "Dickson Bradley", + "gender": "male", + "age": 56, + "address": { + "state": "New Hampshire", + "city": "Fowlerville" + } + }, + { + "id": 3906, + "name": "Ramsey Acosta", + "gender": "male", + "age": 53, + "address": { + "state": "Wisconsin", + "city": "Clinton" + } + }, + { + "id": 3907, + "name": "Stacie Moses", + "gender": "female", + "age": 50, + "address": { + "state": "New York", + "city": "Byrnedale" + } + }, + { + "id": 3908, + "name": "Terry Gregory", + "gender": "female", + "age": 56, + "address": { + "state": "South Dakota", + "city": "Fivepointville" + } + }, + { + "id": 3909, + "name": "Joyner Villarreal", + "gender": "male", + "age": 33, + "address": { + "state": "Nebraska", + "city": "Wolcott" + } + }, + { + "id": 3910, + "name": "Sanford Daugherty", + "gender": "male", + "age": 53, + "address": { + "state": "Maryland", + "city": "Waterloo" + } + }, + { + "id": 3911, + "name": "Padilla Morrison", + "gender": "male", + "age": 48, + "address": { + "state": "Maine", + "city": "Dupuyer" + } + }, + { + "id": 3912, + "name": "Britney Stout", + "gender": "female", + "age": 30, + "address": { + "state": "Montana", + "city": "Turpin" + } + }, + { + "id": 3913, + "name": "Minerva Buchanan", + "gender": "female", + "age": 32, + "address": { + "state": "Illinois", + "city": "Utting" + } + }, + { + "id": 3914, + "name": "Martinez Alston", + "gender": "male", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Newry" + } + }, + { + "id": 3915, + "name": "Esmeralda Schroeder", + "gender": "female", + "age": 39, + "address": { + "state": "Vermont", + "city": "Singer" + } + }, + { + "id": 3916, + "name": "Gena Carey", + "gender": "female", + "age": 68, + "address": { + "state": "Kentucky", + "city": "Cloverdale" + } + }, + { + "id": 3917, + "name": "Juliana Stephens", + "gender": "female", + "age": 69, + "address": { + "state": "Mississippi", + "city": "Elliott" + } + }, + { + "id": 3918, + "name": "Small Weiss", + "gender": "male", + "age": 31, + "address": { + "state": "Hawaii", + "city": "Bourg" + } + }, + { + "id": 3919, + "name": "Liza Perry", + "gender": "female", + "age": 39, + "address": { + "state": "Oregon", + "city": "Ernstville" + } + }, + { + "id": 3920, + "name": "Helen Marquez", + "gender": "female", + "age": 57, + "address": { + "state": "Arkansas", + "city": "Loyalhanna" + } + }, + { + "id": 3921, + "name": "Snyder Hardy", + "gender": "male", + "age": 42, + "address": { + "state": "Utah", + "city": "Elliston" + } + }, + { + "id": 3922, + "name": "Eileen Clay", + "gender": "female", + "age": 44, + "address": { + "state": "New Mexico", + "city": "Courtland" + } + }, + { + "id": 3923, + "name": "Rivers Ewing", + "gender": "male", + "age": 43, + "address": { + "state": "Nevada", + "city": "Fruitdale" + } + }, + { + "id": 3924, + "name": "Reese Myers", + "gender": "male", + "age": 53, + "address": { + "state": "New York", + "city": "Nicut" + } + }, + { + "id": 3925, + "name": "Linda Adams", + "gender": "female", + "age": 35, + "address": { + "state": "South Carolina", + "city": "Ferney" + } + }, + { + "id": 3926, + "name": "Ruth Caldwell", + "gender": "female", + "age": 71, + "address": { + "state": "Maryland", + "city": "Steinhatchee" + } + }, + { + "id": 3927, + "name": "Karina Camacho", + "gender": "female", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Bangor" + } + }, + { + "id": 3928, + "name": "Parks Castro", + "gender": "male", + "age": 71, + "address": { + "state": "New Jersey", + "city": "Ticonderoga" + } + }, + { + "id": 3929, + "name": "Lily Bentley", + "gender": "female", + "age": 44, + "address": { + "state": "Idaho", + "city": "Clarence" + } + }, + { + "id": 3930, + "name": "Stuart Landry", + "gender": "male", + "age": 42, + "address": { + "state": "Mississippi", + "city": "Logan" + } + }, + { + "id": 3931, + "name": "Elba Navarro", + "gender": "female", + "age": 43, + "address": { + "state": "Illinois", + "city": "Babb" + } + }, + { + "id": 3932, + "name": "Ballard Huff", + "gender": "male", + "age": 27, + "address": { + "state": "Iowa", + "city": "Bartley" + } + }, + { + "id": 3933, + "name": "Estrada Preston", + "gender": "male", + "age": 37, + "address": { + "state": "Wisconsin", + "city": "Strykersville" + } + }, + { + "id": 3934, + "name": "Shirley Gillespie", + "gender": "female", + "age": 63, + "address": { + "state": "West Virginia", + "city": "Alfarata" + } + }, + { + "id": 3935, + "name": "Owen Wells", + "gender": "male", + "age": 71, + "address": { + "state": "Virginia", + "city": "Hobucken" + } + }, + { + "id": 3936, + "name": "Warren Willis", + "gender": "male", + "age": 27, + "address": { + "state": "Pennsylvania", + "city": "Takilma" + } + }, + { + "id": 3937, + "name": "Laurie Dotson", + "gender": "female", + "age": 55, + "address": { + "state": "North Carolina", + "city": "Caroleen" + } + }, + { + "id": 3938, + "name": "Sykes Dalton", + "gender": "male", + "age": 27, + "address": { + "state": "Arizona", + "city": "Catherine" + } + }, + { + "id": 3939, + "name": "Kent Flores", + "gender": "male", + "age": 69, + "address": { + "state": "Delaware", + "city": "Escondida" + } + }, + { + "id": 3940, + "name": "Ashlee Solis", + "gender": "female", + "age": 62, + "address": { + "state": "Colorado", + "city": "Summertown" + } + }, + { + "id": 3941, + "name": "Lawrence Cote", + "gender": "male", + "age": 64, + "address": { + "state": "South Dakota", + "city": "Tuttle" + } + }, + { + "id": 3942, + "name": "Lola Hodges", + "gender": "female", + "age": 39, + "address": { + "state": "Georgia", + "city": "Urbana" + } + }, + { + "id": 3943, + "name": "Ray Kinney", + "gender": "male", + "age": 76, + "address": { + "state": "Wyoming", + "city": "Carbonville" + } + }, + { + "id": 3944, + "name": "Carey Young", + "gender": "female", + "age": 71, + "address": { + "state": "Hawaii", + "city": "Highland" + } + }, + { + "id": 3945, + "name": "Davenport Grant", + "gender": "male", + "age": 28, + "address": { + "state": "Florida", + "city": "Harrodsburg" + } + }, + { + "id": 3946, + "name": "Jocelyn Carrillo", + "gender": "female", + "age": 43, + "address": { + "state": "Texas", + "city": "Caberfae" + } + }, + { + "id": 3947, + "name": "Jennie Lindsay", + "gender": "female", + "age": 81, + "address": { + "state": "Ohio", + "city": "Deercroft" + } + }, + { + "id": 3948, + "name": "Harris Neal", + "gender": "male", + "age": 34, + "address": { + "state": "Kansas", + "city": "Rutherford" + } + }, + { + "id": 3949, + "name": "Stokes Molina", + "gender": "male", + "age": 82, + "address": { + "state": "Oklahoma", + "city": "Fairacres" + } + }, + { + "id": 3950, + "name": "Johnson Richards", + "gender": "male", + "age": 36, + "address": { + "state": "Vermont", + "city": "Corinne" + } + }, + { + "id": 3951, + "name": "Carter Dyer", + "gender": "male", + "age": 82, + "address": { + "state": "North Dakota", + "city": "Goochland" + } + }, + { + "id": 3952, + "name": "Summers Larson", + "gender": "male", + "age": 28, + "address": { + "state": "Alaska", + "city": "Silkworth" + } + }, + { + "id": 3953, + "name": "Alison Malone", + "gender": "female", + "age": 65, + "address": { + "state": "Minnesota", + "city": "Gardiner" + } + }, + { + "id": 3954, + "name": "Marla Cruz", + "gender": "female", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Urie" + } + }, + { + "id": 3955, + "name": "Rita Benjamin", + "gender": "female", + "age": 80, + "address": { + "state": "Maine", + "city": "Loveland" + } + }, + { + "id": 3956, + "name": "Sharron Robertson", + "gender": "female", + "age": 50, + "address": { + "state": "Oregon", + "city": "Brookfield" + } + }, + { + "id": 3957, + "name": "Dejesus Mcpherson", + "gender": "male", + "age": 68, + "address": { + "state": "Michigan", + "city": "Morriston" + } + }, + { + "id": 3958, + "name": "Brennan Murray", + "gender": "male", + "age": 23, + "address": { + "state": "Missouri", + "city": "Muse" + } + }, + { + "id": 3959, + "name": "Catherine Thomas", + "gender": "female", + "age": 45, + "address": { + "state": "Montana", + "city": "Bennett" + } + }, + { + "id": 3960, + "name": "Robert Marsh", + "gender": "female", + "age": 22, + "address": { + "state": "Nebraska", + "city": "Chase" + } + }, + { + "id": 3961, + "name": "Melva Martin", + "gender": "female", + "age": 79, + "address": { + "state": "Kentucky", + "city": "Stagecoach" + } + }, + { + "id": 3962, + "name": "Ellison Mcgee", + "gender": "male", + "age": 26, + "address": { + "state": "Washington", + "city": "Blairstown" + } + }, + { + "id": 3963, + "name": "Lacy Webb", + "gender": "female", + "age": 54, + "address": { + "state": "Indiana", + "city": "Bluetown" + } + }, + { + "id": 3964, + "name": "Lydia Cleveland", + "gender": "female", + "age": 61, + "address": { + "state": "Alabama", + "city": "Chamberino" + } + }, + { + "id": 3965, + "name": "Foster Howell", + "gender": "male", + "age": 63, + "address": { + "state": "Rhode Island", + "city": "Wanamie" + } + }, + { + "id": 3966, + "name": "Jasmine Wallace", + "gender": "female", + "age": 29, + "address": { + "state": "Massachusetts", + "city": "Canoochee" + } + }, + { + "id": 3967, + "name": "Serrano Jones", + "gender": "male", + "age": 59, + "address": { + "state": "New Hampshire", + "city": "Caln" + } + }, + { + "id": 3968, + "name": "Pollard Harrell", + "gender": "male", + "age": 31, + "address": { + "state": "California", + "city": "Vowinckel" + } + }, + { + "id": 3969, + "name": "Alana Gaines", + "gender": "female", + "age": 77, + "address": { + "state": "Alaska", + "city": "Bellamy" + } + }, + { + "id": 3970, + "name": "Olga Atkinson", + "gender": "female", + "age": 63, + "address": { + "state": "Rhode Island", + "city": "Gambrills" + } + }, + { + "id": 3971, + "name": "Lucas George", + "gender": "male", + "age": 45, + "address": { + "state": "Tennessee", + "city": "Eastvale" + } + }, + { + "id": 3972, + "name": "Norton Stanley", + "gender": "male", + "age": 53, + "address": { + "state": "Oklahoma", + "city": "Alleghenyville" + } + }, + { + "id": 3973, + "name": "Bernadine Gill", + "gender": "female", + "age": 73, + "address": { + "state": "Nevada", + "city": "Kilbourne" + } + }, + { + "id": 3974, + "name": "Ayers Ferguson", + "gender": "male", + "age": 73, + "address": { + "state": "New York", + "city": "Imperial" + } + }, + { + "id": 3975, + "name": "Rosalie Winters", + "gender": "female", + "age": 72, + "address": { + "state": "Utah", + "city": "Siglerville" + } + }, + { + "id": 3976, + "name": "Osborn Griffith", + "gender": "male", + "age": 74, + "address": { + "state": "Delaware", + "city": "Mansfield" + } + }, + { + "id": 3977, + "name": "Mckenzie Norton", + "gender": "male", + "age": 69, + "address": { + "state": "Virginia", + "city": "Caron" + } + }, + { + "id": 3978, + "name": "Stella Copeland", + "gender": "female", + "age": 40, + "address": { + "state": "Florida", + "city": "Leroy" + } + }, + { + "id": 3979, + "name": "Lorie Hatfield", + "gender": "female", + "age": 32, + "address": { + "state": "South Carolina", + "city": "Gibsonia" + } + }, + { + "id": 3980, + "name": "Burch Pace", + "gender": "male", + "age": 78, + "address": { + "state": "West Virginia", + "city": "Brandermill" + } + }, + { + "id": 3981, + "name": "Potter Shelton", + "gender": "male", + "age": 56, + "address": { + "state": "Nebraska", + "city": "Succasunna" + } + }, + { + "id": 3982, + "name": "Regina Whitley", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Longoria" + } + }, + { + "id": 3983, + "name": "Patsy Tucker", + "gender": "female", + "age": 39, + "address": { + "state": "Arizona", + "city": "Lowgap" + } + }, + { + "id": 3984, + "name": "Dominguez Stephens", + "gender": "male", + "age": 30, + "address": { + "state": "North Dakota", + "city": "Albrightsville" + } + }, + { + "id": 3985, + "name": "Dana Maynard", + "gender": "female", + "age": 52, + "address": { + "state": "Ohio", + "city": "Diaperville" + } + }, + { + "id": 3986, + "name": "Wells Willis", + "gender": "male", + "age": 76, + "address": { + "state": "Kentucky", + "city": "Sena" + } + }, + { + "id": 3987, + "name": "Brenda Kent", + "gender": "female", + "age": 17, + "address": { + "state": "Missouri", + "city": "Lookingglass" + } + }, + { + "id": 3988, + "name": "Jami Riddle", + "gender": "female", + "age": 22, + "address": { + "state": "California", + "city": "Fidelis" + } + }, + { + "id": 3989, + "name": "Gretchen Andrews", + "gender": "female", + "age": 74, + "address": { + "state": "Connecticut", + "city": "Katonah" + } + }, + { + "id": 3990, + "name": "Tommie Harrington", + "gender": "female", + "age": 51, + "address": { + "state": "Montana", + "city": "Canoochee" + } + }, + { + "id": 3991, + "name": "Augusta Sharpe", + "gender": "female", + "age": 36, + "address": { + "state": "Wyoming", + "city": "Derwood" + } + }, + { + "id": 3992, + "name": "Graham Lester", + "gender": "male", + "age": 22, + "address": { + "state": "Maryland", + "city": "Spelter" + } + }, + { + "id": 3993, + "name": "Gamble Burch", + "gender": "male", + "age": 59, + "address": { + "state": "Louisiana", + "city": "Kapowsin" + } + }, + { + "id": 3994, + "name": "Solis Richmond", + "gender": "male", + "age": 66, + "address": { + "state": "Idaho", + "city": "Olney" + } + }, + { + "id": 3995, + "name": "Kirsten Galloway", + "gender": "female", + "age": 47, + "address": { + "state": "Hawaii", + "city": "Talpa" + } + }, + { + "id": 3996, + "name": "Rosemarie Crane", + "gender": "female", + "age": 76, + "address": { + "state": "Vermont", + "city": "Spokane" + } + }, + { + "id": 3997, + "name": "Latasha Randolph", + "gender": "female", + "age": 29, + "address": { + "state": "Washington", + "city": "Hollymead" + } + }, + { + "id": 3998, + "name": "Ferrell Levine", + "gender": "male", + "age": 20, + "address": { + "state": "Kansas", + "city": "Salix" + } + }, + { + "id": 3999, + "name": "Mitchell Gregory", + "gender": "male", + "age": 34, + "address": { + "state": "South Dakota", + "city": "Century" + } + }, + { + "id": 4000, + "name": "Lila Shields", + "gender": "female", + "age": 36, + "address": { + "state": "Iowa", + "city": "Mathews" + } + }, + { + "id": 4001, + "name": "Rebecca Torres", + "gender": "female", + "age": 73, + "address": { + "state": "New Hampshire", + "city": "Bartonsville" + } + }, + { + "id": 4002, + "name": "Debora Paul", + "gender": "female", + "age": 28, + "address": { + "state": "Maine", + "city": "Konterra" + } + }, + { + "id": 4003, + "name": "Katheryn Small", + "gender": "female", + "age": 35, + "address": { + "state": "Arkansas", + "city": "Brandywine" + } + }, + { + "id": 4004, + "name": "Baxter Horn", + "gender": "male", + "age": 59, + "address": { + "state": "Mississippi", + "city": "Remington" + } + }, + { + "id": 4005, + "name": "Katina Welch", + "gender": "female", + "age": 65, + "address": { + "state": "Colorado", + "city": "Chautauqua" + } + }, + { + "id": 4006, + "name": "Hanson Santiago", + "gender": "male", + "age": 31, + "address": { + "state": "Texas", + "city": "Goldfield" + } + }, + { + "id": 4007, + "name": "Tessa Gallagher", + "gender": "female", + "age": 35, + "address": { + "state": "Minnesota", + "city": "Glenbrook" + } + }, + { + "id": 4008, + "name": "Jarvis Short", + "gender": "male", + "age": 17, + "address": { + "state": "Illinois", + "city": "Fairforest" + } + }, + { + "id": 4009, + "name": "Jane Bell", + "gender": "female", + "age": 80, + "address": { + "state": "North Carolina", + "city": "Wawona" + } + }, + { + "id": 4010, + "name": "Miriam Monroe", + "gender": "female", + "age": 38, + "address": { + "state": "Massachusetts", + "city": "Gulf" + } + }, + { + "id": 4011, + "name": "Barr Gardner", + "gender": "male", + "age": 25, + "address": { + "state": "Michigan", + "city": "Marne" + } + }, + { + "id": 4012, + "name": "Jan Velez", + "gender": "female", + "age": 24, + "address": { + "state": "Alabama", + "city": "Thynedale" + } + }, + { + "id": 4013, + "name": "Dalton Finley", + "gender": "male", + "age": 78, + "address": { + "state": "New Jersey", + "city": "Alafaya" + } + }, + { + "id": 4014, + "name": "Peterson Allison", + "gender": "male", + "age": 52, + "address": { + "state": "New Mexico", + "city": "Chloride" + } + }, + { + "id": 4015, + "name": "Goff Slater", + "gender": "male", + "age": 54, + "address": { + "state": "Oregon", + "city": "Joppa" + } + }, + { + "id": 4016, + "name": "Ewing Koch", + "gender": "male", + "age": 61, + "address": { + "state": "Wisconsin", + "city": "Germanton" + } + }, + { + "id": 4017, + "name": "Morgan Hunt", + "gender": "female", + "age": 17, + "address": { + "state": "Pennsylvania", + "city": "Robbins" + } + }, + { + "id": 4018, + "name": "Gonzalez Ewing", + "gender": "male", + "age": 48, + "address": { + "state": "Minnesota", + "city": "Durham" + } + }, + { + "id": 4019, + "name": "Wilkerson Ashley", + "gender": "male", + "age": 32, + "address": { + "state": "Wisconsin", + "city": "Watchtower" + } + }, + { + "id": 4020, + "name": "Levy Cline", + "gender": "male", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Hanover" + } + }, + { + "id": 4021, + "name": "Maribel Rich", + "gender": "female", + "age": 64, + "address": { + "state": "Rhode Island", + "city": "Shindler" + } + }, + { + "id": 4022, + "name": "Medina Bender", + "gender": "male", + "age": 58, + "address": { + "state": "Maryland", + "city": "Fivepointville" + } + }, + { + "id": 4023, + "name": "Concetta Hull", + "gender": "female", + "age": 61, + "address": { + "state": "New Jersey", + "city": "Harborton" + } + }, + { + "id": 4024, + "name": "Bowen Kemp", + "gender": "male", + "age": 80, + "address": { + "state": "Utah", + "city": "Wauhillau" + } + }, + { + "id": 4025, + "name": "Taylor Soto", + "gender": "male", + "age": 19, + "address": { + "state": "Maine", + "city": "Nettie" + } + }, + { + "id": 4026, + "name": "Galloway Ball", + "gender": "male", + "age": 17, + "address": { + "state": "New Mexico", + "city": "Day" + } + }, + { + "id": 4027, + "name": "Clare Guerra", + "gender": "female", + "age": 63, + "address": { + "state": "Kansas", + "city": "Beaverdale" + } + }, + { + "id": 4028, + "name": "Osborne Sykes", + "gender": "male", + "age": 53, + "address": { + "state": "California", + "city": "Geyserville" + } + }, + { + "id": 4029, + "name": "Elvira Oneal", + "gender": "female", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Roderfield" + } + }, + { + "id": 4030, + "name": "Jones Hood", + "gender": "male", + "age": 66, + "address": { + "state": "Michigan", + "city": "National" + } + }, + { + "id": 4031, + "name": "Hammond Reyes", + "gender": "male", + "age": 29, + "address": { + "state": "Iowa", + "city": "Noblestown" + } + }, + { + "id": 4032, + "name": "Aguirre Bird", + "gender": "male", + "age": 32, + "address": { + "state": "Arkansas", + "city": "Lacomb" + } + }, + { + "id": 4033, + "name": "Barker Workman", + "gender": "male", + "age": 59, + "address": { + "state": "Oregon", + "city": "Bennett" + } + }, + { + "id": 4034, + "name": "Snow Hunt", + "gender": "male", + "age": 73, + "address": { + "state": "Texas", + "city": "Savage" + } + }, + { + "id": 4035, + "name": "Lizzie Howell", + "gender": "female", + "age": 41, + "address": { + "state": "Florida", + "city": "Byrnedale" + } + }, + { + "id": 4036, + "name": "Genevieve Ward", + "gender": "female", + "age": 34, + "address": { + "state": "Indiana", + "city": "Ruffin" + } + }, + { + "id": 4037, + "name": "Casey Parks", + "gender": "male", + "age": 27, + "address": { + "state": "Pennsylvania", + "city": "Lafferty" + } + }, + { + "id": 4038, + "name": "Glenn Justice", + "gender": "male", + "age": 46, + "address": { + "state": "Colorado", + "city": "Skyland" + } + }, + { + "id": 4039, + "name": "Kathleen Deleon", + "gender": "female", + "age": 67, + "address": { + "state": "New York", + "city": "Carrizo" + } + }, + { + "id": 4040, + "name": "Carissa Blankenship", + "gender": "female", + "age": 82, + "address": { + "state": "Nevada", + "city": "Alfarata" + } + }, + { + "id": 4041, + "name": "Mia Vargas", + "gender": "female", + "age": 45, + "address": { + "state": "Arizona", + "city": "Needmore" + } + }, + { + "id": 4042, + "name": "Wells Wright", + "gender": "male", + "age": 17, + "address": { + "state": "Oklahoma", + "city": "Floris" + } + }, + { + "id": 4043, + "name": "Duffy Blackburn", + "gender": "male", + "age": 68, + "address": { + "state": "Louisiana", + "city": "Wikieup" + } + }, + { + "id": 4044, + "name": "Roberta Mooney", + "gender": "female", + "age": 32, + "address": { + "state": "Mississippi", + "city": "Dundee" + } + }, + { + "id": 4045, + "name": "Beulah Walter", + "gender": "female", + "age": 64, + "address": { + "state": "South Carolina", + "city": "Hendersonville" + } + }, + { + "id": 4046, + "name": "Barbra Santos", + "gender": "female", + "age": 76, + "address": { + "state": "New Hampshire", + "city": "Magnolia" + } + }, + { + "id": 4047, + "name": "Wynn Fox", + "gender": "male", + "age": 57, + "address": { + "state": "Idaho", + "city": "Boykin" + } + }, + { + "id": 4048, + "name": "Meadows Rollins", + "gender": "male", + "age": 68, + "address": { + "state": "Vermont", + "city": "Downsville" + } + }, + { + "id": 4049, + "name": "Earnestine Ellison", + "gender": "female", + "age": 22, + "address": { + "state": "Missouri", + "city": "Clay" + } + }, + { + "id": 4050, + "name": "Leona Lang", + "gender": "female", + "age": 73, + "address": { + "state": "North Dakota", + "city": "Nile" + } + }, + { + "id": 4051, + "name": "Bethany Hanson", + "gender": "female", + "age": 46, + "address": { + "state": "Georgia", + "city": "Bynum" + } + }, + { + "id": 4052, + "name": "Cobb Meadows", + "gender": "male", + "age": 74, + "address": { + "state": "Wyoming", + "city": "Clara" + } + }, + { + "id": 4053, + "name": "Alejandra Vega", + "gender": "female", + "age": 55, + "address": { + "state": "Ohio", + "city": "Warren" + } + }, + { + "id": 4054, + "name": "Cardenas Sharpe", + "gender": "male", + "age": 52, + "address": { + "state": "Nebraska", + "city": "Walton" + } + }, + { + "id": 4055, + "name": "Barbara Gonzales", + "gender": "female", + "age": 61, + "address": { + "state": "Illinois", + "city": "Bison" + } + }, + { + "id": 4056, + "name": "Tyler Howe", + "gender": "male", + "age": 28, + "address": { + "state": "Montana", + "city": "Abrams" + } + }, + { + "id": 4057, + "name": "Nadine Kinney", + "gender": "female", + "age": 80, + "address": { + "state": "Alaska", + "city": "Sanders" + } + }, + { + "id": 4058, + "name": "Bobbi Chase", + "gender": "female", + "age": 58, + "address": { + "state": "North Carolina", + "city": "Naomi" + } + }, + { + "id": 4059, + "name": "Rivera Conway", + "gender": "male", + "age": 17, + "address": { + "state": "South Dakota", + "city": "Somerset" + } + }, + { + "id": 4060, + "name": "Foster Warner", + "gender": "male", + "age": 58, + "address": { + "state": "Virginia", + "city": "Ebro" + } + }, + { + "id": 4061, + "name": "Mcclure Stokes", + "gender": "male", + "age": 31, + "address": { + "state": "Delaware", + "city": "Marienthal" + } + }, + { + "id": 4062, + "name": "Thornton Washington", + "gender": "male", + "age": 76, + "address": { + "state": "Alabama", + "city": "Carlos" + } + }, + { + "id": 4063, + "name": "Gena Hardin", + "gender": "female", + "age": 26, + "address": { + "state": "Washington", + "city": "Marshall" + } + }, + { + "id": 4064, + "name": "Roth Conner", + "gender": "male", + "age": 42, + "address": { + "state": "Tennessee", + "city": "Allamuchy" + } + }, + { + "id": 4065, + "name": "Liza Nieves", + "gender": "female", + "age": 56, + "address": { + "state": "Kentucky", + "city": "Williston" + } + }, + { + "id": 4066, + "name": "Alexandra Garrison", + "gender": "female", + "age": 30, + "address": { + "state": "West Virginia", + "city": "Duryea" + } + }, + { + "id": 4067, + "name": "Beasley Robbins", + "gender": "male", + "age": 27, + "address": { + "state": "Delaware", + "city": "Nogal" + } + }, + { + "id": 4068, + "name": "Erma Fox", + "gender": "female", + "age": 61, + "address": { + "state": "West Virginia", + "city": "Brookfield" + } + }, + { + "id": 4069, + "name": "Alyssa Ewing", + "gender": "female", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Mayfair" + } + }, + { + "id": 4070, + "name": "Estella Cote", + "gender": "female", + "age": 23, + "address": { + "state": "Utah", + "city": "Hemlock" + } + }, + { + "id": 4071, + "name": "Doris Holt", + "gender": "female", + "age": 18, + "address": { + "state": "Minnesota", + "city": "Topaz" + } + }, + { + "id": 4072, + "name": "Atkins Carpenter", + "gender": "male", + "age": 45, + "address": { + "state": "Wisconsin", + "city": "Cornfields" + } + }, + { + "id": 4073, + "name": "Sylvia Wooten", + "gender": "female", + "age": 47, + "address": { + "state": "Louisiana", + "city": "Disautel" + } + }, + { + "id": 4074, + "name": "Perez Bird", + "gender": "male", + "age": 81, + "address": { + "state": "Kansas", + "city": "Unionville" + } + }, + { + "id": 4075, + "name": "Shawn Bryant", + "gender": "female", + "age": 41, + "address": { + "state": "Michigan", + "city": "Emerald" + } + }, + { + "id": 4076, + "name": "Kidd Barton", + "gender": "male", + "age": 58, + "address": { + "state": "Massachusetts", + "city": "Deseret" + } + }, + { + "id": 4077, + "name": "Christy Hogan", + "gender": "female", + "age": 74, + "address": { + "state": "Rhode Island", + "city": "Islandia" + } + }, + { + "id": 4078, + "name": "Marjorie George", + "gender": "female", + "age": 61, + "address": { + "state": "California", + "city": "Epworth" + } + }, + { + "id": 4079, + "name": "Fletcher Boyer", + "gender": "male", + "age": 60, + "address": { + "state": "Indiana", + "city": "Worcester" + } + }, + { + "id": 4080, + "name": "Wilson Wallace", + "gender": "male", + "age": 28, + "address": { + "state": "Pennsylvania", + "city": "Cartwright" + } + }, + { + "id": 4081, + "name": "Lilian Jones", + "gender": "female", + "age": 32, + "address": { + "state": "Texas", + "city": "Klagetoh" + } + }, + { + "id": 4082, + "name": "Savannah Lucas", + "gender": "female", + "age": 44, + "address": { + "state": "Nevada", + "city": "Nipinnawasee" + } + }, + { + "id": 4083, + "name": "Vasquez Gross", + "gender": "male", + "age": 33, + "address": { + "state": "South Carolina", + "city": "Dragoon" + } + }, + { + "id": 4084, + "name": "Morrison Webster", + "gender": "male", + "age": 24, + "address": { + "state": "Alabama", + "city": "Finderne" + } + }, + { + "id": 4085, + "name": "Yesenia Anderson", + "gender": "female", + "age": 39, + "address": { + "state": "New Hampshire", + "city": "Thynedale" + } + }, + { + "id": 4086, + "name": "Tabatha Barnett", + "gender": "female", + "age": 44, + "address": { + "state": "Mississippi", + "city": "Malo" + } + }, + { + "id": 4087, + "name": "Antoinette Hebert", + "gender": "female", + "age": 76, + "address": { + "state": "Tennessee", + "city": "Sexton" + } + }, + { + "id": 4088, + "name": "Rene Rivera", + "gender": "female", + "age": 78, + "address": { + "state": "North Dakota", + "city": "Groton" + } + }, + { + "id": 4089, + "name": "Reyes Holden", + "gender": "male", + "age": 44, + "address": { + "state": "Connecticut", + "city": "Elliston" + } + }, + { + "id": 4090, + "name": "Janna Armstrong", + "gender": "female", + "age": 44, + "address": { + "state": "Idaho", + "city": "Ladera" + } + }, + { + "id": 4091, + "name": "James Dickson", + "gender": "male", + "age": 41, + "address": { + "state": "New York", + "city": "Gouglersville" + } + }, + { + "id": 4092, + "name": "Kerry Melton", + "gender": "female", + "age": 63, + "address": { + "state": "Colorado", + "city": "Bradenville" + } + }, + { + "id": 4093, + "name": "Owen Colon", + "gender": "male", + "age": 70, + "address": { + "state": "Oklahoma", + "city": "Lumberton" + } + }, + { + "id": 4094, + "name": "Cynthia Robles", + "gender": "female", + "age": 37, + "address": { + "state": "South Dakota", + "city": "Leming" + } + }, + { + "id": 4095, + "name": "Cross Flores", + "gender": "male", + "age": 51, + "address": { + "state": "Virginia", + "city": "Gerton" + } + }, + { + "id": 4096, + "name": "Cole Ware", + "gender": "male", + "age": 23, + "address": { + "state": "Ohio", + "city": "Umapine" + } + }, + { + "id": 4097, + "name": "Battle Huber", + "gender": "male", + "age": 64, + "address": { + "state": "Florida", + "city": "Hartsville/Hartley" + } + }, + { + "id": 4098, + "name": "Browning Finch", + "gender": "male", + "age": 61, + "address": { + "state": "Illinois", + "city": "Kiskimere" + } + }, + { + "id": 4099, + "name": "Klein Spencer", + "gender": "male", + "age": 39, + "address": { + "state": "Nebraska", + "city": "Clarktown" + } + }, + { + "id": 4100, + "name": "Trevino Perez", + "gender": "male", + "age": 39, + "address": { + "state": "Georgia", + "city": "Como" + } + }, + { + "id": 4101, + "name": "Cherry Park", + "gender": "female", + "age": 70, + "address": { + "state": "Oregon", + "city": "Tedrow" + } + }, + { + "id": 4102, + "name": "Fry Bowers", + "gender": "male", + "age": 62, + "address": { + "state": "Washington", + "city": "Indio" + } + }, + { + "id": 4103, + "name": "Santos Caldwell", + "gender": "male", + "age": 80, + "address": { + "state": "Maryland", + "city": "Rossmore" + } + }, + { + "id": 4104, + "name": "Franco Clements", + "gender": "male", + "age": 69, + "address": { + "state": "Arkansas", + "city": "Summertown" + } + }, + { + "id": 4105, + "name": "Ana Cline", + "gender": "female", + "age": 75, + "address": { + "state": "Missouri", + "city": "Elrama" + } + }, + { + "id": 4106, + "name": "Magdalena Neal", + "gender": "female", + "age": 78, + "address": { + "state": "Maine", + "city": "Bayview" + } + }, + { + "id": 4107, + "name": "Lacy Peterson", + "gender": "female", + "age": 18, + "address": { + "state": "Iowa", + "city": "Barclay" + } + }, + { + "id": 4108, + "name": "Bonnie Mccarthy", + "gender": "female", + "age": 49, + "address": { + "state": "Arizona", + "city": "Glenville" + } + }, + { + "id": 4109, + "name": "Holden Carlson", + "gender": "male", + "age": 75, + "address": { + "state": "Alaska", + "city": "Charco" + } + }, + { + "id": 4110, + "name": "Ursula Parsons", + "gender": "female", + "age": 79, + "address": { + "state": "Vermont", + "city": "Caspar" + } + }, + { + "id": 4111, + "name": "Hickman Howard", + "gender": "male", + "age": 34, + "address": { + "state": "Montana", + "city": "Takilma" + } + }, + { + "id": 4112, + "name": "George Cantrell", + "gender": "male", + "age": 58, + "address": { + "state": "Kentucky", + "city": "Talpa" + } + }, + { + "id": 4113, + "name": "Connie Hughes", + "gender": "female", + "age": 21, + "address": { + "state": "Hawaii", + "city": "Brecon" + } + }, + { + "id": 4114, + "name": "Monica Harrell", + "gender": "female", + "age": 67, + "address": { + "state": "Wyoming", + "city": "Brady" + } + }, + { + "id": 4115, + "name": "Brock Todd", + "gender": "male", + "age": 17, + "address": { + "state": "New Mexico", + "city": "Iberia" + } + }, + { + "id": 4116, + "name": "Gabrielle Blackburn", + "gender": "female", + "age": 37, + "address": { + "state": "New Jersey", + "city": "Courtland" + } + }, + { + "id": 4117, + "name": "Adrienne Bishop", + "gender": "female", + "age": 74, + "address": { + "state": "Missouri", + "city": "Tecolotito" + } + }, + { + "id": 4118, + "name": "Lina Simpson", + "gender": "female", + "age": 48, + "address": { + "state": "Georgia", + "city": "Jugtown" + } + }, + { + "id": 4119, + "name": "Maddox Gordon", + "gender": "male", + "age": 47, + "address": { + "state": "Louisiana", + "city": "Hendersonville" + } + }, + { + "id": 4120, + "name": "Pope Juarez", + "gender": "male", + "age": 81, + "address": { + "state": "Washington", + "city": "Sanders" + } + }, + { + "id": 4121, + "name": "Lambert Mccullough", + "gender": "male", + "age": 41, + "address": { + "state": "Montana", + "city": "Waumandee" + } + }, + { + "id": 4122, + "name": "Agnes English", + "gender": "female", + "age": 40, + "address": { + "state": "Utah", + "city": "Martinez" + } + }, + { + "id": 4123, + "name": "Hood Perez", + "gender": "male", + "age": 36, + "address": { + "state": "South Carolina", + "city": "Villarreal" + } + }, + { + "id": 4124, + "name": "Serrano Lawrence", + "gender": "male", + "age": 50, + "address": { + "state": "Illinois", + "city": "Urie" + } + }, + { + "id": 4125, + "name": "Macias Larson", + "gender": "male", + "age": 54, + "address": { + "state": "Virginia", + "city": "Grayhawk" + } + }, + { + "id": 4126, + "name": "Aline Wyatt", + "gender": "female", + "age": 78, + "address": { + "state": "Oregon", + "city": "Echo" + } + }, + { + "id": 4127, + "name": "Jeanette Gonzales", + "gender": "female", + "age": 35, + "address": { + "state": "Hawaii", + "city": "Belva" + } + }, + { + "id": 4128, + "name": "Doris Pacheco", + "gender": "female", + "age": 24, + "address": { + "state": "Texas", + "city": "Chapin" + } + }, + { + "id": 4129, + "name": "Bettye Hickman", + "gender": "female", + "age": 33, + "address": { + "state": "Arkansas", + "city": "Berwind" + } + }, + { + "id": 4130, + "name": "Snow Atkins", + "gender": "male", + "age": 79, + "address": { + "state": "Delaware", + "city": "Cascades" + } + }, + { + "id": 4131, + "name": "Evelyn Shelton", + "gender": "female", + "age": 30, + "address": { + "state": "Rhode Island", + "city": "Williams" + } + }, + { + "id": 4132, + "name": "Wyatt Lott", + "gender": "male", + "age": 65, + "address": { + "state": "Kansas", + "city": "Robinette" + } + }, + { + "id": 4133, + "name": "Dale Hampton", + "gender": "female", + "age": 29, + "address": { + "state": "Indiana", + "city": "Yettem" + } + }, + { + "id": 4134, + "name": "Darlene Pearson", + "gender": "female", + "age": 81, + "address": { + "state": "Arizona", + "city": "Noxen" + } + }, + { + "id": 4135, + "name": "Humphrey Ryan", + "gender": "male", + "age": 19, + "address": { + "state": "North Carolina", + "city": "Lewis" + } + }, + { + "id": 4136, + "name": "Rena Boyd", + "gender": "female", + "age": 82, + "address": { + "state": "Idaho", + "city": "Oasis" + } + }, + { + "id": 4137, + "name": "Lucinda Austin", + "gender": "female", + "age": 76, + "address": { + "state": "Massachusetts", + "city": "Hartsville/Hartley" + } + }, + { + "id": 4138, + "name": "Clarice Fulton", + "gender": "female", + "age": 35, + "address": { + "state": "Wisconsin", + "city": "Roosevelt" + } + }, + { + "id": 4139, + "name": "Heather Buck", + "gender": "female", + "age": 47, + "address": { + "state": "Iowa", + "city": "Dubois" + } + }, + { + "id": 4140, + "name": "Gordon Bowers", + "gender": "male", + "age": 20, + "address": { + "state": "Colorado", + "city": "Longoria" + } + }, + { + "id": 4141, + "name": "Franks Parsons", + "gender": "male", + "age": 42, + "address": { + "state": "California", + "city": "Englevale" + } + }, + { + "id": 4142, + "name": "Irene French", + "gender": "female", + "age": 19, + "address": { + "state": "New York", + "city": "Nogal" + } + }, + { + "id": 4143, + "name": "Myra Stevens", + "gender": "female", + "age": 48, + "address": { + "state": "Oklahoma", + "city": "Bannock" + } + }, + { + "id": 4144, + "name": "Holcomb Donaldson", + "gender": "male", + "age": 61, + "address": { + "state": "Maine", + "city": "Bedias" + } + }, + { + "id": 4145, + "name": "Jacqueline Barry", + "gender": "female", + "age": 20, + "address": { + "state": "Wyoming", + "city": "Blanco" + } + }, + { + "id": 4146, + "name": "Adkins Shannon", + "gender": "male", + "age": 80, + "address": { + "state": "New Hampshire", + "city": "Valmy" + } + }, + { + "id": 4147, + "name": "Deidre Slater", + "gender": "female", + "age": 49, + "address": { + "state": "Minnesota", + "city": "Dixie" + } + }, + { + "id": 4148, + "name": "Graves Horne", + "gender": "male", + "age": 43, + "address": { + "state": "Nebraska", + "city": "Madaket" + } + }, + { + "id": 4149, + "name": "Josie Mccall", + "gender": "female", + "age": 52, + "address": { + "state": "Pennsylvania", + "city": "Albrightsville" + } + }, + { + "id": 4150, + "name": "Gilda George", + "gender": "female", + "age": 75, + "address": { + "state": "Connecticut", + "city": "Cade" + } + }, + { + "id": 4151, + "name": "Laverne Cervantes", + "gender": "female", + "age": 27, + "address": { + "state": "North Dakota", + "city": "Kersey" + } + }, + { + "id": 4152, + "name": "Weaver Erickson", + "gender": "male", + "age": 79, + "address": { + "state": "Ohio", + "city": "Guthrie" + } + }, + { + "id": 4153, + "name": "Bridgett Key", + "gender": "female", + "age": 62, + "address": { + "state": "Tennessee", + "city": "Blue" + } + }, + { + "id": 4154, + "name": "Wright Holder", + "gender": "male", + "age": 63, + "address": { + "state": "South Dakota", + "city": "Holcombe" + } + }, + { + "id": 4155, + "name": "Eleanor Byrd", + "gender": "female", + "age": 80, + "address": { + "state": "Vermont", + "city": "Bordelonville" + } + }, + { + "id": 4156, + "name": "Alta Snyder", + "gender": "female", + "age": 23, + "address": { + "state": "Alabama", + "city": "Biehle" + } + }, + { + "id": 4157, + "name": "Mills Clay", + "gender": "male", + "age": 60, + "address": { + "state": "New Mexico", + "city": "Bakersville" + } + }, + { + "id": 4158, + "name": "Montoya Michael", + "gender": "male", + "age": 67, + "address": { + "state": "Florida", + "city": "Harrodsburg" + } + }, + { + "id": 4159, + "name": "Haynes Figueroa", + "gender": "male", + "age": 19, + "address": { + "state": "Michigan", + "city": "Brambleton" + } + }, + { + "id": 4160, + "name": "Petra Ware", + "gender": "female", + "age": 54, + "address": { + "state": "Kentucky", + "city": "Veguita" + } + }, + { + "id": 4161, + "name": "Fitzpatrick Lamb", + "gender": "male", + "age": 18, + "address": { + "state": "Alaska", + "city": "Motley" + } + }, + { + "id": 4162, + "name": "Hale Clemons", + "gender": "male", + "age": 80, + "address": { + "state": "West Virginia", + "city": "Ebro" + } + }, + { + "id": 4163, + "name": "Harriett Pena", + "gender": "female", + "age": 34, + "address": { + "state": "Maryland", + "city": "Bynum" + } + }, + { + "id": 4164, + "name": "Luella Williams", + "gender": "female", + "age": 41, + "address": { + "state": "Nevada", + "city": "Fairforest" + } + }, + { + "id": 4165, + "name": "Bass Huff", + "gender": "male", + "age": 43, + "address": { + "state": "Iowa", + "city": "Leming" + } + }, + { + "id": 4166, + "name": "Carmela Walker", + "gender": "female", + "age": 62, + "address": { + "state": "Mississippi", + "city": "Tibbie" + } + }, + { + "id": 4167, + "name": "Graham Leach", + "gender": "male", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Bowmansville" + } + }, + { + "id": 4168, + "name": "Poole Mcfarland", + "gender": "male", + "age": 68, + "address": { + "state": "Missouri", + "city": "Cumberland" + } + }, + { + "id": 4169, + "name": "Chambers Hood", + "gender": "male", + "age": 81, + "address": { + "state": "Nebraska", + "city": "Ola" + } + }, + { + "id": 4170, + "name": "Rasmussen Crosby", + "gender": "male", + "age": 75, + "address": { + "state": "Nevada", + "city": "Efland" + } + }, + { + "id": 4171, + "name": "Kris Orr", + "gender": "female", + "age": 54, + "address": { + "state": "Arkansas", + "city": "Vallonia" + } + }, + { + "id": 4172, + "name": "Nona Kirkland", + "gender": "female", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Day" + } + }, + { + "id": 4173, + "name": "Lora Alvarez", + "gender": "female", + "age": 43, + "address": { + "state": "Louisiana", + "city": "Corinne" + } + }, + { + "id": 4174, + "name": "Greta Benton", + "gender": "female", + "age": 22, + "address": { + "state": "Vermont", + "city": "Hardyville" + } + }, + { + "id": 4175, + "name": "Church Whitehead", + "gender": "male", + "age": 55, + "address": { + "state": "North Dakota", + "city": "Neibert" + } + }, + { + "id": 4176, + "name": "Hatfield Newman", + "gender": "male", + "age": 75, + "address": { + "state": "California", + "city": "Reinerton" + } + }, + { + "id": 4177, + "name": "Twila Burt", + "gender": "female", + "age": 38, + "address": { + "state": "New York", + "city": "Ruffin" + } + }, + { + "id": 4178, + "name": "Mullins Donovan", + "gender": "male", + "age": 27, + "address": { + "state": "Alaska", + "city": "Blanford" + } + }, + { + "id": 4179, + "name": "Dixie Mcclure", + "gender": "female", + "age": 80, + "address": { + "state": "South Dakota", + "city": "Edgewater" + } + }, + { + "id": 4180, + "name": "Cecelia Moore", + "gender": "female", + "age": 42, + "address": { + "state": "Pennsylvania", + "city": "Ladera" + } + }, + { + "id": 4181, + "name": "Kelly Mitchell", + "gender": "male", + "age": 47, + "address": { + "state": "Montana", + "city": "Cresaptown" + } + }, + { + "id": 4182, + "name": "Beck Scott", + "gender": "male", + "age": 37, + "address": { + "state": "Washington", + "city": "Hayes" + } + }, + { + "id": 4183, + "name": "King Head", + "gender": "male", + "age": 56, + "address": { + "state": "Illinois", + "city": "Cade" + } + }, + { + "id": 4184, + "name": "Montoya Cobb", + "gender": "male", + "age": 74, + "address": { + "state": "Maryland", + "city": "Dexter" + } + }, + { + "id": 4185, + "name": "Louise Trujillo", + "gender": "female", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Fannett" + } + }, + { + "id": 4186, + "name": "Shelton Sullivan", + "gender": "male", + "age": 27, + "address": { + "state": "Oregon", + "city": "Eden" + } + }, + { + "id": 4187, + "name": "Alford Pickett", + "gender": "male", + "age": 32, + "address": { + "state": "New Hampshire", + "city": "Driftwood" + } + }, + { + "id": 4188, + "name": "Kidd Bell", + "gender": "male", + "age": 24, + "address": { + "state": "Maine", + "city": "Lafferty" + } + }, + { + "id": 4189, + "name": "Rhodes Dorsey", + "gender": "male", + "age": 40, + "address": { + "state": "New Jersey", + "city": "Joppa" + } + }, + { + "id": 4190, + "name": "Rollins Cox", + "gender": "male", + "age": 53, + "address": { + "state": "New Mexico", + "city": "Needmore" + } + }, + { + "id": 4191, + "name": "Jean Stone", + "gender": "female", + "age": 63, + "address": { + "state": "Hawaii", + "city": "Clarktown" + } + }, + { + "id": 4192, + "name": "Knapp Carney", + "gender": "male", + "age": 59, + "address": { + "state": "Utah", + "city": "Omar" + } + }, + { + "id": 4193, + "name": "Alexandra Hamilton", + "gender": "female", + "age": 60, + "address": { + "state": "Idaho", + "city": "Sena" + } + }, + { + "id": 4194, + "name": "Imelda Lawson", + "gender": "female", + "age": 38, + "address": { + "state": "Minnesota", + "city": "Canterwood" + } + }, + { + "id": 4195, + "name": "Booth Witt", + "gender": "male", + "age": 20, + "address": { + "state": "Texas", + "city": "Marysville" + } + }, + { + "id": 4196, + "name": "Jenny Bird", + "gender": "female", + "age": 36, + "address": { + "state": "Michigan", + "city": "Herlong" + } + }, + { + "id": 4197, + "name": "Stacy Galloway", + "gender": "female", + "age": 33, + "address": { + "state": "Florida", + "city": "Southview" + } + }, + { + "id": 4198, + "name": "Boyd Duncan", + "gender": "male", + "age": 19, + "address": { + "state": "Rhode Island", + "city": "Skyland" + } + }, + { + "id": 4199, + "name": "Wilkinson Schneider", + "gender": "male", + "age": 79, + "address": { + "state": "Indiana", + "city": "Suitland" + } + }, + { + "id": 4200, + "name": "Mcfadden Herman", + "gender": "male", + "age": 23, + "address": { + "state": "Colorado", + "city": "Grayhawk" + } + }, + { + "id": 4201, + "name": "Vinson Adams", + "gender": "male", + "age": 61, + "address": { + "state": "Alabama", + "city": "Dargan" + } + }, + { + "id": 4202, + "name": "Wall Wolfe", + "gender": "male", + "age": 52, + "address": { + "state": "Virginia", + "city": "Duryea" + } + }, + { + "id": 4203, + "name": "Mamie Murphy", + "gender": "female", + "age": 21, + "address": { + "state": "Kentucky", + "city": "Sunbury" + } + }, + { + "id": 4204, + "name": "Hamilton Parks", + "gender": "male", + "age": 70, + "address": { + "state": "Oklahoma", + "city": "Forestburg" + } + }, + { + "id": 4205, + "name": "Caldwell Farrell", + "gender": "male", + "age": 71, + "address": { + "state": "Arizona", + "city": "Wollochet" + } + }, + { + "id": 4206, + "name": "Reeves Faulkner", + "gender": "male", + "age": 22, + "address": { + "state": "Georgia", + "city": "Bannock" + } + }, + { + "id": 4207, + "name": "Laurel Lloyd", + "gender": "female", + "age": 71, + "address": { + "state": "South Carolina", + "city": "Fulford" + } + }, + { + "id": 4208, + "name": "Walsh Murray", + "gender": "male", + "age": 49, + "address": { + "state": "Delaware", + "city": "Jacksonburg" + } + }, + { + "id": 4209, + "name": "Clarke Ross", + "gender": "male", + "age": 35, + "address": { + "state": "West Virginia", + "city": "Thynedale" + } + }, + { + "id": 4210, + "name": "Corinne Stanley", + "gender": "female", + "age": 40, + "address": { + "state": "Wisconsin", + "city": "Makena" + } + }, + { + "id": 4211, + "name": "Wilda Chan", + "gender": "female", + "age": 78, + "address": { + "state": "Kansas", + "city": "Wildwood" + } + }, + { + "id": 4212, + "name": "Johnnie Massey", + "gender": "female", + "age": 50, + "address": { + "state": "Connecticut", + "city": "Grantville" + } + }, + { + "id": 4213, + "name": "Amber Ellison", + "gender": "female", + "age": 79, + "address": { + "state": "Tennessee", + "city": "Cannondale" + } + }, + { + "id": 4214, + "name": "Summer Romero", + "gender": "female", + "age": 43, + "address": { + "state": "Arkansas", + "city": "Savannah" + } + }, + { + "id": 4215, + "name": "Janis Mosley", + "gender": "female", + "age": 72, + "address": { + "state": "Michigan", + "city": "Alleghenyville" + } + }, + { + "id": 4216, + "name": "Holly Knapp", + "gender": "female", + "age": 60, + "address": { + "state": "Oklahoma", + "city": "Bonanza" + } + }, + { + "id": 4217, + "name": "Davis Peterson", + "gender": "male", + "age": 76, + "address": { + "state": "Illinois", + "city": "Shasta" + } + }, + { + "id": 4218, + "name": "Carolina Best", + "gender": "female", + "age": 50, + "address": { + "state": "Louisiana", + "city": "Clarksburg" + } + }, + { + "id": 4219, + "name": "Kate Sampson", + "gender": "female", + "age": 23, + "address": { + "state": "Rhode Island", + "city": "Chautauqua" + } + }, + { + "id": 4220, + "name": "Salazar Singleton", + "gender": "male", + "age": 57, + "address": { + "state": "Kentucky", + "city": "Dante" + } + }, + { + "id": 4221, + "name": "Blackburn Davis", + "gender": "male", + "age": 57, + "address": { + "state": "Idaho", + "city": "Winston" + } + }, + { + "id": 4222, + "name": "Wilkins Sloan", + "gender": "male", + "age": 75, + "address": { + "state": "Texas", + "city": "Gracey" + } + }, + { + "id": 4223, + "name": "Cardenas Durham", + "gender": "male", + "age": 52, + "address": { + "state": "Iowa", + "city": "Greenbackville" + } + }, + { + "id": 4224, + "name": "Stanley Mayo", + "gender": "male", + "age": 17, + "address": { + "state": "Arizona", + "city": "Foxworth" + } + }, + { + "id": 4225, + "name": "Carey Horne", + "gender": "female", + "age": 31, + "address": { + "state": "Missouri", + "city": "Ballico" + } + }, + { + "id": 4226, + "name": "Smith Morrow", + "gender": "male", + "age": 40, + "address": { + "state": "South Dakota", + "city": "Welda" + } + }, + { + "id": 4227, + "name": "Lauri Chapman", + "gender": "female", + "age": 46, + "address": { + "state": "South Carolina", + "city": "Norvelt" + } + }, + { + "id": 4228, + "name": "Rice Parrish", + "gender": "male", + "age": 62, + "address": { + "state": "New Jersey", + "city": "Barclay" + } + }, + { + "id": 4229, + "name": "Lawson Carr", + "gender": "male", + "age": 79, + "address": { + "state": "Nebraska", + "city": "Cuylerville" + } + }, + { + "id": 4230, + "name": "Cecile Holmes", + "gender": "female", + "age": 33, + "address": { + "state": "Ohio", + "city": "Sanford" + } + }, + { + "id": 4231, + "name": "Lucia May", + "gender": "female", + "age": 43, + "address": { + "state": "California", + "city": "Bennett" + } + }, + { + "id": 4232, + "name": "Gladys Dominguez", + "gender": "female", + "age": 22, + "address": { + "state": "New Mexico", + "city": "Lookingglass" + } + }, + { + "id": 4233, + "name": "Hale Vazquez", + "gender": "male", + "age": 81, + "address": { + "state": "Pennsylvania", + "city": "Disautel" + } + }, + { + "id": 4234, + "name": "Rush Boone", + "gender": "male", + "age": 69, + "address": { + "state": "Kansas", + "city": "Twilight" + } + }, + { + "id": 4235, + "name": "Joyce Powers", + "gender": "male", + "age": 52, + "address": { + "state": "Georgia", + "city": "Imperial" + } + }, + { + "id": 4236, + "name": "Julie Nunez", + "gender": "female", + "age": 72, + "address": { + "state": "Nevada", + "city": "Villarreal" + } + }, + { + "id": 4237, + "name": "Ora Sweet", + "gender": "female", + "age": 56, + "address": { + "state": "Tennessee", + "city": "Axis" + } + }, + { + "id": 4238, + "name": "Katelyn Simon", + "gender": "female", + "age": 34, + "address": { + "state": "Colorado", + "city": "Laurelton" + } + }, + { + "id": 4239, + "name": "Crosby Beasley", + "gender": "male", + "age": 49, + "address": { + "state": "Oregon", + "city": "Coleville" + } + }, + { + "id": 4240, + "name": "Janette Alston", + "gender": "female", + "age": 65, + "address": { + "state": "Indiana", + "city": "Ypsilanti" + } + }, + { + "id": 4241, + "name": "Quinn Conway", + "gender": "male", + "age": 77, + "address": { + "state": "Hawaii", + "city": "Whitmer" + } + }, + { + "id": 4242, + "name": "Horton Nixon", + "gender": "male", + "age": 29, + "address": { + "state": "Maine", + "city": "Helen" + } + }, + { + "id": 4243, + "name": "Veronica Ford", + "gender": "female", + "age": 36, + "address": { + "state": "Utah", + "city": "Ruffin" + } + }, + { + "id": 4244, + "name": "Latoya Wilcox", + "gender": "female", + "age": 65, + "address": { + "state": "Massachusetts", + "city": "Williams" + } + }, + { + "id": 4245, + "name": "Catalina Hogan", + "gender": "female", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Kenwood" + } + }, + { + "id": 4246, + "name": "Ella Drake", + "gender": "female", + "age": 48, + "address": { + "state": "Vermont", + "city": "Floris" + } + }, + { + "id": 4247, + "name": "Christy Baker", + "gender": "female", + "age": 20, + "address": { + "state": "Wisconsin", + "city": "Hannasville" + } + }, + { + "id": 4248, + "name": "Annmarie Velazquez", + "gender": "female", + "age": 24, + "address": { + "state": "North Carolina", + "city": "Freeburn" + } + }, + { + "id": 4249, + "name": "Concetta Flowers", + "gender": "female", + "age": 81, + "address": { + "state": "North Dakota", + "city": "Abiquiu" + } + }, + { + "id": 4250, + "name": "Debra Lane", + "gender": "female", + "age": 47, + "address": { + "state": "Virginia", + "city": "Cawood" + } + }, + { + "id": 4251, + "name": "Curry Walters", + "gender": "male", + "age": 47, + "address": { + "state": "Wyoming", + "city": "Richmond" + } + }, + { + "id": 4252, + "name": "Nadia Bruce", + "gender": "female", + "age": 31, + "address": { + "state": "Montana", + "city": "Kaka" + } + }, + { + "id": 4253, + "name": "Norris Snyder", + "gender": "male", + "age": 31, + "address": { + "state": "Maryland", + "city": "Bagtown" + } + }, + { + "id": 4254, + "name": "Marianne Barron", + "gender": "female", + "age": 73, + "address": { + "state": "Florida", + "city": "Bison" + } + }, + { + "id": 4255, + "name": "Erickson King", + "gender": "male", + "age": 33, + "address": { + "state": "Connecticut", + "city": "Levant" + } + }, + { + "id": 4256, + "name": "Carol Cooke", + "gender": "female", + "age": 52, + "address": { + "state": "Washington", + "city": "Kenvil" + } + }, + { + "id": 4257, + "name": "Katheryn Koch", + "gender": "female", + "age": 58, + "address": { + "state": "New York", + "city": "Norwood" + } + }, + { + "id": 4258, + "name": "Letha Baird", + "gender": "female", + "age": 18, + "address": { + "state": "New Hampshire", + "city": "Chloride" + } + }, + { + "id": 4259, + "name": "Kidd Fitzpatrick", + "gender": "male", + "age": 81, + "address": { + "state": "West Virginia", + "city": "Hailesboro" + } + }, + { + "id": 4260, + "name": "Chase Weaver", + "gender": "male", + "age": 20, + "address": { + "state": "Alaska", + "city": "Winesburg" + } + }, + { + "id": 4261, + "name": "Lacy Pacheco", + "gender": "female", + "age": 69, + "address": { + "state": "Delaware", + "city": "Leroy" + } + }, + { + "id": 4262, + "name": "Stephanie Ryan", + "gender": "female", + "age": 36, + "address": { + "state": "Alabama", + "city": "Ada" + } + }, + { + "id": 4263, + "name": "Alexandria Payne", + "gender": "female", + "age": 18, + "address": { + "state": "Nevada", + "city": "Groton" + } + }, + { + "id": 4264, + "name": "Mercer Mckee", + "gender": "male", + "age": 43, + "address": { + "state": "Alaska", + "city": "Morriston" + } + }, + { + "id": 4265, + "name": "William Nguyen", + "gender": "male", + "age": 64, + "address": { + "state": "South Dakota", + "city": "Osmond" + } + }, + { + "id": 4266, + "name": "Loretta Grant", + "gender": "female", + "age": 29, + "address": { + "state": "Minnesota", + "city": "Enetai" + } + }, + { + "id": 4267, + "name": "Monique Finley", + "gender": "female", + "age": 74, + "address": { + "state": "Georgia", + "city": "Canoochee" + } + }, + { + "id": 4268, + "name": "Tucker Jackson", + "gender": "male", + "age": 61, + "address": { + "state": "Kansas", + "city": "Chloride" + } + }, + { + "id": 4269, + "name": "Mason Mcconnell", + "gender": "male", + "age": 19, + "address": { + "state": "Vermont", + "city": "Selma" + } + }, + { + "id": 4270, + "name": "Dalton House", + "gender": "male", + "age": 53, + "address": { + "state": "South Carolina", + "city": "Vowinckel" + } + }, + { + "id": 4271, + "name": "Joyce Jones", + "gender": "female", + "age": 59, + "address": { + "state": "Alabama", + "city": "Ruckersville" + } + }, + { + "id": 4272, + "name": "Irene Mejia", + "gender": "female", + "age": 54, + "address": { + "state": "Utah", + "city": "Woodruff" + } + }, + { + "id": 4273, + "name": "York Fowler", + "gender": "male", + "age": 36, + "address": { + "state": "Washington", + "city": "Hillsboro" + } + }, + { + "id": 4274, + "name": "Patrick Velazquez", + "gender": "male", + "age": 20, + "address": { + "state": "Illinois", + "city": "Noxen" + } + }, + { + "id": 4275, + "name": "Coleen Suarez", + "gender": "female", + "age": 49, + "address": { + "state": "Maine", + "city": "Monument" + } + }, + { + "id": 4276, + "name": "West Barnett", + "gender": "male", + "age": 78, + "address": { + "state": "Florida", + "city": "Cavalero" + } + }, + { + "id": 4277, + "name": "Ruthie Sanders", + "gender": "female", + "age": 79, + "address": { + "state": "Virginia", + "city": "Chumuckla" + } + }, + { + "id": 4278, + "name": "Aurelia Conner", + "gender": "female", + "age": 41, + "address": { + "state": "Hawaii", + "city": "Joes" + } + }, + { + "id": 4279, + "name": "Osborn Henry", + "gender": "male", + "age": 39, + "address": { + "state": "California", + "city": "Statenville" + } + }, + { + "id": 4280, + "name": "Eunice Blair", + "gender": "female", + "age": 38, + "address": { + "state": "New Mexico", + "city": "Sunriver" + } + }, + { + "id": 4281, + "name": "Agnes Pope", + "gender": "female", + "age": 51, + "address": { + "state": "Louisiana", + "city": "Belgreen" + } + }, + { + "id": 4282, + "name": "Gillespie Guerrero", + "gender": "male", + "age": 67, + "address": { + "state": "Oregon", + "city": "Brooktrails" + } + }, + { + "id": 4283, + "name": "Trudy Gardner", + "gender": "female", + "age": 68, + "address": { + "state": "New York", + "city": "Rodanthe" + } + }, + { + "id": 4284, + "name": "Wolfe Peck", + "gender": "male", + "age": 18, + "address": { + "state": "Iowa", + "city": "Rote" + } + }, + { + "id": 4285, + "name": "Mckee George", + "gender": "male", + "age": 62, + "address": { + "state": "Missouri", + "city": "Gasquet" + } + }, + { + "id": 4286, + "name": "Kline Patterson", + "gender": "male", + "age": 82, + "address": { + "state": "Arkansas", + "city": "Thatcher" + } + }, + { + "id": 4287, + "name": "Janna Walls", + "gender": "female", + "age": 53, + "address": { + "state": "Idaho", + "city": "Stockwell" + } + }, + { + "id": 4288, + "name": "Alyson Gonzales", + "gender": "female", + "age": 69, + "address": { + "state": "Connecticut", + "city": "Savage" + } + }, + { + "id": 4289, + "name": "Mercedes Ayala", + "gender": "female", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Helen" + } + }, + { + "id": 4290, + "name": "Mcfadden Cotton", + "gender": "male", + "age": 34, + "address": { + "state": "New Hampshire", + "city": "Roulette" + } + }, + { + "id": 4291, + "name": "Nelson Clark", + "gender": "male", + "age": 79, + "address": { + "state": "Arizona", + "city": "Greenbush" + } + }, + { + "id": 4292, + "name": "Gray Dickson", + "gender": "male", + "age": 46, + "address": { + "state": "Montana", + "city": "Tuskahoma" + } + }, + { + "id": 4293, + "name": "Denise Farrell", + "gender": "female", + "age": 68, + "address": { + "state": "Indiana", + "city": "Hiko" + } + }, + { + "id": 4294, + "name": "Gilda Mays", + "gender": "female", + "age": 40, + "address": { + "state": "Colorado", + "city": "Spelter" + } + }, + { + "id": 4295, + "name": "Gonzalez King", + "gender": "male", + "age": 47, + "address": { + "state": "Nebraska", + "city": "Marienthal" + } + }, + { + "id": 4296, + "name": "Liz Rosa", + "gender": "female", + "age": 36, + "address": { + "state": "Maryland", + "city": "Dorneyville" + } + }, + { + "id": 4297, + "name": "Cynthia Dotson", + "gender": "female", + "age": 68, + "address": { + "state": "Ohio", + "city": "Derwood" + } + }, + { + "id": 4298, + "name": "Ruiz Albert", + "gender": "male", + "age": 22, + "address": { + "state": "Michigan", + "city": "Falmouth" + } + }, + { + "id": 4299, + "name": "Tia Guzman", + "gender": "female", + "age": 19, + "address": { + "state": "Wisconsin", + "city": "Lookingglass" + } + }, + { + "id": 4300, + "name": "Cristina Mcdowell", + "gender": "female", + "age": 59, + "address": { + "state": "West Virginia", + "city": "Talpa" + } + }, + { + "id": 4301, + "name": "Ramos Cervantes", + "gender": "male", + "age": 46, + "address": { + "state": "Pennsylvania", + "city": "Downsville" + } + }, + { + "id": 4302, + "name": "Wall Caldwell", + "gender": "male", + "age": 59, + "address": { + "state": "Mississippi", + "city": "Olney" + } + }, + { + "id": 4303, + "name": "Ballard Mills", + "gender": "male", + "age": 29, + "address": { + "state": "North Carolina", + "city": "Biddle" + } + }, + { + "id": 4304, + "name": "Stone Barrera", + "gender": "male", + "age": 33, + "address": { + "state": "Massachusetts", + "city": "Madrid" + } + }, + { + "id": 4305, + "name": "Foster Raymond", + "gender": "male", + "age": 51, + "address": { + "state": "North Dakota", + "city": "Lacomb" + } + }, + { + "id": 4306, + "name": "Eileen Stark", + "gender": "female", + "age": 82, + "address": { + "state": "Delaware", + "city": "Bergoo" + } + }, + { + "id": 4307, + "name": "Dorothea Kirk", + "gender": "female", + "age": 37, + "address": { + "state": "Kentucky", + "city": "Gadsden" + } + }, + { + "id": 4308, + "name": "Hahn Sweeney", + "gender": "male", + "age": 52, + "address": { + "state": "Oklahoma", + "city": "Cotopaxi" + } + }, + { + "id": 4309, + "name": "Mcclure Kline", + "gender": "male", + "age": 55, + "address": { + "state": "Tennessee", + "city": "Boomer" + } + }, + { + "id": 4310, + "name": "Aisha Best", + "gender": "female", + "age": 44, + "address": { + "state": "Texas", + "city": "Jackpot" + } + }, + { + "id": 4311, + "name": "Bond Ratliff", + "gender": "male", + "age": 29, + "address": { + "state": "Wyoming", + "city": "Kraemer" + } + }, + { + "id": 4312, + "name": "Hillary Stone", + "gender": "female", + "age": 30, + "address": { + "state": "Arizona", + "city": "Groveville" + } + }, + { + "id": 4313, + "name": "Daniel Jensen", + "gender": "male", + "age": 19, + "address": { + "state": "Arkansas", + "city": "Castleton" + } + }, + { + "id": 4314, + "name": "Yesenia Morgan", + "gender": "female", + "age": 41, + "address": { + "state": "California", + "city": "Sperryville" + } + }, + { + "id": 4315, + "name": "Mcfarland Mccullough", + "gender": "male", + "age": 34, + "address": { + "state": "Minnesota", + "city": "Groton" + } + }, + { + "id": 4316, + "name": "Lavonne Richard", + "gender": "female", + "age": 58, + "address": { + "state": "Vermont", + "city": "Websterville" + } + }, + { + "id": 4317, + "name": "Tina Day", + "gender": "female", + "age": 53, + "address": { + "state": "New Mexico", + "city": "Brooktrails" + } + }, + { + "id": 4318, + "name": "Gross Howe", + "gender": "male", + "age": 59, + "address": { + "state": "Oklahoma", + "city": "Jacksonburg" + } + }, + { + "id": 4319, + "name": "Rosella Matthews", + "gender": "female", + "age": 73, + "address": { + "state": "Pennsylvania", + "city": "Russellville" + } + }, + { + "id": 4320, + "name": "Krystal Morales", + "gender": "female", + "age": 62, + "address": { + "state": "Maine", + "city": "Monument" + } + }, + { + "id": 4321, + "name": "Mcdowell Diaz", + "gender": "male", + "age": 32, + "address": { + "state": "Nebraska", + "city": "Morningside" + } + }, + { + "id": 4322, + "name": "Cara Fields", + "gender": "female", + "age": 78, + "address": { + "state": "West Virginia", + "city": "Kenmar" + } + }, + { + "id": 4323, + "name": "Brittany Parsons", + "gender": "female", + "age": 71, + "address": { + "state": "Delaware", + "city": "Enetai" + } + }, + { + "id": 4324, + "name": "Karyn Sandoval", + "gender": "female", + "age": 54, + "address": { + "state": "Massachusetts", + "city": "Weogufka" + } + }, + { + "id": 4325, + "name": "Yang Gomez", + "gender": "male", + "age": 62, + "address": { + "state": "Texas", + "city": "Bonanza" + } + }, + { + "id": 4326, + "name": "Shanna Benjamin", + "gender": "female", + "age": 49, + "address": { + "state": "Alabama", + "city": "Cherokee" + } + }, + { + "id": 4327, + "name": "Patrica Salas", + "gender": "female", + "age": 64, + "address": { + "state": "South Dakota", + "city": "Calvary" + } + }, + { + "id": 4328, + "name": "Brigitte Cervantes", + "gender": "female", + "age": 69, + "address": { + "state": "Utah", + "city": "Westmoreland" + } + }, + { + "id": 4329, + "name": "Adrienne Bolton", + "gender": "female", + "age": 52, + "address": { + "state": "Georgia", + "city": "Suitland" + } + }, + { + "id": 4330, + "name": "Jeannie Bartlett", + "gender": "female", + "age": 32, + "address": { + "state": "Oregon", + "city": "Shepardsville" + } + }, + { + "id": 4331, + "name": "Greene Rios", + "gender": "male", + "age": 44, + "address": { + "state": "Colorado", + "city": "Flintville" + } + }, + { + "id": 4332, + "name": "Mccall Stevens", + "gender": "male", + "age": 64, + "address": { + "state": "Illinois", + "city": "Ticonderoga" + } + }, + { + "id": 4333, + "name": "Barry Burgess", + "gender": "male", + "age": 22, + "address": { + "state": "North Carolina", + "city": "Sheatown" + } + }, + { + "id": 4334, + "name": "English Valentine", + "gender": "male", + "age": 60, + "address": { + "state": "New Jersey", + "city": "Hasty" + } + }, + { + "id": 4335, + "name": "Katy Waters", + "gender": "female", + "age": 74, + "address": { + "state": "Tennessee", + "city": "Gulf" + } + }, + { + "id": 4336, + "name": "Reid Malone", + "gender": "male", + "age": 68, + "address": { + "state": "Wisconsin", + "city": "Ivanhoe" + } + }, + { + "id": 4337, + "name": "Justine Glenn", + "gender": "female", + "age": 26, + "address": { + "state": "Hawaii", + "city": "Yogaville" + } + }, + { + "id": 4338, + "name": "Rosemarie Byrd", + "gender": "female", + "age": 45, + "address": { + "state": "Ohio", + "city": "Kersey" + } + }, + { + "id": 4339, + "name": "Roberson Kinney", + "gender": "male", + "age": 38, + "address": { + "state": "Florida", + "city": "Wolcott" + } + }, + { + "id": 4340, + "name": "Victoria May", + "gender": "female", + "age": 82, + "address": { + "state": "Kansas", + "city": "Chesapeake" + } + }, + { + "id": 4341, + "name": "Schultz Olson", + "gender": "male", + "age": 39, + "address": { + "state": "Missouri", + "city": "Downsville" + } + }, + { + "id": 4342, + "name": "Bray Wolf", + "gender": "male", + "age": 20, + "address": { + "state": "Iowa", + "city": "Ronco" + } + }, + { + "id": 4343, + "name": "Jolene Bauer", + "gender": "female", + "age": 70, + "address": { + "state": "Mississippi", + "city": "Highland" + } + }, + { + "id": 4344, + "name": "Tia Kelly", + "gender": "female", + "age": 52, + "address": { + "state": "Indiana", + "city": "Tooleville" + } + }, + { + "id": 4345, + "name": "Phyllis Deleon", + "gender": "female", + "age": 54, + "address": { + "state": "Alaska", + "city": "Alafaya" + } + }, + { + "id": 4346, + "name": "Garcia Tucker", + "gender": "male", + "age": 45, + "address": { + "state": "Kentucky", + "city": "Graniteville" + } + }, + { + "id": 4347, + "name": "Brandy Ross", + "gender": "female", + "age": 52, + "address": { + "state": "Wyoming", + "city": "Century" + } + }, + { + "id": 4348, + "name": "Galloway Patrick", + "gender": "male", + "age": 78, + "address": { + "state": "New York", + "city": "Riegelwood" + } + }, + { + "id": 4349, + "name": "Mercedes Gutierrez", + "gender": "female", + "age": 18, + "address": { + "state": "Rhode Island", + "city": "Caspar" + } + }, + { + "id": 4350, + "name": "Dorthy Hart", + "gender": "female", + "age": 77, + "address": { + "state": "South Carolina", + "city": "Elrama" + } + }, + { + "id": 4351, + "name": "Hazel Odonnell", + "gender": "female", + "age": 75, + "address": { + "state": "Nevada", + "city": "Stouchsburg" + } + }, + { + "id": 4352, + "name": "Tessa Alexander", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Alleghenyville" + } + }, + { + "id": 4353, + "name": "Celina Vaughan", + "gender": "female", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Vernon" + } + }, + { + "id": 4354, + "name": "Emilia Mccray", + "gender": "female", + "age": 82, + "address": { + "state": "North Dakota", + "city": "Trinway" + } + }, + { + "id": 4355, + "name": "Carmen Griffith", + "gender": "female", + "age": 39, + "address": { + "state": "Idaho", + "city": "Lund" + } + }, + { + "id": 4356, + "name": "Anderson Singleton", + "gender": "male", + "age": 69, + "address": { + "state": "Washington", + "city": "Gloucester" + } + }, + { + "id": 4357, + "name": "Gibbs Clemons", + "gender": "male", + "age": 29, + "address": { + "state": "Montana", + "city": "Nutrioso" + } + }, + { + "id": 4358, + "name": "Thornton Wiley", + "gender": "male", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Hollymead" + } + }, + { + "id": 4359, + "name": "Kaufman Alvarado", + "gender": "male", + "age": 32, + "address": { + "state": "Michigan", + "city": "Rutherford" + } + }, + { + "id": 4360, + "name": "Herman Bender", + "gender": "male", + "age": 22, + "address": { + "state": "Virginia", + "city": "Limestone" + } + }, + { + "id": 4361, + "name": "Jacobs English", + "gender": "male", + "age": 22, + "address": { + "state": "Oklahoma", + "city": "Brule" + } + }, + { + "id": 4362, + "name": "Vinson Vaughan", + "gender": "male", + "age": 70, + "address": { + "state": "Maine", + "city": "Wintersburg" + } + }, + { + "id": 4363, + "name": "Janie Donovan", + "gender": "female", + "age": 37, + "address": { + "state": "Delaware", + "city": "Wilmington" + } + }, + { + "id": 4364, + "name": "Leblanc Dawson", + "gender": "male", + "age": 64, + "address": { + "state": "Georgia", + "city": "Savannah" + } + }, + { + "id": 4365, + "name": "Jane Jefferson", + "gender": "female", + "age": 29, + "address": { + "state": "Utah", + "city": "Canby" + } + }, + { + "id": 4366, + "name": "Michelle Mcclain", + "gender": "female", + "age": 73, + "address": { + "state": "New Mexico", + "city": "Cumberland" + } + }, + { + "id": 4367, + "name": "Trina Armstrong", + "gender": "female", + "age": 23, + "address": { + "state": "Alaska", + "city": "Herlong" + } + }, + { + "id": 4368, + "name": "Patel Strickland", + "gender": "male", + "age": 78, + "address": { + "state": "Rhode Island", + "city": "Manitou" + } + }, + { + "id": 4369, + "name": "Johnnie Briggs", + "gender": "female", + "age": 59, + "address": { + "state": "Missouri", + "city": "Orason" + } + }, + { + "id": 4370, + "name": "Keri Thomas", + "gender": "female", + "age": 53, + "address": { + "state": "Arizona", + "city": "Newcastle" + } + }, + { + "id": 4371, + "name": "Stuart Spears", + "gender": "male", + "age": 23, + "address": { + "state": "Vermont", + "city": "Berwind" + } + }, + { + "id": 4372, + "name": "Becky Beck", + "gender": "female", + "age": 25, + "address": { + "state": "West Virginia", + "city": "Baden" + } + }, + { + "id": 4373, + "name": "Sybil Stephens", + "gender": "female", + "age": 54, + "address": { + "state": "Michigan", + "city": "Marysville" + } + }, + { + "id": 4374, + "name": "Vasquez Newton", + "gender": "male", + "age": 34, + "address": { + "state": "California", + "city": "Aberdeen" + } + }, + { + "id": 4375, + "name": "Lessie Burton", + "gender": "female", + "age": 73, + "address": { + "state": "Kentucky", + "city": "Grayhawk" + } + }, + { + "id": 4376, + "name": "Magdalena Dalton", + "gender": "female", + "age": 61, + "address": { + "state": "South Dakota", + "city": "Gibbsville" + } + }, + { + "id": 4377, + "name": "Meghan Malone", + "gender": "female", + "age": 68, + "address": { + "state": "Idaho", + "city": "Idamay" + } + }, + { + "id": 4378, + "name": "Duran Mueller", + "gender": "male", + "age": 65, + "address": { + "state": "Washington", + "city": "Holcombe" + } + }, + { + "id": 4379, + "name": "Gwendolyn Webster", + "gender": "female", + "age": 39, + "address": { + "state": "Arkansas", + "city": "Woodruff" + } + }, + { + "id": 4380, + "name": "Willie Bowen", + "gender": "female", + "age": 68, + "address": { + "state": "Kansas", + "city": "Avalon" + } + }, + { + "id": 4381, + "name": "Marsha Hart", + "gender": "female", + "age": 63, + "address": { + "state": "Ohio", + "city": "Belvoir" + } + }, + { + "id": 4382, + "name": "Vonda Reid", + "gender": "female", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Neahkahnie" + } + }, + { + "id": 4383, + "name": "Kristie Gilliam", + "gender": "female", + "age": 81, + "address": { + "state": "North Carolina", + "city": "Harviell" + } + }, + { + "id": 4384, + "name": "Velma Cabrera", + "gender": "female", + "age": 28, + "address": { + "state": "Maryland", + "city": "Elfrida" + } + }, + { + "id": 4385, + "name": "Crystal Hardin", + "gender": "female", + "age": 57, + "address": { + "state": "Virginia", + "city": "Stewart" + } + }, + { + "id": 4386, + "name": "Alvarez Peterson", + "gender": "male", + "age": 28, + "address": { + "state": "Tennessee", + "city": "Edgar" + } + }, + { + "id": 4387, + "name": "Meredith Mccormick", + "gender": "female", + "age": 60, + "address": { + "state": "Illinois", + "city": "Datil" + } + }, + { + "id": 4388, + "name": "Tamera Pate", + "gender": "female", + "age": 70, + "address": { + "state": "South Carolina", + "city": "Innsbrook" + } + }, + { + "id": 4389, + "name": "Brenda Pratt", + "gender": "female", + "age": 17, + "address": { + "state": "Montana", + "city": "Why" + } + }, + { + "id": 4390, + "name": "Osborne Meyer", + "gender": "male", + "age": 65, + "address": { + "state": "North Dakota", + "city": "Wildwood" + } + }, + { + "id": 4391, + "name": "Calhoun Huff", + "gender": "male", + "age": 75, + "address": { + "state": "Pennsylvania", + "city": "Coloma" + } + }, + { + "id": 4392, + "name": "Nina Parks", + "gender": "female", + "age": 39, + "address": { + "state": "Nevada", + "city": "Murillo" + } + }, + { + "id": 4393, + "name": "Judith Prince", + "gender": "female", + "age": 44, + "address": { + "state": "Iowa", + "city": "Gardiner" + } + }, + { + "id": 4394, + "name": "Sherry Witt", + "gender": "female", + "age": 82, + "address": { + "state": "Indiana", + "city": "Newry" + } + }, + { + "id": 4395, + "name": "Josefina Rowland", + "gender": "female", + "age": 41, + "address": { + "state": "Hawaii", + "city": "Bennett" + } + }, + { + "id": 4396, + "name": "Norton Lyons", + "gender": "male", + "age": 50, + "address": { + "state": "Texas", + "city": "Homeworth" + } + }, + { + "id": 4397, + "name": "Avery Stout", + "gender": "male", + "age": 60, + "address": { + "state": "Louisiana", + "city": "Matheny" + } + }, + { + "id": 4398, + "name": "Conley Coleman", + "gender": "male", + "age": 45, + "address": { + "state": "Connecticut", + "city": "Englevale" + } + }, + { + "id": 4399, + "name": "Leonor Edwards", + "gender": "female", + "age": 67, + "address": { + "state": "Nebraska", + "city": "Conway" + } + }, + { + "id": 4400, + "name": "Brigitte Hines", + "gender": "female", + "age": 44, + "address": { + "state": "New York", + "city": "Nadine" + } + }, + { + "id": 4401, + "name": "Rosemarie Warner", + "gender": "female", + "age": 56, + "address": { + "state": "Mississippi", + "city": "Eagleville" + } + }, + { + "id": 4402, + "name": "Tammie Ferguson", + "gender": "female", + "age": 44, + "address": { + "state": "Wisconsin", + "city": "Davenport" + } + }, + { + "id": 4403, + "name": "Lindsay Gardner", + "gender": "male", + "age": 77, + "address": { + "state": "Colorado", + "city": "Ryderwood" + } + }, + { + "id": 4404, + "name": "Henry Mckay", + "gender": "male", + "age": 17, + "address": { + "state": "Massachusetts", + "city": "Eureka" + } + }, + { + "id": 4405, + "name": "Cecelia Norman", + "gender": "female", + "age": 18, + "address": { + "state": "Minnesota", + "city": "Bison" + } + }, + { + "id": 4406, + "name": "Oconnor Stark", + "gender": "male", + "age": 70, + "address": { + "state": "Alabama", + "city": "Warren" + } + }, + { + "id": 4407, + "name": "Suzanne Love", + "gender": "female", + "age": 27, + "address": { + "state": "Oregon", + "city": "Dubois" + } + }, + { + "id": 4408, + "name": "Jeannine Reeves", + "gender": "female", + "age": 19, + "address": { + "state": "Wyoming", + "city": "Torboy" + } + }, + { + "id": 4409, + "name": "Landry Camacho", + "gender": "male", + "age": 34, + "address": { + "state": "New Hampshire", + "city": "Bodega" + } + }, + { + "id": 4410, + "name": "William Vincent", + "gender": "male", + "age": 25, + "address": { + "state": "Indiana", + "city": "Coultervillle" + } + }, + { + "id": 4411, + "name": "Jarvis Cain", + "gender": "male", + "age": 65, + "address": { + "state": "Tennessee", + "city": "Wawona" + } + }, + { + "id": 4412, + "name": "Warren Ferrell", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Cobbtown" + } + }, + { + "id": 4413, + "name": "Atkinson Alston", + "gender": "male", + "age": 42, + "address": { + "state": "Illinois", + "city": "Sultana" + } + }, + { + "id": 4414, + "name": "Jacobs Rice", + "gender": "male", + "age": 48, + "address": { + "state": "Wyoming", + "city": "Deercroft" + } + }, + { + "id": 4415, + "name": "Wolfe Roach", + "gender": "male", + "age": 20, + "address": { + "state": "Missouri", + "city": "Beaverdale" + } + }, + { + "id": 4416, + "name": "Viola Avery", + "gender": "female", + "age": 37, + "address": { + "state": "California", + "city": "Vale" + } + }, + { + "id": 4417, + "name": "Wiley Lang", + "gender": "male", + "age": 49, + "address": { + "state": "Kansas", + "city": "Washington" + } + }, + { + "id": 4418, + "name": "Welch Young", + "gender": "male", + "age": 68, + "address": { + "state": "New Hampshire", + "city": "Barronett" + } + }, + { + "id": 4419, + "name": "Juarez Valenzuela", + "gender": "male", + "age": 64, + "address": { + "state": "Mississippi", + "city": "Dundee" + } + }, + { + "id": 4420, + "name": "Morse Cooley", + "gender": "male", + "age": 60, + "address": { + "state": "Colorado", + "city": "Fresno" + } + }, + { + "id": 4421, + "name": "Gilda Bryan", + "gender": "female", + "age": 78, + "address": { + "state": "Rhode Island", + "city": "Macdona" + } + }, + { + "id": 4422, + "name": "Wall Mccarty", + "gender": "male", + "age": 57, + "address": { + "state": "Nebraska", + "city": "Kenvil" + } + }, + { + "id": 4423, + "name": "Hurley Bass", + "gender": "male", + "age": 27, + "address": { + "state": "Ohio", + "city": "Umapine" + } + }, + { + "id": 4424, + "name": "Jessie Ayala", + "gender": "female", + "age": 22, + "address": { + "state": "Georgia", + "city": "Verdi" + } + }, + { + "id": 4425, + "name": "Tiffany Mcgowan", + "gender": "female", + "age": 68, + "address": { + "state": "Kentucky", + "city": "Sunriver" + } + }, + { + "id": 4426, + "name": "Nita Baird", + "gender": "female", + "age": 32, + "address": { + "state": "Florida", + "city": "Kula" + } + }, + { + "id": 4427, + "name": "Becky Fowler", + "gender": "female", + "age": 52, + "address": { + "state": "Virginia", + "city": "Hall" + } + }, + { + "id": 4428, + "name": "Clements Hodge", + "gender": "male", + "age": 55, + "address": { + "state": "Utah", + "city": "Cornucopia" + } + }, + { + "id": 4429, + "name": "Daisy Ortega", + "gender": "female", + "age": 72, + "address": { + "state": "Nevada", + "city": "Cazadero" + } + }, + { + "id": 4430, + "name": "Rowland Griffith", + "gender": "male", + "age": 58, + "address": { + "state": "Massachusetts", + "city": "Vallonia" + } + }, + { + "id": 4431, + "name": "Hull Conway", + "gender": "male", + "age": 18, + "address": { + "state": "Hawaii", + "city": "Joppa" + } + }, + { + "id": 4432, + "name": "Ophelia Bond", + "gender": "female", + "age": 28, + "address": { + "state": "Arizona", + "city": "Jacksonburg" + } + }, + { + "id": 4433, + "name": "Rocha Hayes", + "gender": "male", + "age": 62, + "address": { + "state": "Alabama", + "city": "Bynum" + } + }, + { + "id": 4434, + "name": "Hewitt Carpenter", + "gender": "male", + "age": 76, + "address": { + "state": "North Carolina", + "city": "Leland" + } + }, + { + "id": 4435, + "name": "Turner Oconnor", + "gender": "male", + "age": 46, + "address": { + "state": "West Virginia", + "city": "Martinsville" + } + }, + { + "id": 4436, + "name": "Mills Mcknight", + "gender": "male", + "age": 65, + "address": { + "state": "New Jersey", + "city": "Delshire" + } + }, + { + "id": 4437, + "name": "Lara Norton", + "gender": "female", + "age": 24, + "address": { + "state": "South Carolina", + "city": "Rockhill" + } + }, + { + "id": 4438, + "name": "Karla Finley", + "gender": "female", + "age": 58, + "address": { + "state": "Pennsylvania", + "city": "Bordelonville" + } + }, + { + "id": 4439, + "name": "Virginia Blake", + "gender": "female", + "age": 44, + "address": { + "state": "Wisconsin", + "city": "Tuskahoma" + } + }, + { + "id": 4440, + "name": "Levy Herrera", + "gender": "male", + "age": 60, + "address": { + "state": "Washington", + "city": "Osmond" + } + }, + { + "id": 4441, + "name": "Patti Fitzgerald", + "gender": "female", + "age": 39, + "address": { + "state": "New York", + "city": "Innsbrook" + } + }, + { + "id": 4442, + "name": "Dotson Bean", + "gender": "male", + "age": 56, + "address": { + "state": "Oregon", + "city": "Swartzville" + } + }, + { + "id": 4443, + "name": "Rachael Schneider", + "gender": "female", + "age": 44, + "address": { + "state": "Iowa", + "city": "Broadlands" + } + }, + { + "id": 4444, + "name": "Aurora Roth", + "gender": "female", + "age": 75, + "address": { + "state": "Alaska", + "city": "Berlin" + } + }, + { + "id": 4445, + "name": "Villarreal Shepard", + "gender": "male", + "age": 75, + "address": { + "state": "Connecticut", + "city": "Sisquoc" + } + }, + { + "id": 4446, + "name": "Irene Odonnell", + "gender": "female", + "age": 46, + "address": { + "state": "Oklahoma", + "city": "Ogema" + } + }, + { + "id": 4447, + "name": "Gillespie Dalton", + "gender": "male", + "age": 78, + "address": { + "state": "Arkansas", + "city": "Lindcove" + } + }, + { + "id": 4448, + "name": "Sheryl Melendez", + "gender": "female", + "age": 50, + "address": { + "state": "South Dakota", + "city": "Aurora" + } + }, + { + "id": 4449, + "name": "Schroeder Guerra", + "gender": "male", + "age": 57, + "address": { + "state": "Idaho", + "city": "Frierson" + } + }, + { + "id": 4450, + "name": "Marjorie Wade", + "gender": "female", + "age": 65, + "address": { + "state": "Montana", + "city": "Mapletown" + } + }, + { + "id": 4451, + "name": "Ellis Dominguez", + "gender": "male", + "age": 70, + "address": { + "state": "Texas", + "city": "Chesterfield" + } + }, + { + "id": 4452, + "name": "Noemi Mcleod", + "gender": "female", + "age": 26, + "address": { + "state": "New Mexico", + "city": "Edgewater" + } + }, + { + "id": 4453, + "name": "Nadine Skinner", + "gender": "female", + "age": 55, + "address": { + "state": "North Dakota", + "city": "Gloucester" + } + }, + { + "id": 4454, + "name": "Toni Francis", + "gender": "female", + "age": 33, + "address": { + "state": "Louisiana", + "city": "Bison" + } + }, + { + "id": 4455, + "name": "Decker Myers", + "gender": "male", + "age": 41, + "address": { + "state": "Vermont", + "city": "Marbury" + } + }, + { + "id": 4456, + "name": "Nola Newman", + "gender": "female", + "age": 80, + "address": { + "state": "Maine", + "city": "Retsof" + } + }, + { + "id": 4457, + "name": "Freida Townsend", + "gender": "female", + "age": 25, + "address": { + "state": "Maryland", + "city": "Turah" + } + }, + { + "id": 4458, + "name": "Monroe Floyd", + "gender": "male", + "age": 31, + "address": { + "state": "Minnesota", + "city": "Dixonville" + } + }, + { + "id": 4459, + "name": "Charity Clemons", + "gender": "female", + "age": 76, + "address": { + "state": "New Jersey", + "city": "Foxworth" + } + }, + { + "id": 4460, + "name": "Wise Velez", + "gender": "male", + "age": 27, + "address": { + "state": "Alabama", + "city": "Ruckersville" + } + }, + { + "id": 4461, + "name": "Alvarez Madden", + "gender": "male", + "age": 24, + "address": { + "state": "Georgia", + "city": "Cliffside" + } + }, + { + "id": 4462, + "name": "Rutledge Silva", + "gender": "male", + "age": 32, + "address": { + "state": "Nebraska", + "city": "Crayne" + } + }, + { + "id": 4463, + "name": "Isabelle Mayo", + "gender": "female", + "age": 59, + "address": { + "state": "Michigan", + "city": "Bordelonville" + } + }, + { + "id": 4464, + "name": "Smith Washington", + "gender": "male", + "age": 50, + "address": { + "state": "West Virginia", + "city": "Glasgow" + } + }, + { + "id": 4465, + "name": "Ann Hansen", + "gender": "female", + "age": 46, + "address": { + "state": "California", + "city": "Flintville" + } + }, + { + "id": 4466, + "name": "York Navarro", + "gender": "male", + "age": 20, + "address": { + "state": "Maryland", + "city": "Aurora" + } + }, + { + "id": 4467, + "name": "Leila Randall", + "gender": "female", + "age": 52, + "address": { + "state": "Connecticut", + "city": "Lowell" + } + }, + { + "id": 4468, + "name": "Roberson Cleveland", + "gender": "male", + "age": 63, + "address": { + "state": "New Hampshire", + "city": "Efland" + } + }, + { + "id": 4469, + "name": "Ramirez Waters", + "gender": "male", + "age": 20, + "address": { + "state": "Tennessee", + "city": "Eagletown" + } + }, + { + "id": 4470, + "name": "Foreman Ruiz", + "gender": "male", + "age": 26, + "address": { + "state": "Kentucky", + "city": "Garnet" + } + }, + { + "id": 4471, + "name": "Hartman Harvey", + "gender": "male", + "age": 56, + "address": { + "state": "Wyoming", + "city": "Helen" + } + }, + { + "id": 4472, + "name": "Jeri Acosta", + "gender": "female", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Sunbury" + } + }, + { + "id": 4473, + "name": "Erika Decker", + "gender": "female", + "age": 52, + "address": { + "state": "North Dakota", + "city": "Dixie" + } + }, + { + "id": 4474, + "name": "Petty Morgan", + "gender": "male", + "age": 45, + "address": { + "state": "Arizona", + "city": "Lorraine" + } + }, + { + "id": 4475, + "name": "Hurley Mckee", + "gender": "male", + "age": 46, + "address": { + "state": "South Dakota", + "city": "Celeryville" + } + }, + { + "id": 4476, + "name": "Gabrielle Woodward", + "gender": "female", + "age": 48, + "address": { + "state": "North Carolina", + "city": "Edinburg" + } + }, + { + "id": 4477, + "name": "Lenora Gallegos", + "gender": "female", + "age": 64, + "address": { + "state": "New York", + "city": "Belva" + } + }, + { + "id": 4478, + "name": "Pitts Kelley", + "gender": "male", + "age": 76, + "address": { + "state": "Nevada", + "city": "Hollins" + } + }, + { + "id": 4479, + "name": "Mclean Warner", + "gender": "male", + "age": 42, + "address": { + "state": "Colorado", + "city": "Zeba" + } + }, + { + "id": 4480, + "name": "Brenda Mccoy", + "gender": "female", + "age": 46, + "address": { + "state": "Missouri", + "city": "Benson" + } + }, + { + "id": 4481, + "name": "Carrie Carey", + "gender": "female", + "age": 20, + "address": { + "state": "Illinois", + "city": "Byrnedale" + } + }, + { + "id": 4482, + "name": "Valarie Diaz", + "gender": "female", + "age": 19, + "address": { + "state": "Idaho", + "city": "Selma" + } + }, + { + "id": 4483, + "name": "Juliana Lewis", + "gender": "female", + "age": 34, + "address": { + "state": "Utah", + "city": "Nipinnawasee" + } + }, + { + "id": 4484, + "name": "Mckay Welch", + "gender": "male", + "age": 70, + "address": { + "state": "Rhode Island", + "city": "Roberts" + } + }, + { + "id": 4485, + "name": "Carmella Reilly", + "gender": "female", + "age": 80, + "address": { + "state": "Kansas", + "city": "Oberlin" + } + }, + { + "id": 4486, + "name": "Briggs Hayden", + "gender": "male", + "age": 75, + "address": { + "state": "Florida", + "city": "Ellerslie" + } + }, + { + "id": 4487, + "name": "Bean Grimes", + "gender": "male", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Shaft" + } + }, + { + "id": 4488, + "name": "Daniels Hogan", + "gender": "male", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Rockhill" + } + }, + { + "id": 4489, + "name": "Kerri Wolf", + "gender": "female", + "age": 40, + "address": { + "state": "Delaware", + "city": "Brownlee" + } + }, + { + "id": 4490, + "name": "Dejesus Franco", + "gender": "male", + "age": 74, + "address": { + "state": "South Carolina", + "city": "Edmund" + } + }, + { + "id": 4491, + "name": "Middleton Morrison", + "gender": "male", + "age": 60, + "address": { + "state": "Oklahoma", + "city": "Driftwood" + } + }, + { + "id": 4492, + "name": "Sharon Gardner", + "gender": "female", + "age": 38, + "address": { + "state": "Maine", + "city": "Sidman" + } + }, + { + "id": 4493, + "name": "Lula Bonner", + "gender": "female", + "age": 66, + "address": { + "state": "Mississippi", + "city": "Homestead" + } + }, + { + "id": 4494, + "name": "Randall Mclean", + "gender": "male", + "age": 76, + "address": { + "state": "Oregon", + "city": "Mathews" + } + }, + { + "id": 4495, + "name": "Jewell Contreras", + "gender": "female", + "age": 58, + "address": { + "state": "Texas", + "city": "Cumberland" + } + }, + { + "id": 4496, + "name": "Francesca Cummings", + "gender": "female", + "age": 66, + "address": { + "state": "New Mexico", + "city": "Whitehaven" + } + }, + { + "id": 4497, + "name": "Susana Delaney", + "gender": "female", + "age": 20, + "address": { + "state": "Iowa", + "city": "Mapletown" + } + }, + { + "id": 4498, + "name": "Stephens Logan", + "gender": "male", + "age": 55, + "address": { + "state": "Alaska", + "city": "Sutton" + } + }, + { + "id": 4499, + "name": "Blair Pope", + "gender": "male", + "age": 24, + "address": { + "state": "Wisconsin", + "city": "Ogema" + } + }, + { + "id": 4500, + "name": "Wanda Ramsey", + "gender": "female", + "age": 81, + "address": { + "state": "Hawaii", + "city": "Darrtown" + } + }, + { + "id": 4501, + "name": "Murphy Robertson", + "gender": "male", + "age": 65, + "address": { + "state": "Virginia", + "city": "Matthews" + } + }, + { + "id": 4502, + "name": "Freeman Carver", + "gender": "male", + "age": 53, + "address": { + "state": "Indiana", + "city": "Nelson" + } + }, + { + "id": 4503, + "name": "Lang Gilbert", + "gender": "male", + "age": 78, + "address": { + "state": "Vermont", + "city": "Chamberino" + } + }, + { + "id": 4504, + "name": "Elvira Petersen", + "gender": "female", + "age": 17, + "address": { + "state": "Ohio", + "city": "Accoville" + } + }, + { + "id": 4505, + "name": "Mclaughlin Zimmerman", + "gender": "male", + "age": 57, + "address": { + "state": "Massachusetts", + "city": "Winfred" + } + }, + { + "id": 4506, + "name": "Lavonne Harper", + "gender": "female", + "age": 22, + "address": { + "state": "Arkansas", + "city": "Cashtown" + } + }, + { + "id": 4507, + "name": "Charlene Crosby", + "gender": "female", + "age": 51, + "address": { + "state": "Washington", + "city": "Turpin" + } + }, + { + "id": 4508, + "name": "Beard Oneal", + "gender": "male", + "age": 20, + "address": { + "state": "Connecticut", + "city": "Gouglersville" + } + }, + { + "id": 4509, + "name": "Stephanie Huffman", + "gender": "female", + "age": 17, + "address": { + "state": "Alaska", + "city": "Soudan" + } + }, + { + "id": 4510, + "name": "Baldwin Hanson", + "gender": "male", + "age": 35, + "address": { + "state": "Minnesota", + "city": "Blackgum" + } + }, + { + "id": 4511, + "name": "Parsons Nieves", + "gender": "male", + "age": 72, + "address": { + "state": "Missouri", + "city": "Murillo" + } + }, + { + "id": 4512, + "name": "Carissa Lindsay", + "gender": "female", + "age": 76, + "address": { + "state": "Wisconsin", + "city": "Detroit" + } + }, + { + "id": 4513, + "name": "Everett Blackwell", + "gender": "male", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Balm" + } + }, + { + "id": 4514, + "name": "Penelope Bullock", + "gender": "female", + "age": 64, + "address": { + "state": "Kansas", + "city": "Lumberton" + } + }, + { + "id": 4515, + "name": "Cheryl Montoya", + "gender": "female", + "age": 56, + "address": { + "state": "Iowa", + "city": "Bowmansville" + } + }, + { + "id": 4516, + "name": "Clarke Page", + "gender": "male", + "age": 67, + "address": { + "state": "Tennessee", + "city": "Enlow" + } + }, + { + "id": 4517, + "name": "Camacho Henson", + "gender": "male", + "age": 27, + "address": { + "state": "Hawaii", + "city": "Beechmont" + } + }, + { + "id": 4518, + "name": "Vickie Boyer", + "gender": "female", + "age": 61, + "address": { + "state": "Nebraska", + "city": "Singer" + } + }, + { + "id": 4519, + "name": "Benita Henry", + "gender": "female", + "age": 75, + "address": { + "state": "West Virginia", + "city": "Worcester" + } + }, + { + "id": 4520, + "name": "Eugenia Dean", + "gender": "female", + "age": 65, + "address": { + "state": "Mississippi", + "city": "Morriston" + } + }, + { + "id": 4521, + "name": "Carole Maddox", + "gender": "female", + "age": 54, + "address": { + "state": "Illinois", + "city": "Ola" + } + }, + { + "id": 4522, + "name": "Weaver Walsh", + "gender": "male", + "age": 34, + "address": { + "state": "North Dakota", + "city": "Needmore" + } + }, + { + "id": 4523, + "name": "Mcclain Irwin", + "gender": "male", + "age": 62, + "address": { + "state": "Idaho", + "city": "Machias" + } + }, + { + "id": 4524, + "name": "Rhea Key", + "gender": "female", + "age": 57, + "address": { + "state": "Indiana", + "city": "Cedarville" + } + }, + { + "id": 4525, + "name": "Matthews Clements", + "gender": "male", + "age": 76, + "address": { + "state": "Michigan", + "city": "Macdona" + } + }, + { + "id": 4526, + "name": "Glenna Langley", + "gender": "female", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Cobbtown" + } + }, + { + "id": 4527, + "name": "Barbara Sweeney", + "gender": "female", + "age": 56, + "address": { + "state": "Arkansas", + "city": "Reno" + } + }, + { + "id": 4528, + "name": "Robyn Mcclain", + "gender": "female", + "age": 20, + "address": { + "state": "Maine", + "city": "Wildwood" + } + }, + { + "id": 4529, + "name": "Hawkins Day", + "gender": "male", + "age": 63, + "address": { + "state": "New Mexico", + "city": "Santel" + } + }, + { + "id": 4530, + "name": "Small Raymond", + "gender": "male", + "age": 67, + "address": { + "state": "Utah", + "city": "Ruckersville" + } + }, + { + "id": 4531, + "name": "Faye Whitehead", + "gender": "female", + "age": 60, + "address": { + "state": "Rhode Island", + "city": "Fairview" + } + }, + { + "id": 4532, + "name": "Gray Humphrey", + "gender": "male", + "age": 55, + "address": { + "state": "New York", + "city": "Vandiver" + } + }, + { + "id": 4533, + "name": "Salazar Mccullough", + "gender": "male", + "age": 33, + "address": { + "state": "Kentucky", + "city": "Harrison" + } + }, + { + "id": 4534, + "name": "Elba Alford", + "gender": "female", + "age": 28, + "address": { + "state": "Wyoming", + "city": "Sabillasville" + } + }, + { + "id": 4535, + "name": "Mccullough Norman", + "gender": "male", + "age": 18, + "address": { + "state": "Virginia", + "city": "Ticonderoga" + } + }, + { + "id": 4536, + "name": "Annabelle Workman", + "gender": "female", + "age": 57, + "address": { + "state": "Montana", + "city": "Cumberland" + } + }, + { + "id": 4537, + "name": "Carey Santiago", + "gender": "female", + "age": 25, + "address": { + "state": "Ohio", + "city": "Allentown" + } + }, + { + "id": 4538, + "name": "Mullins Henderson", + "gender": "male", + "age": 73, + "address": { + "state": "Oregon", + "city": "Caron" + } + }, + { + "id": 4539, + "name": "Minnie Wilder", + "gender": "female", + "age": 73, + "address": { + "state": "California", + "city": "Bowie" + } + }, + { + "id": 4540, + "name": "Traci Weiss", + "gender": "female", + "age": 58, + "address": { + "state": "Colorado", + "city": "Dubois" + } + }, + { + "id": 4541, + "name": "Deann Clay", + "gender": "female", + "age": 38, + "address": { + "state": "Alabama", + "city": "Choctaw" + } + }, + { + "id": 4542, + "name": "Juanita Logan", + "gender": "female", + "age": 25, + "address": { + "state": "Vermont", + "city": "Bath" + } + }, + { + "id": 4543, + "name": "Joy Marquez", + "gender": "female", + "age": 71, + "address": { + "state": "Texas", + "city": "Belmont" + } + }, + { + "id": 4544, + "name": "Garrett Middleton", + "gender": "male", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Hackneyville" + } + }, + { + "id": 4545, + "name": "Gallegos Graves", + "gender": "male", + "age": 33, + "address": { + "state": "Georgia", + "city": "Barclay" + } + }, + { + "id": 4546, + "name": "Smith Conway", + "gender": "male", + "age": 62, + "address": { + "state": "Delaware", + "city": "Falconaire" + } + }, + { + "id": 4547, + "name": "Flores Bryan", + "gender": "male", + "age": 57, + "address": { + "state": "Nevada", + "city": "Klondike" + } + }, + { + "id": 4548, + "name": "Contreras Brock", + "gender": "male", + "age": 30, + "address": { + "state": "New Jersey", + "city": "Lewis" + } + }, + { + "id": 4549, + "name": "Baker Horne", + "gender": "male", + "age": 57, + "address": { + "state": "North Carolina", + "city": "Shaft" + } + }, + { + "id": 4550, + "name": "Bruce Sharpe", + "gender": "male", + "age": 54, + "address": { + "state": "Oklahoma", + "city": "Witmer" + } + }, + { + "id": 4551, + "name": "Abbott Blake", + "gender": "male", + "age": 76, + "address": { + "state": "Arizona", + "city": "Tivoli" + } + }, + { + "id": 4552, + "name": "Edna Cruz", + "gender": "female", + "age": 23, + "address": { + "state": "Maryland", + "city": "Elbert" + } + }, + { + "id": 4553, + "name": "Anne Walton", + "gender": "female", + "age": 69, + "address": { + "state": "New Hampshire", + "city": "Linwood" + } + }, + { + "id": 4554, + "name": "Corine Parrish", + "gender": "female", + "age": 45, + "address": { + "state": "Pennsylvania", + "city": "Haring" + } + }, + { + "id": 4555, + "name": "Casey Moreno", + "gender": "female", + "age": 65, + "address": { + "state": "Florida", + "city": "Bonanza" + } + }, + { + "id": 4556, + "name": "Susana Davis", + "gender": "female", + "age": 50, + "address": { + "state": "South Dakota", + "city": "Vowinckel" + } + }, + { + "id": 4557, + "name": "Deanna Cantrell", + "gender": "female", + "age": 56, + "address": { + "state": "Virginia", + "city": "Celeryville" + } + }, + { + "id": 4558, + "name": "Millicent Sullivan", + "gender": "female", + "age": 18, + "address": { + "state": "Colorado", + "city": "Wattsville" + } + }, + { + "id": 4559, + "name": "Katy Duke", + "gender": "female", + "age": 31, + "address": { + "state": "Illinois", + "city": "Rosburg" + } + }, + { + "id": 4560, + "name": "Polly Cain", + "gender": "female", + "age": 56, + "address": { + "state": "New Jersey", + "city": "Kersey" + } + }, + { + "id": 4561, + "name": "Cristina Mejia", + "gender": "female", + "age": 32, + "address": { + "state": "Arizona", + "city": "Belvoir" + } + }, + { + "id": 4562, + "name": "Angelica Rivers", + "gender": "female", + "age": 47, + "address": { + "state": "Louisiana", + "city": "Bangor" + } + }, + { + "id": 4563, + "name": "Rene Joyner", + "gender": "female", + "age": 68, + "address": { + "state": "Oregon", + "city": "Bowie" + } + }, + { + "id": 4564, + "name": "Milagros Delaney", + "gender": "female", + "age": 19, + "address": { + "state": "Utah", + "city": "Shasta" + } + }, + { + "id": 4565, + "name": "Iva Walsh", + "gender": "female", + "age": 54, + "address": { + "state": "Iowa", + "city": "Nile" + } + }, + { + "id": 4566, + "name": "Wilma Roberson", + "gender": "female", + "age": 61, + "address": { + "state": "Washington", + "city": "Bethpage" + } + }, + { + "id": 4567, + "name": "Deborah Gray", + "gender": "female", + "age": 34, + "address": { + "state": "Oklahoma", + "city": "Bellamy" + } + }, + { + "id": 4568, + "name": "Adriana Sherman", + "gender": "female", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Williams" + } + }, + { + "id": 4569, + "name": "Tanner Vega", + "gender": "male", + "age": 72, + "address": { + "state": "Rhode Island", + "city": "Manchester" + } + }, + { + "id": 4570, + "name": "Sonja Wilder", + "gender": "female", + "age": 35, + "address": { + "state": "Arkansas", + "city": "Clarence" + } + }, + { + "id": 4571, + "name": "Julia Howell", + "gender": "female", + "age": 37, + "address": { + "state": "Idaho", + "city": "Springdale" + } + }, + { + "id": 4572, + "name": "Bobbi Ewing", + "gender": "female", + "age": 80, + "address": { + "state": "Alaska", + "city": "Manila" + } + }, + { + "id": 4573, + "name": "Conway Wade", + "gender": "male", + "age": 36, + "address": { + "state": "Nebraska", + "city": "Keyport" + } + }, + { + "id": 4574, + "name": "Durham Whitehead", + "gender": "male", + "age": 78, + "address": { + "state": "South Carolina", + "city": "Linganore" + } + }, + { + "id": 4575, + "name": "Karen Olson", + "gender": "female", + "age": 73, + "address": { + "state": "Kansas", + "city": "Zarephath" + } + }, + { + "id": 4576, + "name": "Reese Maddox", + "gender": "male", + "age": 52, + "address": { + "state": "Mississippi", + "city": "Bridgetown" + } + }, + { + "id": 4577, + "name": "Autumn Lee", + "gender": "female", + "age": 69, + "address": { + "state": "Maryland", + "city": "Websterville" + } + }, + { + "id": 4578, + "name": "Haney Moore", + "gender": "male", + "age": 58, + "address": { + "state": "Missouri", + "city": "Calpine" + } + }, + { + "id": 4579, + "name": "Annie Doyle", + "gender": "female", + "age": 25, + "address": { + "state": "Florida", + "city": "Neibert" + } + }, + { + "id": 4580, + "name": "Ladonna Irwin", + "gender": "female", + "age": 22, + "address": { + "state": "Massachusetts", + "city": "Hanover" + } + }, + { + "id": 4581, + "name": "Hess Vasquez", + "gender": "male", + "age": 70, + "address": { + "state": "Tennessee", + "city": "Cade" + } + }, + { + "id": 4582, + "name": "Lowe Dotson", + "gender": "male", + "age": 46, + "address": { + "state": "New York", + "city": "Yogaville" + } + }, + { + "id": 4583, + "name": "Jolene Rosa", + "gender": "female", + "age": 66, + "address": { + "state": "Connecticut", + "city": "Escondida" + } + }, + { + "id": 4584, + "name": "Lois Buck", + "gender": "female", + "age": 45, + "address": { + "state": "North Dakota", + "city": "Taft" + } + }, + { + "id": 4585, + "name": "Mcmahon William", + "gender": "male", + "age": 80, + "address": { + "state": "West Virginia", + "city": "Abrams" + } + }, + { + "id": 4586, + "name": "Hardin Spencer", + "gender": "male", + "age": 25, + "address": { + "state": "Wisconsin", + "city": "Crown" + } + }, + { + "id": 4587, + "name": "Ursula Hyde", + "gender": "female", + "age": 35, + "address": { + "state": "North Carolina", + "city": "Maplewood" + } + }, + { + "id": 4588, + "name": "Rivers Merritt", + "gender": "male", + "age": 60, + "address": { + "state": "Nevada", + "city": "Allensworth" + } + }, + { + "id": 4589, + "name": "Kathleen Kaufman", + "gender": "female", + "age": 23, + "address": { + "state": "Georgia", + "city": "Saticoy" + } + }, + { + "id": 4590, + "name": "Jamie Tillman", + "gender": "female", + "age": 81, + "address": { + "state": "New Mexico", + "city": "Chumuckla" + } + }, + { + "id": 4591, + "name": "Holland Hogan", + "gender": "male", + "age": 77, + "address": { + "state": "Maine", + "city": "Darlington" + } + }, + { + "id": 4592, + "name": "Misty Dillard", + "gender": "female", + "age": 42, + "address": { + "state": "Delaware", + "city": "Richmond" + } + }, + { + "id": 4593, + "name": "Debra Savage", + "gender": "female", + "age": 60, + "address": { + "state": "Montana", + "city": "Drummond" + } + }, + { + "id": 4594, + "name": "Olson Perez", + "gender": "male", + "age": 32, + "address": { + "state": "Kentucky", + "city": "Machias" + } + }, + { + "id": 4595, + "name": "Rowland Burton", + "gender": "male", + "age": 17, + "address": { + "state": "California", + "city": "Emison" + } + }, + { + "id": 4596, + "name": "Kayla Hoffman", + "gender": "female", + "age": 57, + "address": { + "state": "Texas", + "city": "Rosine" + } + }, + { + "id": 4597, + "name": "Latasha Howe", + "gender": "female", + "age": 76, + "address": { + "state": "Ohio", + "city": "Eagleville" + } + }, + { + "id": 4598, + "name": "Callahan Barnett", + "gender": "male", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Rockhill" + } + }, + { + "id": 4599, + "name": "Lesley Manning", + "gender": "female", + "age": 45, + "address": { + "state": "Minnesota", + "city": "Omar" + } + }, + { + "id": 4600, + "name": "Krista Snow", + "gender": "female", + "age": 59, + "address": { + "state": "Alabama", + "city": "Homeland" + } + }, + { + "id": 4601, + "name": "Agnes West", + "gender": "female", + "age": 24, + "address": { + "state": "Indiana", + "city": "Lawrence" + } + }, + { + "id": 4602, + "name": "Holder Blackwell", + "gender": "male", + "age": 58, + "address": { + "state": "Michigan", + "city": "Sedley" + } + }, + { + "id": 4603, + "name": "Darlene Camacho", + "gender": "female", + "age": 73, + "address": { + "state": "New Hampshire", + "city": "Kohatk" + } + }, + { + "id": 4604, + "name": "Leticia Booth", + "gender": "female", + "age": 28, + "address": { + "state": "Vermont", + "city": "Orin" + } + }, + { + "id": 4605, + "name": "Travis Michael", + "gender": "male", + "age": 26, + "address": { + "state": "Wyoming", + "city": "Grimsley" + } + }, + { + "id": 4606, + "name": "Brewer Cochran", + "gender": "male", + "age": 67, + "address": { + "state": "Minnesota", + "city": "Sylvanite" + } + }, + { + "id": 4607, + "name": "Tami Hurst", + "gender": "female", + "age": 65, + "address": { + "state": "Arkansas", + "city": "Marshall" + } + }, + { + "id": 4608, + "name": "Kathy Holman", + "gender": "female", + "age": 27, + "address": { + "state": "New Jersey", + "city": "Ribera" + } + }, + { + "id": 4609, + "name": "Cherie Short", + "gender": "female", + "age": 64, + "address": { + "state": "Texas", + "city": "Walker" + } + }, + { + "id": 4610, + "name": "Kent Kennedy", + "gender": "male", + "age": 32, + "address": { + "state": "Indiana", + "city": "Bethpage" + } + }, + { + "id": 4611, + "name": "Jackie Summers", + "gender": "female", + "age": 65, + "address": { + "state": "Kentucky", + "city": "Rosewood" + } + }, + { + "id": 4612, + "name": "Trujillo Mcconnell", + "gender": "male", + "age": 35, + "address": { + "state": "Oregon", + "city": "Bedias" + } + }, + { + "id": 4613, + "name": "Terrell Duncan", + "gender": "male", + "age": 36, + "address": { + "state": "Alaska", + "city": "Rushford" + } + }, + { + "id": 4614, + "name": "Riggs White", + "gender": "male", + "age": 76, + "address": { + "state": "West Virginia", + "city": "Allamuchy" + } + }, + { + "id": 4615, + "name": "Caldwell Casey", + "gender": "male", + "age": 72, + "address": { + "state": "Connecticut", + "city": "Jacksonwald" + } + }, + { + "id": 4616, + "name": "Jean Pugh", + "gender": "female", + "age": 75, + "address": { + "state": "North Dakota", + "city": "Mathews" + } + }, + { + "id": 4617, + "name": "Baldwin Holt", + "gender": "male", + "age": 39, + "address": { + "state": "Nebraska", + "city": "Joppa" + } + }, + { + "id": 4618, + "name": "English Vance", + "gender": "male", + "age": 36, + "address": { + "state": "Washington", + "city": "Mappsville" + } + }, + { + "id": 4619, + "name": "Maryanne Stout", + "gender": "female", + "age": 72, + "address": { + "state": "Maryland", + "city": "Richford" + } + }, + { + "id": 4620, + "name": "Whitehead Smith", + "gender": "male", + "age": 67, + "address": { + "state": "Pennsylvania", + "city": "Worcester" + } + }, + { + "id": 4621, + "name": "Fleming Nunez", + "gender": "male", + "age": 46, + "address": { + "state": "Louisiana", + "city": "Iberia" + } + }, + { + "id": 4622, + "name": "Sherri Simon", + "gender": "female", + "age": 61, + "address": { + "state": "Maine", + "city": "Evergreen" + } + }, + { + "id": 4623, + "name": "Smith Glass", + "gender": "male", + "age": 25, + "address": { + "state": "Rhode Island", + "city": "Ernstville" + } + }, + { + "id": 4624, + "name": "Mcintyre Zamora", + "gender": "male", + "age": 25, + "address": { + "state": "Vermont", + "city": "Mulberry" + } + }, + { + "id": 4625, + "name": "Spencer Patton", + "gender": "male", + "age": 26, + "address": { + "state": "Hawaii", + "city": "Kilbourne" + } + }, + { + "id": 4626, + "name": "Snider Banks", + "gender": "male", + "age": 56, + "address": { + "state": "South Carolina", + "city": "Blanford" + } + }, + { + "id": 4627, + "name": "Sophia Cannon", + "gender": "female", + "age": 80, + "address": { + "state": "Georgia", + "city": "Berwind" + } + }, + { + "id": 4628, + "name": "Brandie Mcdaniel", + "gender": "female", + "age": 76, + "address": { + "state": "Illinois", + "city": "Innsbrook" + } + }, + { + "id": 4629, + "name": "Nielsen Vazquez", + "gender": "male", + "age": 73, + "address": { + "state": "Oklahoma", + "city": "Durham" + } + }, + { + "id": 4630, + "name": "Rosalie Rowe", + "gender": "female", + "age": 24, + "address": { + "state": "Nevada", + "city": "Deltaville" + } + }, + { + "id": 4631, + "name": "Emily Santos", + "gender": "female", + "age": 53, + "address": { + "state": "North Carolina", + "city": "Teasdale" + } + }, + { + "id": 4632, + "name": "Reva Davenport", + "gender": "female", + "age": 64, + "address": { + "state": "Alabama", + "city": "Williamson" + } + }, + { + "id": 4633, + "name": "Paula Lester", + "gender": "female", + "age": 56, + "address": { + "state": "Montana", + "city": "Bagtown" + } + }, + { + "id": 4634, + "name": "Margaret Bradford", + "gender": "female", + "age": 61, + "address": { + "state": "Tennessee", + "city": "Northridge" + } + }, + { + "id": 4635, + "name": "Rodriquez Hood", + "gender": "male", + "age": 47, + "address": { + "state": "Massachusetts", + "city": "Cleary" + } + }, + { + "id": 4636, + "name": "Gentry Mccall", + "gender": "male", + "age": 70, + "address": { + "state": "Kansas", + "city": "Fairlee" + } + }, + { + "id": 4637, + "name": "Calderon Mercer", + "gender": "male", + "age": 45, + "address": { + "state": "Wyoming", + "city": "Forestburg" + } + }, + { + "id": 4638, + "name": "Martin Brock", + "gender": "male", + "age": 42, + "address": { + "state": "Colorado", + "city": "National" + } + }, + { + "id": 4639, + "name": "Kelsey Bush", + "gender": "female", + "age": 18, + "address": { + "state": "Florida", + "city": "Wadsworth" + } + }, + { + "id": 4640, + "name": "Castro Myers", + "gender": "male", + "age": 35, + "address": { + "state": "Delaware", + "city": "Elwood" + } + }, + { + "id": 4641, + "name": "Amie Colon", + "gender": "female", + "age": 25, + "address": { + "state": "South Dakota", + "city": "Vandiver" + } + }, + { + "id": 4642, + "name": "Nina Burch", + "gender": "female", + "age": 43, + "address": { + "state": "Mississippi", + "city": "Dundee" + } + }, + { + "id": 4643, + "name": "Cecile Ball", + "gender": "female", + "age": 74, + "address": { + "state": "Virginia", + "city": "Valmy" + } + }, + { + "id": 4644, + "name": "Melba Vincent", + "gender": "female", + "age": 46, + "address": { + "state": "Wisconsin", + "city": "Clarence" + } + }, + { + "id": 4645, + "name": "Pratt Cameron", + "gender": "male", + "age": 59, + "address": { + "state": "Utah", + "city": "Westphalia" + } + }, + { + "id": 4646, + "name": "Hays Wood", + "gender": "male", + "age": 51, + "address": { + "state": "Idaho", + "city": "Bowden" + } + }, + { + "id": 4647, + "name": "Callie Justice", + "gender": "female", + "age": 35, + "address": { + "state": "New Hampshire", + "city": "Linwood" + } + }, + { + "id": 4648, + "name": "Estes Mayer", + "gender": "male", + "age": 19, + "address": { + "state": "New Mexico", + "city": "Navarre" + } + }, + { + "id": 4649, + "name": "Justice Barlow", + "gender": "male", + "age": 34, + "address": { + "state": "Michigan", + "city": "Chical" + } + }, + { + "id": 4650, + "name": "Solis Savage", + "gender": "male", + "age": 69, + "address": { + "state": "Ohio", + "city": "Caledonia" + } + }, + { + "id": 4651, + "name": "Bell Austin", + "gender": "male", + "age": 53, + "address": { + "state": "Missouri", + "city": "Crumpler" + } + }, + { + "id": 4652, + "name": "Sheree Foley", + "gender": "female", + "age": 25, + "address": { + "state": "New York", + "city": "Gouglersville" + } + }, + { + "id": 4653, + "name": "Curtis Conway", + "gender": "male", + "age": 79, + "address": { + "state": "Arizona", + "city": "Nogal" + } + }, + { + "id": 4654, + "name": "Nunez Solis", + "gender": "male", + "age": 62, + "address": { + "state": "Iowa", + "city": "Grayhawk" + } + }, + { + "id": 4655, + "name": "Jewell Huff", + "gender": "female", + "age": 34, + "address": { + "state": "Indiana", + "city": "Avalon" + } + }, + { + "id": 4656, + "name": "Velasquez Simmons", + "gender": "male", + "age": 46, + "address": { + "state": "Delaware", + "city": "Stewartville" + } + }, + { + "id": 4657, + "name": "Lou Bullock", + "gender": "female", + "age": 23, + "address": { + "state": "Michigan", + "city": "Vivian" + } + }, + { + "id": 4658, + "name": "Mcclain Bridges", + "gender": "male", + "age": 21, + "address": { + "state": "Washington", + "city": "Terlingua" + } + }, + { + "id": 4659, + "name": "Louise Barrera", + "gender": "female", + "age": 28, + "address": { + "state": "Arizona", + "city": "Brandywine" + } + }, + { + "id": 4660, + "name": "Mendez Zimmerman", + "gender": "male", + "age": 40, + "address": { + "state": "South Carolina", + "city": "Belgreen" + } + }, + { + "id": 4661, + "name": "Snider Ramos", + "gender": "male", + "age": 39, + "address": { + "state": "Missouri", + "city": "Warsaw" + } + }, + { + "id": 4662, + "name": "Levy Carpenter", + "gender": "male", + "age": 35, + "address": { + "state": "Florida", + "city": "Woodlands" + } + }, + { + "id": 4663, + "name": "Francisca Ayala", + "gender": "female", + "age": 73, + "address": { + "state": "Colorado", + "city": "Leming" + } + }, + { + "id": 4664, + "name": "Norman Santos", + "gender": "male", + "age": 78, + "address": { + "state": "Maryland", + "city": "Leroy" + } + }, + { + "id": 4665, + "name": "Lakeisha Reid", + "gender": "female", + "age": 32, + "address": { + "state": "Alaska", + "city": "Nile" + } + }, + { + "id": 4666, + "name": "Stella Kinney", + "gender": "female", + "age": 74, + "address": { + "state": "Minnesota", + "city": "Martinez" + } + }, + { + "id": 4667, + "name": "Ernestine Farmer", + "gender": "female", + "age": 21, + "address": { + "state": "Connecticut", + "city": "Gibbsville" + } + }, + { + "id": 4668, + "name": "Maddox Mann", + "gender": "male", + "age": 57, + "address": { + "state": "Louisiana", + "city": "Fairforest" + } + }, + { + "id": 4669, + "name": "Joyce Guzman", + "gender": "male", + "age": 23, + "address": { + "state": "Pennsylvania", + "city": "Harleigh" + } + }, + { + "id": 4670, + "name": "Adriana May", + "gender": "female", + "age": 41, + "address": { + "state": "Kentucky", + "city": "Mayfair" + } + }, + { + "id": 4671, + "name": "Bradford Morrison", + "gender": "male", + "age": 44, + "address": { + "state": "Montana", + "city": "Marienthal" + } + }, + { + "id": 4672, + "name": "Obrien Harrison", + "gender": "male", + "age": 80, + "address": { + "state": "New Mexico", + "city": "Nicut" + } + }, + { + "id": 4673, + "name": "Kate Navarro", + "gender": "female", + "age": 18, + "address": { + "state": "Nevada", + "city": "Titanic" + } + }, + { + "id": 4674, + "name": "Estela Barber", + "gender": "female", + "age": 69, + "address": { + "state": "Virginia", + "city": "Caberfae" + } + }, + { + "id": 4675, + "name": "Newton Gay", + "gender": "male", + "age": 62, + "address": { + "state": "New York", + "city": "Bowie" + } + }, + { + "id": 4676, + "name": "Parker Boyer", + "gender": "male", + "age": 67, + "address": { + "state": "Iowa", + "city": "Savage" + } + }, + { + "id": 4677, + "name": "Joyce Chambers", + "gender": "female", + "age": 72, + "address": { + "state": "New Jersey", + "city": "Springhill" + } + }, + { + "id": 4678, + "name": "Jimenez Lynn", + "gender": "male", + "age": 60, + "address": { + "state": "California", + "city": "Saticoy" + } + }, + { + "id": 4679, + "name": "Meagan Morris", + "gender": "female", + "age": 37, + "address": { + "state": "Wyoming", + "city": "Nadine" + } + }, + { + "id": 4680, + "name": "Jill Farrell", + "gender": "female", + "age": 39, + "address": { + "state": "Oregon", + "city": "Silkworth" + } + }, + { + "id": 4681, + "name": "Emma Shelton", + "gender": "female", + "age": 61, + "address": { + "state": "Mississippi", + "city": "Lafferty" + } + }, + { + "id": 4682, + "name": "Robert Marquez", + "gender": "female", + "age": 73, + "address": { + "state": "Oklahoma", + "city": "Hasty" + } + }, + { + "id": 4683, + "name": "Myrna Conley", + "gender": "female", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Bedias" + } + }, + { + "id": 4684, + "name": "Hensley Rivers", + "gender": "male", + "age": 68, + "address": { + "state": "Alabama", + "city": "Savannah" + } + }, + { + "id": 4685, + "name": "Miranda Hardin", + "gender": "male", + "age": 59, + "address": { + "state": "North Dakota", + "city": "Salvo" + } + }, + { + "id": 4686, + "name": "Berger Bishop", + "gender": "male", + "age": 67, + "address": { + "state": "Hawaii", + "city": "Weeksville" + } + }, + { + "id": 4687, + "name": "Dejesus Mckee", + "gender": "male", + "age": 23, + "address": { + "state": "North Carolina", + "city": "Venice" + } + }, + { + "id": 4688, + "name": "Corina Garcia", + "gender": "female", + "age": 75, + "address": { + "state": "Texas", + "city": "Makena" + } + }, + { + "id": 4689, + "name": "Florine Whitney", + "gender": "female", + "age": 27, + "address": { + "state": "Massachusetts", + "city": "Epworth" + } + }, + { + "id": 4690, + "name": "Travis Olsen", + "gender": "male", + "age": 60, + "address": { + "state": "Wisconsin", + "city": "Witmer" + } + }, + { + "id": 4691, + "name": "Toni Downs", + "gender": "female", + "age": 66, + "address": { + "state": "Ohio", + "city": "Sparkill" + } + }, + { + "id": 4692, + "name": "Liliana Price", + "gender": "female", + "age": 52, + "address": { + "state": "Kansas", + "city": "Chalfant" + } + }, + { + "id": 4693, + "name": "Peggy Bowers", + "gender": "female", + "age": 26, + "address": { + "state": "Rhode Island", + "city": "Blackgum" + } + }, + { + "id": 4694, + "name": "Ayala Peters", + "gender": "male", + "age": 56, + "address": { + "state": "Utah", + "city": "Taycheedah" + } + }, + { + "id": 4695, + "name": "Cohen Johnson", + "gender": "male", + "age": 46, + "address": { + "state": "Nebraska", + "city": "Chical" + } + }, + { + "id": 4696, + "name": "Shana Lambert", + "gender": "female", + "age": 29, + "address": { + "state": "Idaho", + "city": "Lacomb" + } + }, + { + "id": 4697, + "name": "Nadia Rollins", + "gender": "female", + "age": 82, + "address": { + "state": "New Hampshire", + "city": "Adamstown" + } + }, + { + "id": 4698, + "name": "Jeannine Brady", + "gender": "female", + "age": 78, + "address": { + "state": "South Dakota", + "city": "Cleary" + } + }, + { + "id": 4699, + "name": "Alison Skinner", + "gender": "female", + "age": 78, + "address": { + "state": "Vermont", + "city": "Idamay" + } + }, + { + "id": 4700, + "name": "Belinda Meyers", + "gender": "female", + "age": 61, + "address": { + "state": "Maine", + "city": "Marion" + } + }, + { + "id": 4701, + "name": "Hartman William", + "gender": "male", + "age": 67, + "address": { + "state": "Tennessee", + "city": "Swartzville" + } + }, + { + "id": 4702, + "name": "Viola Marks", + "gender": "female", + "age": 21, + "address": { + "state": "Illinois", + "city": "Floriston" + } + }, + { + "id": 4703, + "name": "Lidia Chaney", + "gender": "female", + "age": 27, + "address": { + "state": "West Virginia", + "city": "Wadsworth" + } + }, + { + "id": 4704, + "name": "Erma Campos", + "gender": "female", + "age": 46, + "address": { + "state": "Kansas", + "city": "Gouglersville" + } + }, + { + "id": 4705, + "name": "Penny Martin", + "gender": "female", + "age": 27, + "address": { + "state": "Michigan", + "city": "Harrison" + } + }, + { + "id": 4706, + "name": "Shields Tate", + "gender": "male", + "age": 64, + "address": { + "state": "Tennessee", + "city": "Northridge" + } + }, + { + "id": 4707, + "name": "Maude Willis", + "gender": "female", + "age": 43, + "address": { + "state": "New Hampshire", + "city": "Wyoming" + } + }, + { + "id": 4708, + "name": "Iva Hoffman", + "gender": "female", + "age": 70, + "address": { + "state": "Delaware", + "city": "Bellamy" + } + }, + { + "id": 4709, + "name": "Riddle Carter", + "gender": "male", + "age": 35, + "address": { + "state": "Montana", + "city": "Noblestown" + } + }, + { + "id": 4710, + "name": "Kenya Hale", + "gender": "female", + "age": 50, + "address": { + "state": "Ohio", + "city": "Warren" + } + }, + { + "id": 4711, + "name": "Doris Stark", + "gender": "female", + "age": 43, + "address": { + "state": "Idaho", + "city": "Nipinnawasee" + } + }, + { + "id": 4712, + "name": "Griffith Webb", + "gender": "male", + "age": 33, + "address": { + "state": "Nebraska", + "city": "Trona" + } + }, + { + "id": 4713, + "name": "Christie Hood", + "gender": "female", + "age": 65, + "address": { + "state": "Oklahoma", + "city": "Accoville" + } + }, + { + "id": 4714, + "name": "Eula Carpenter", + "gender": "female", + "age": 33, + "address": { + "state": "Mississippi", + "city": "Kylertown" + } + }, + { + "id": 4715, + "name": "Odom Weber", + "gender": "male", + "age": 38, + "address": { + "state": "New Jersey", + "city": "Leland" + } + }, + { + "id": 4716, + "name": "Townsend Pacheco", + "gender": "male", + "age": 42, + "address": { + "state": "Wyoming", + "city": "Tecolotito" + } + }, + { + "id": 4717, + "name": "Meyers Ratliff", + "gender": "male", + "age": 34, + "address": { + "state": "Texas", + "city": "Inkerman" + } + }, + { + "id": 4718, + "name": "Reba Hickman", + "gender": "female", + "age": 43, + "address": { + "state": "Alaska", + "city": "Clarktown" + } + }, + { + "id": 4719, + "name": "Knapp Bradley", + "gender": "male", + "age": 25, + "address": { + "state": "Iowa", + "city": "Ona" + } + }, + { + "id": 4720, + "name": "Vaughn Bowen", + "gender": "male", + "age": 50, + "address": { + "state": "Hawaii", + "city": "Waterford" + } + }, + { + "id": 4721, + "name": "Faith Bruce", + "gender": "female", + "age": 76, + "address": { + "state": "Florida", + "city": "Orin" + } + }, + { + "id": 4722, + "name": "Carmella King", + "gender": "female", + "age": 45, + "address": { + "state": "Alabama", + "city": "Nogal" + } + }, + { + "id": 4723, + "name": "Estrada Duran", + "gender": "male", + "age": 68, + "address": { + "state": "Missouri", + "city": "Somerset" + } + }, + { + "id": 4724, + "name": "Concepcion Suarez", + "gender": "female", + "age": 27, + "address": { + "state": "North Dakota", + "city": "Elliston" + } + }, + { + "id": 4725, + "name": "Reese Reynolds", + "gender": "male", + "age": 42, + "address": { + "state": "New Mexico", + "city": "Mappsville" + } + }, + { + "id": 4726, + "name": "Lowery Tanner", + "gender": "male", + "age": 65, + "address": { + "state": "Rhode Island", + "city": "Beaverdale" + } + }, + { + "id": 4727, + "name": "Catherine Potts", + "gender": "female", + "age": 66, + "address": { + "state": "Arkansas", + "city": "Alafaya" + } + }, + { + "id": 4728, + "name": "Natasha Decker", + "gender": "female", + "age": 31, + "address": { + "state": "Washington", + "city": "Bancroft" + } + }, + { + "id": 4729, + "name": "Cynthia Mccray", + "gender": "female", + "age": 35, + "address": { + "state": "Vermont", + "city": "Hartsville/Hartley" + } + }, + { + "id": 4730, + "name": "Nellie Cummings", + "gender": "female", + "age": 55, + "address": { + "state": "West Virginia", + "city": "Ticonderoga" + } + }, + { + "id": 4731, + "name": "Brown Singleton", + "gender": "male", + "age": 19, + "address": { + "state": "Maine", + "city": "Turah" + } + }, + { + "id": 4732, + "name": "Selma Heath", + "gender": "female", + "age": 37, + "address": { + "state": "Colorado", + "city": "Utting" + } + }, + { + "id": 4733, + "name": "Bullock Joyce", + "gender": "male", + "age": 18, + "address": { + "state": "South Dakota", + "city": "Wakarusa" + } + }, + { + "id": 4734, + "name": "Marcy Williams", + "gender": "female", + "age": 22, + "address": { + "state": "Indiana", + "city": "Tyro" + } + }, + { + "id": 4735, + "name": "Swanson Callahan", + "gender": "male", + "age": 39, + "address": { + "state": "Pennsylvania", + "city": "Falconaire" + } + }, + { + "id": 4736, + "name": "Alexandria Valentine", + "gender": "female", + "age": 71, + "address": { + "state": "Virginia", + "city": "Olney" + } + }, + { + "id": 4737, + "name": "Higgins Murray", + "gender": "male", + "age": 67, + "address": { + "state": "Wisconsin", + "city": "Cobbtown" + } + }, + { + "id": 4738, + "name": "Kaufman Contreras", + "gender": "male", + "age": 55, + "address": { + "state": "Louisiana", + "city": "Derwood" + } + }, + { + "id": 4739, + "name": "Jessica Knight", + "gender": "female", + "age": 38, + "address": { + "state": "South Carolina", + "city": "Chautauqua" + } + }, + { + "id": 4740, + "name": "Sophia Ortega", + "gender": "female", + "age": 30, + "address": { + "state": "Arizona", + "city": "Ribera" + } + }, + { + "id": 4741, + "name": "Rivers Beach", + "gender": "male", + "age": 62, + "address": { + "state": "Nevada", + "city": "Brenton" + } + }, + { + "id": 4742, + "name": "Callahan Stone", + "gender": "male", + "age": 57, + "address": { + "state": "Illinois", + "city": "Smock" + } + }, + { + "id": 4743, + "name": "Morgan Prince", + "gender": "female", + "age": 32, + "address": { + "state": "Minnesota", + "city": "Lawrence" + } + }, + { + "id": 4744, + "name": "Sharpe Sharpe", + "gender": "male", + "age": 20, + "address": { + "state": "Kentucky", + "city": "Warsaw" + } + }, + { + "id": 4745, + "name": "Aida Witt", + "gender": "female", + "age": 31, + "address": { + "state": "Georgia", + "city": "Advance" + } + }, + { + "id": 4746, + "name": "Tania Mcclure", + "gender": "female", + "age": 23, + "address": { + "state": "Massachusetts", + "city": "Tibbie" + } + }, + { + "id": 4747, + "name": "Rosalinda Rowland", + "gender": "female", + "age": 71, + "address": { + "state": "Utah", + "city": "Ola" + } + }, + { + "id": 4748, + "name": "Young Merrill", + "gender": "male", + "age": 17, + "address": { + "state": "North Carolina", + "city": "Marienthal" + } + }, + { + "id": 4749, + "name": "Celeste Maddox", + "gender": "female", + "age": 48, + "address": { + "state": "California", + "city": "Trucksville" + } + }, + { + "id": 4750, + "name": "Beth Acevedo", + "gender": "female", + "age": 32, + "address": { + "state": "Maryland", + "city": "Eagletown" + } + }, + { + "id": 4751, + "name": "Morrison Coffey", + "gender": "male", + "age": 33, + "address": { + "state": "Connecticut", + "city": "Harviell" + } + }, + { + "id": 4752, + "name": "Alisha Berger", + "gender": "female", + "age": 38, + "address": { + "state": "Oregon", + "city": "Bagtown" + } + }, + { + "id": 4753, + "name": "Lenore Snider", + "gender": "female", + "age": 55, + "address": { + "state": "Texas", + "city": "Wedgewood" + } + }, + { + "id": 4754, + "name": "Bernadine Bailey", + "gender": "female", + "age": 33, + "address": { + "state": "North Dakota", + "city": "Norwood" + } + }, + { + "id": 4755, + "name": "Whitney Pate", + "gender": "male", + "age": 28, + "address": { + "state": "Pennsylvania", + "city": "Coral" + } + }, + { + "id": 4756, + "name": "Daisy Barry", + "gender": "female", + "age": 59, + "address": { + "state": "Indiana", + "city": "Allamuchy" + } + }, + { + "id": 4757, + "name": "Aileen Stafford", + "gender": "female", + "age": 57, + "address": { + "state": "New York", + "city": "Fredericktown" + } + }, + { + "id": 4758, + "name": "Teri Burns", + "gender": "female", + "age": 47, + "address": { + "state": "New Mexico", + "city": "Calverton" + } + }, + { + "id": 4759, + "name": "Jimenez Pacheco", + "gender": "male", + "age": 41, + "address": { + "state": "Montana", + "city": "Soudan" + } + }, + { + "id": 4760, + "name": "Mcgee Figueroa", + "gender": "male", + "age": 66, + "address": { + "state": "Kentucky", + "city": "Allentown" + } + }, + { + "id": 4761, + "name": "Tonia Savage", + "gender": "female", + "age": 40, + "address": { + "state": "Vermont", + "city": "Maybell" + } + }, + { + "id": 4762, + "name": "Forbes Bowen", + "gender": "male", + "age": 76, + "address": { + "state": "Missouri", + "city": "Clayville" + } + }, + { + "id": 4763, + "name": "Hardy Page", + "gender": "male", + "age": 43, + "address": { + "state": "South Dakota", + "city": "Hartsville/Hartley" + } + }, + { + "id": 4764, + "name": "Fulton Bishop", + "gender": "male", + "age": 68, + "address": { + "state": "Washington", + "city": "Bourg" + } + }, + { + "id": 4765, + "name": "John Delgado", + "gender": "female", + "age": 32, + "address": { + "state": "Ohio", + "city": "Dellview" + } + }, + { + "id": 4766, + "name": "Leah Erickson", + "gender": "female", + "age": 47, + "address": { + "state": "Maine", + "city": "Johnsonburg" + } + }, + { + "id": 4767, + "name": "Wilda Compton", + "gender": "female", + "age": 58, + "address": { + "state": "Arkansas", + "city": "Rivera" + } + }, + { + "id": 4768, + "name": "Watts Kirkland", + "gender": "male", + "age": 45, + "address": { + "state": "South Carolina", + "city": "Esmont" + } + }, + { + "id": 4769, + "name": "Mckay Boyd", + "gender": "male", + "age": 44, + "address": { + "state": "Georgia", + "city": "Winchester" + } + }, + { + "id": 4770, + "name": "Katherine Collier", + "gender": "female", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Hackneyville" + } + }, + { + "id": 4771, + "name": "Tania Shepard", + "gender": "female", + "age": 47, + "address": { + "state": "Alaska", + "city": "Kenwood" + } + }, + { + "id": 4772, + "name": "Saundra Powers", + "gender": "female", + "age": 17, + "address": { + "state": "Florida", + "city": "Wildwood" + } + }, + { + "id": 4773, + "name": "Briana Walters", + "gender": "female", + "age": 22, + "address": { + "state": "West Virginia", + "city": "Grazierville" + } + }, + { + "id": 4774, + "name": "Ramos Moore", + "gender": "male", + "age": 66, + "address": { + "state": "Louisiana", + "city": "Jenkinsville" + } + }, + { + "id": 4775, + "name": "Charity Slater", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Sylvanite" + } + }, + { + "id": 4776, + "name": "Marcie Mcguire", + "gender": "female", + "age": 27, + "address": { + "state": "Iowa", + "city": "Hoagland" + } + }, + { + "id": 4777, + "name": "Cote Lowery", + "gender": "male", + "age": 65, + "address": { + "state": "Michigan", + "city": "Whitewater" + } + }, + { + "id": 4778, + "name": "Savannah Merrill", + "gender": "female", + "age": 78, + "address": { + "state": "Illinois", + "city": "Springville" + } + }, + { + "id": 4779, + "name": "Darla Brown", + "gender": "female", + "age": 18, + "address": { + "state": "Rhode Island", + "city": "Fannett" + } + }, + { + "id": 4780, + "name": "Boyd Gamble", + "gender": "male", + "age": 67, + "address": { + "state": "Kansas", + "city": "Bowden" + } + }, + { + "id": 4781, + "name": "Pitts Marquez", + "gender": "male", + "age": 19, + "address": { + "state": "Wyoming", + "city": "Kohatk" + } + }, + { + "id": 4782, + "name": "Kristine Rodriguez", + "gender": "female", + "age": 63, + "address": { + "state": "Tennessee", + "city": "Urie" + } + }, + { + "id": 4783, + "name": "Mosley Best", + "gender": "male", + "age": 62, + "address": { + "state": "Idaho", + "city": "Brooktrails" + } + }, + { + "id": 4784, + "name": "Rocha Taylor", + "gender": "male", + "age": 53, + "address": { + "state": "Maryland", + "city": "Belvoir" + } + }, + { + "id": 4785, + "name": "Roslyn Deleon", + "gender": "female", + "age": 37, + "address": { + "state": "Alabama", + "city": "Sultana" + } + }, + { + "id": 4786, + "name": "Erna Fox", + "gender": "female", + "age": 45, + "address": { + "state": "Nevada", + "city": "Taycheedah" + } + }, + { + "id": 4787, + "name": "Mccoy Bryan", + "gender": "male", + "age": 58, + "address": { + "state": "New Jersey", + "city": "Robbins" + } + }, + { + "id": 4788, + "name": "Janie Michael", + "gender": "female", + "age": 48, + "address": { + "state": "Arizona", + "city": "Rockhill" + } + }, + { + "id": 4789, + "name": "Fitzpatrick Fry", + "gender": "male", + "age": 35, + "address": { + "state": "Nebraska", + "city": "Accoville" + } + }, + { + "id": 4790, + "name": "Clayton Myers", + "gender": "male", + "age": 66, + "address": { + "state": "Utah", + "city": "Defiance" + } + }, + { + "id": 4791, + "name": "Leann Holland", + "gender": "female", + "age": 27, + "address": { + "state": "Oklahoma", + "city": "Caledonia" + } + }, + { + "id": 4792, + "name": "Angel Le", + "gender": "female", + "age": 31, + "address": { + "state": "North Carolina", + "city": "Vicksburg" + } + }, + { + "id": 4793, + "name": "Doyle Maddox", + "gender": "male", + "age": 64, + "address": { + "state": "Connecticut", + "city": "Lupton" + } + }, + { + "id": 4794, + "name": "Gail Tran", + "gender": "female", + "age": 38, + "address": { + "state": "Minnesota", + "city": "Roland" + } + }, + { + "id": 4795, + "name": "Reba Riddle", + "gender": "female", + "age": 57, + "address": { + "state": "Colorado", + "city": "Coaldale" + } + }, + { + "id": 4796, + "name": "Lawson Knapp", + "gender": "male", + "age": 39, + "address": { + "state": "Hawaii", + "city": "Cobbtown" + } + }, + { + "id": 4797, + "name": "Araceli Fitzgerald", + "gender": "female", + "age": 80, + "address": { + "state": "Massachusetts", + "city": "Hendersonville" + } + }, + { + "id": 4798, + "name": "Dudley Matthews", + "gender": "male", + "age": 21, + "address": { + "state": "Mississippi", + "city": "Cade" + } + }, + { + "id": 4799, + "name": "Neal Brooks", + "gender": "male", + "age": 25, + "address": { + "state": "Oregon", + "city": "Warsaw" + } + }, + { + "id": 4800, + "name": "Taylor Brennan", + "gender": "female", + "age": 46, + "address": { + "state": "Virginia", + "city": "Sattley" + } + }, + { + "id": 4801, + "name": "Mcdowell William", + "gender": "male", + "age": 30, + "address": { + "state": "California", + "city": "Stonybrook" + } + }, + { + "id": 4802, + "name": "Love Gill", + "gender": "male", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Gasquet" + } + }, + { + "id": 4803, + "name": "Knowles Whitney", + "gender": "male", + "age": 28, + "address": { + "state": "Vermont", + "city": "Nord" + } + }, + { + "id": 4804, + "name": "Downs Copeland", + "gender": "male", + "age": 38, + "address": { + "state": "Mississippi", + "city": "Hoagland" + } + }, + { + "id": 4805, + "name": "Maria Murray", + "gender": "female", + "age": 61, + "address": { + "state": "Iowa", + "city": "Sandston" + } + }, + { + "id": 4806, + "name": "Grant Simpson", + "gender": "male", + "age": 80, + "address": { + "state": "Connecticut", + "city": "Websterville" + } + }, + { + "id": 4807, + "name": "Robinson Stanley", + "gender": "male", + "age": 26, + "address": { + "state": "Hawaii", + "city": "Felt" + } + }, + { + "id": 4808, + "name": "Franks Hewitt", + "gender": "male", + "age": 56, + "address": { + "state": "Ohio", + "city": "Wauhillau" + } + }, + { + "id": 4809, + "name": "Schroeder Barrera", + "gender": "male", + "age": 23, + "address": { + "state": "California", + "city": "Aguila" + } + }, + { + "id": 4810, + "name": "Madden Fulton", + "gender": "male", + "age": 72, + "address": { + "state": "Utah", + "city": "Cade" + } + }, + { + "id": 4811, + "name": "Christensen Perry", + "gender": "male", + "age": 20, + "address": { + "state": "South Dakota", + "city": "Buxton" + } + }, + { + "id": 4812, + "name": "Mamie Stokes", + "gender": "female", + "age": 36, + "address": { + "state": "Tennessee", + "city": "Boykin" + } + }, + { + "id": 4813, + "name": "Whitney Henry", + "gender": "female", + "age": 75, + "address": { + "state": "Nebraska", + "city": "Sunbury" + } + }, + { + "id": 4814, + "name": "Sallie Delgado", + "gender": "female", + "age": 42, + "address": { + "state": "Alaska", + "city": "Kraemer" + } + }, + { + "id": 4815, + "name": "Wilkins Mays", + "gender": "male", + "age": 53, + "address": { + "state": "Montana", + "city": "Tivoli" + } + }, + { + "id": 4816, + "name": "Holden Santana", + "gender": "male", + "age": 44, + "address": { + "state": "Indiana", + "city": "Hampstead" + } + }, + { + "id": 4817, + "name": "Valerie Rich", + "gender": "female", + "age": 48, + "address": { + "state": "Georgia", + "city": "Conway" + } + }, + { + "id": 4818, + "name": "Sawyer Espinoza", + "gender": "male", + "age": 59, + "address": { + "state": "Minnesota", + "city": "Roberts" + } + }, + { + "id": 4819, + "name": "Stacey House", + "gender": "female", + "age": 49, + "address": { + "state": "Colorado", + "city": "Elfrida" + } + }, + { + "id": 4820, + "name": "Betty Ayala", + "gender": "female", + "age": 57, + "address": { + "state": "Kansas", + "city": "Outlook" + } + }, + { + "id": 4821, + "name": "Jenny Morrison", + "gender": "female", + "age": 46, + "address": { + "state": "Louisiana", + "city": "Aberdeen" + } + }, + { + "id": 4822, + "name": "Sherman Adams", + "gender": "male", + "age": 52, + "address": { + "state": "North Dakota", + "city": "Munjor" + } + }, + { + "id": 4823, + "name": "Harvey Fry", + "gender": "male", + "age": 44, + "address": { + "state": "Idaho", + "city": "Columbus" + } + }, + { + "id": 4824, + "name": "Erickson Mcgowan", + "gender": "male", + "age": 54, + "address": { + "state": "Illinois", + "city": "Fostoria" + } + }, + { + "id": 4825, + "name": "Becker Knight", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Sanborn" + } + }, + { + "id": 4826, + "name": "Roach Trujillo", + "gender": "male", + "age": 71, + "address": { + "state": "Kentucky", + "city": "Gardners" + } + }, + { + "id": 4827, + "name": "Ellen Mitchell", + "gender": "female", + "age": 74, + "address": { + "state": "West Virginia", + "city": "Iola" + } + }, + { + "id": 4828, + "name": "Dominguez Baldwin", + "gender": "male", + "age": 59, + "address": { + "state": "Alabama", + "city": "Denio" + } + }, + { + "id": 4829, + "name": "Marci Lynch", + "gender": "female", + "age": 65, + "address": { + "state": "New Mexico", + "city": "Kylertown" + } + }, + { + "id": 4830, + "name": "Mayer Figueroa", + "gender": "male", + "age": 79, + "address": { + "state": "Nevada", + "city": "Temperanceville" + } + }, + { + "id": 4831, + "name": "Benita Ortega", + "gender": "female", + "age": 64, + "address": { + "state": "Rhode Island", + "city": "Whitewater" + } + }, + { + "id": 4832, + "name": "Craft Richards", + "gender": "male", + "age": 22, + "address": { + "state": "Wisconsin", + "city": "Lindisfarne" + } + }, + { + "id": 4833, + "name": "Jordan Glass", + "gender": "female", + "age": 69, + "address": { + "state": "New Jersey", + "city": "Elbert" + } + }, + { + "id": 4834, + "name": "Gillespie Bentley", + "gender": "male", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Weogufka" + } + }, + { + "id": 4835, + "name": "Underwood Lester", + "gender": "male", + "age": 63, + "address": { + "state": "Maine", + "city": "Nicut" + } + }, + { + "id": 4836, + "name": "Abby Shepherd", + "gender": "female", + "age": 56, + "address": { + "state": "Arizona", + "city": "Hamilton" + } + }, + { + "id": 4837, + "name": "Kari Smith", + "gender": "female", + "age": 49, + "address": { + "state": "Oregon", + "city": "Kohatk" + } + }, + { + "id": 4838, + "name": "Tate Mcguire", + "gender": "male", + "age": 63, + "address": { + "state": "Missouri", + "city": "Caledonia" + } + }, + { + "id": 4839, + "name": "Reese Miles", + "gender": "male", + "age": 49, + "address": { + "state": "Texas", + "city": "Needmore" + } + }, + { + "id": 4840, + "name": "Carter Mcconnell", + "gender": "male", + "age": 25, + "address": { + "state": "Delaware", + "city": "Otranto" + } + }, + { + "id": 4841, + "name": "Tania Sanchez", + "gender": "female", + "age": 24, + "address": { + "state": "Washington", + "city": "Devon" + } + }, + { + "id": 4842, + "name": "Gabriela Russo", + "gender": "female", + "age": 17, + "address": { + "state": "Arkansas", + "city": "Rockbridge" + } + }, + { + "id": 4843, + "name": "Marcie Campbell", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Kilbourne" + } + }, + { + "id": 4844, + "name": "Ila Schroeder", + "gender": "female", + "age": 78, + "address": { + "state": "Wyoming", + "city": "Logan" + } + }, + { + "id": 4845, + "name": "Donaldson Chase", + "gender": "male", + "age": 28, + "address": { + "state": "Virginia", + "city": "Witmer" + } + }, + { + "id": 4846, + "name": "Elaine Wright", + "gender": "female", + "age": 68, + "address": { + "state": "Florida", + "city": "Warren" + } + }, + { + "id": 4847, + "name": "Leah Macdonald", + "gender": "female", + "age": 47, + "address": { + "state": "Maryland", + "city": "Berlin" + } + }, + { + "id": 4848, + "name": "Colette Fowler", + "gender": "female", + "age": 82, + "address": { + "state": "Oklahoma", + "city": "Harrodsburg" + } + }, + { + "id": 4849, + "name": "Lowe Battle", + "gender": "male", + "age": 28, + "address": { + "state": "North Carolina", + "city": "Leyner" + } + }, + { + "id": 4850, + "name": "Elba Hyde", + "gender": "female", + "age": 78, + "address": { + "state": "New York", + "city": "Cotopaxi" + } + }, + { + "id": 4851, + "name": "Wendy Marks", + "gender": "female", + "age": 64, + "address": { + "state": "West Virginia", + "city": "Thomasville" + } + }, + { + "id": 4852, + "name": "Daugherty Hunt", + "gender": "male", + "age": 53, + "address": { + "state": "Massachusetts", + "city": "Dawn" + } + }, + { + "id": 4853, + "name": "Lina Baird", + "gender": "female", + "age": 67, + "address": { + "state": "Vermont", + "city": "Bancroft" + } + }, + { + "id": 4854, + "name": "Estela Miles", + "gender": "female", + "age": 52, + "address": { + "state": "Kentucky", + "city": "Craig" + } + }, + { + "id": 4855, + "name": "Tillman Logan", + "gender": "male", + "age": 71, + "address": { + "state": "Michigan", + "city": "Tuskahoma" + } + }, + { + "id": 4856, + "name": "English Knight", + "gender": "male", + "age": 37, + "address": { + "state": "Louisiana", + "city": "Sutton" + } + }, + { + "id": 4857, + "name": "Robertson Dodson", + "gender": "male", + "age": 28, + "address": { + "state": "Montana", + "city": "Sims" + } + }, + { + "id": 4858, + "name": "Luz Douglas", + "gender": "female", + "age": 47, + "address": { + "state": "New Jersey", + "city": "Nord" + } + }, + { + "id": 4859, + "name": "Matthews Alvarez", + "gender": "male", + "age": 39, + "address": { + "state": "Rhode Island", + "city": "Mulino" + } + }, + { + "id": 4860, + "name": "Olive Rasmussen", + "gender": "female", + "age": 75, + "address": { + "state": "Virginia", + "city": "Longbranch" + } + }, + { + "id": 4861, + "name": "Mitzi Kirkland", + "gender": "female", + "age": 58, + "address": { + "state": "Delaware", + "city": "Dotsero" + } + }, + { + "id": 4862, + "name": "Meagan Garrett", + "gender": "female", + "age": 31, + "address": { + "state": "Maine", + "city": "Denio" + } + }, + { + "id": 4863, + "name": "Rowe Gray", + "gender": "male", + "age": 25, + "address": { + "state": "Tennessee", + "city": "Wright" + } + }, + { + "id": 4864, + "name": "Lynch Dale", + "gender": "male", + "age": 47, + "address": { + "state": "Mississippi", + "city": "Bison" + } + }, + { + "id": 4865, + "name": "Workman Owen", + "gender": "male", + "age": 64, + "address": { + "state": "Maryland", + "city": "Motley" + } + }, + { + "id": 4866, + "name": "Odessa Simon", + "gender": "female", + "age": 77, + "address": { + "state": "Washington", + "city": "Wyano" + } + }, + { + "id": 4867, + "name": "Yang Gould", + "gender": "male", + "age": 54, + "address": { + "state": "Nebraska", + "city": "Holcombe" + } + }, + { + "id": 4868, + "name": "Jane Hatfield", + "gender": "female", + "age": 30, + "address": { + "state": "New Hampshire", + "city": "Mahtowa" + } + }, + { + "id": 4869, + "name": "Peggy Fry", + "gender": "female", + "age": 19, + "address": { + "state": "Nevada", + "city": "Malo" + } + }, + { + "id": 4870, + "name": "Quinn Guerra", + "gender": "male", + "age": 48, + "address": { + "state": "Texas", + "city": "Kent" + } + }, + { + "id": 4871, + "name": "Guerrero Acosta", + "gender": "male", + "age": 33, + "address": { + "state": "Idaho", + "city": "Henrietta" + } + }, + { + "id": 4872, + "name": "Cervantes Mcfadden", + "gender": "male", + "age": 73, + "address": { + "state": "Illinois", + "city": "Springdale" + } + }, + { + "id": 4873, + "name": "Burch Hines", + "gender": "male", + "age": 22, + "address": { + "state": "Alabama", + "city": "Beaverdale" + } + }, + { + "id": 4874, + "name": "Elvia Lynn", + "gender": "female", + "age": 33, + "address": { + "state": "South Dakota", + "city": "Tibbie" + } + }, + { + "id": 4875, + "name": "Carolyn Holder", + "gender": "female", + "age": 79, + "address": { + "state": "Minnesota", + "city": "Blodgett" + } + }, + { + "id": 4876, + "name": "Kimberley Harrison", + "gender": "female", + "age": 41, + "address": { + "state": "Georgia", + "city": "Boonville" + } + }, + { + "id": 4877, + "name": "Vickie Reyes", + "gender": "female", + "age": 47, + "address": { + "state": "North Dakota", + "city": "Dixie" + } + }, + { + "id": 4878, + "name": "Keith Woods", + "gender": "male", + "age": 81, + "address": { + "state": "Oklahoma", + "city": "Orovada" + } + }, + { + "id": 4879, + "name": "Lara Stanley", + "gender": "male", + "age": 62, + "address": { + "state": "Alaska", + "city": "Saranap" + } + }, + { + "id": 4880, + "name": "Sadie Foster", + "gender": "female", + "age": 40, + "address": { + "state": "Arizona", + "city": "Forestburg" + } + }, + { + "id": 4881, + "name": "Richards Hewitt", + "gender": "male", + "age": 37, + "address": { + "state": "Pennsylvania", + "city": "Grapeview" + } + }, + { + "id": 4882, + "name": "Nora Ochoa", + "gender": "female", + "age": 76, + "address": { + "state": "New York", + "city": "Dola" + } + }, + { + "id": 4883, + "name": "Viola Riggs", + "gender": "female", + "age": 20, + "address": { + "state": "Colorado", + "city": "Clarksburg" + } + }, + { + "id": 4884, + "name": "Anderson Cameron", + "gender": "male", + "age": 64, + "address": { + "state": "Wisconsin", + "city": "Norfolk" + } + }, + { + "id": 4885, + "name": "Ferrell Shields", + "gender": "male", + "age": 80, + "address": { + "state": "North Carolina", + "city": "Naomi" + } + }, + { + "id": 4886, + "name": "Ladonna Cole", + "gender": "female", + "age": 74, + "address": { + "state": "Arkansas", + "city": "Cawood" + } + }, + { + "id": 4887, + "name": "Clarissa Maddox", + "gender": "female", + "age": 79, + "address": { + "state": "South Carolina", + "city": "Alleghenyville" + } + }, + { + "id": 4888, + "name": "Galloway Walsh", + "gender": "male", + "age": 27, + "address": { + "state": "Missouri", + "city": "Brooktrails" + } + }, + { + "id": 4889, + "name": "Turner Meyers", + "gender": "male", + "age": 39, + "address": { + "state": "Utah", + "city": "Rockingham" + } + }, + { + "id": 4890, + "name": "Livingston Preston", + "gender": "male", + "age": 19, + "address": { + "state": "Indiana", + "city": "Lowgap" + } + }, + { + "id": 4891, + "name": "Lora Freeman", + "gender": "female", + "age": 36, + "address": { + "state": "California", + "city": "Suitland" + } + }, + { + "id": 4892, + "name": "Andrea Craig", + "gender": "female", + "age": 69, + "address": { + "state": "Kansas", + "city": "Waterford" + } + }, + { + "id": 4893, + "name": "Tabitha Middleton", + "gender": "female", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Wilmington" + } + }, + { + "id": 4894, + "name": "Lott Kramer", + "gender": "male", + "age": 19, + "address": { + "state": "New Mexico", + "city": "Summertown" + } + }, + { + "id": 4895, + "name": "Kim Morrison", + "gender": "male", + "age": 33, + "address": { + "state": "Ohio", + "city": "Venice" + } + }, + { + "id": 4896, + "name": "Magdalena Buchanan", + "gender": "female", + "age": 36, + "address": { + "state": "Wyoming", + "city": "Joes" + } + }, + { + "id": 4897, + "name": "Rochelle Butler", + "gender": "female", + "age": 53, + "address": { + "state": "Oregon", + "city": "Kanauga" + } + }, + { + "id": 4898, + "name": "Millicent Mckenzie", + "gender": "female", + "age": 22, + "address": { + "state": "Hawaii", + "city": "Marbury" + } + }, + { + "id": 4899, + "name": "Morse Lindsay", + "gender": "male", + "age": 71, + "address": { + "state": "Iowa", + "city": "Manchester" + } + }, + { + "id": 4900, + "name": "Becker Marsh", + "gender": "male", + "age": 23, + "address": { + "state": "Illinois", + "city": "Hollymead" + } + }, + { + "id": 4901, + "name": "Steele Ellis", + "gender": "male", + "age": 81, + "address": { + "state": "North Dakota", + "city": "Walland" + } + }, + { + "id": 4902, + "name": "Luna Hobbs", + "gender": "male", + "age": 37, + "address": { + "state": "Washington", + "city": "Falconaire" + } + }, + { + "id": 4903, + "name": "Fisher Brewer", + "gender": "male", + "age": 24, + "address": { + "state": "Mississippi", + "city": "Chelsea" + } + }, + { + "id": 4904, + "name": "White Cline", + "gender": "male", + "age": 54, + "address": { + "state": "Massachusetts", + "city": "Coleville" + } + }, + { + "id": 4905, + "name": "Connie Miranda", + "gender": "female", + "age": 78, + "address": { + "state": "Nevada", + "city": "Floriston" + } + }, + { + "id": 4906, + "name": "Millicent Alexander", + "gender": "female", + "age": 42, + "address": { + "state": "Idaho", + "city": "Berwind" + } + }, + { + "id": 4907, + "name": "Bean Whitaker", + "gender": "male", + "age": 64, + "address": { + "state": "New Jersey", + "city": "Hemlock" + } + }, + { + "id": 4908, + "name": "Pamela Pacheco", + "gender": "female", + "age": 45, + "address": { + "state": "Wyoming", + "city": "Basye" + } + }, + { + "id": 4909, + "name": "Carole Grant", + "gender": "female", + "age": 70, + "address": { + "state": "Michigan", + "city": "Ivanhoe" + } + }, + { + "id": 4910, + "name": "Ellison Vinson", + "gender": "male", + "age": 48, + "address": { + "state": "Colorado", + "city": "Valle" + } + }, + { + "id": 4911, + "name": "Daugherty Holland", + "gender": "male", + "age": 78, + "address": { + "state": "New York", + "city": "Kerby" + } + }, + { + "id": 4912, + "name": "Joan Lancaster", + "gender": "female", + "age": 59, + "address": { + "state": "California", + "city": "Bath" + } + }, + { + "id": 4913, + "name": "Vilma Crane", + "gender": "female", + "age": 66, + "address": { + "state": "Minnesota", + "city": "Caledonia" + } + }, + { + "id": 4914, + "name": "Greer Cotton", + "gender": "male", + "age": 31, + "address": { + "state": "Virginia", + "city": "Whitehaven" + } + }, + { + "id": 4915, + "name": "Bartlett Booth", + "gender": "male", + "age": 77, + "address": { + "state": "New Mexico", + "city": "Chloride" + } + }, + { + "id": 4916, + "name": "Ella Massey", + "gender": "female", + "age": 19, + "address": { + "state": "Florida", + "city": "Kent" + } + }, + { + "id": 4917, + "name": "Tina Atkins", + "gender": "female", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Snelling" + } + }, + { + "id": 4918, + "name": "Mcdaniel Becker", + "gender": "male", + "age": 70, + "address": { + "state": "Maine", + "city": "Harborton" + } + }, + { + "id": 4919, + "name": "Wise Pruitt", + "gender": "male", + "age": 69, + "address": { + "state": "Texas", + "city": "Waverly" + } + }, + { + "id": 4920, + "name": "Nannie Albert", + "gender": "female", + "age": 38, + "address": { + "state": "Alabama", + "city": "Dawn" + } + }, + { + "id": 4921, + "name": "Hinton Barnes", + "gender": "male", + "age": 38, + "address": { + "state": "Delaware", + "city": "Rehrersburg" + } + }, + { + "id": 4922, + "name": "Karin Buchanan", + "gender": "female", + "age": 53, + "address": { + "state": "Wisconsin", + "city": "Strykersville" + } + }, + { + "id": 4923, + "name": "Frost Holcomb", + "gender": "male", + "age": 55, + "address": { + "state": "Arizona", + "city": "Maury" + } + }, + { + "id": 4924, + "name": "Good Thornton", + "gender": "male", + "age": 64, + "address": { + "state": "Montana", + "city": "Kanauga" + } + }, + { + "id": 4925, + "name": "Mara Sweeney", + "gender": "female", + "age": 20, + "address": { + "state": "South Carolina", + "city": "Mulino" + } + }, + { + "id": 4926, + "name": "Jocelyn Stewart", + "gender": "female", + "age": 71, + "address": { + "state": "Maryland", + "city": "Convent" + } + }, + { + "id": 4927, + "name": "Bonita Stafford", + "gender": "female", + "age": 33, + "address": { + "state": "Tennessee", + "city": "Cowiche" + } + }, + { + "id": 4928, + "name": "Taylor Fisher", + "gender": "female", + "age": 78, + "address": { + "state": "Missouri", + "city": "Concho" + } + }, + { + "id": 4929, + "name": "Beatriz White", + "gender": "female", + "age": 46, + "address": { + "state": "Pennsylvania", + "city": "Mathews" + } + }, + { + "id": 4930, + "name": "Delaney Morgan", + "gender": "male", + "age": 43, + "address": { + "state": "West Virginia", + "city": "Harviell" + } + }, + { + "id": 4931, + "name": "Woods Snyder", + "gender": "male", + "age": 28, + "address": { + "state": "South Dakota", + "city": "Wedgewood" + } + }, + { + "id": 4932, + "name": "Clara Lamb", + "gender": "female", + "age": 76, + "address": { + "state": "Kansas", + "city": "Itmann" + } + }, + { + "id": 4933, + "name": "Charlotte Cameron", + "gender": "female", + "age": 54, + "address": { + "state": "Iowa", + "city": "Navarre" + } + }, + { + "id": 4934, + "name": "Tricia Joyce", + "gender": "female", + "age": 82, + "address": { + "state": "Louisiana", + "city": "Greenock" + } + }, + { + "id": 4935, + "name": "Mariana Pierce", + "gender": "female", + "age": 52, + "address": { + "state": "Indiana", + "city": "Durham" + } + }, + { + "id": 4936, + "name": "Aileen Head", + "gender": "female", + "age": 82, + "address": { + "state": "Alaska", + "city": "Wauhillau" + } + }, + { + "id": 4937, + "name": "Watson Bridges", + "gender": "male", + "age": 56, + "address": { + "state": "Arkansas", + "city": "Ripley" + } + }, + { + "id": 4938, + "name": "Fanny Stanton", + "gender": "female", + "age": 18, + "address": { + "state": "Georgia", + "city": "Williston" + } + }, + { + "id": 4939, + "name": "Lloyd Zamora", + "gender": "male", + "age": 29, + "address": { + "state": "Vermont", + "city": "Stouchsburg" + } + }, + { + "id": 4940, + "name": "Julie Emerson", + "gender": "female", + "age": 69, + "address": { + "state": "Ohio", + "city": "Reinerton" + } + }, + { + "id": 4941, + "name": "Cathleen Gilliam", + "gender": "female", + "age": 22, + "address": { + "state": "Utah", + "city": "Shindler" + } + }, + { + "id": 4942, + "name": "Dickerson Monroe", + "gender": "male", + "age": 21, + "address": { + "state": "New Hampshire", + "city": "Slovan" + } + }, + { + "id": 4943, + "name": "Stewart Lawrence", + "gender": "male", + "age": 20, + "address": { + "state": "Rhode Island", + "city": "Brookfield" + } + }, + { + "id": 4944, + "name": "Mann Estes", + "gender": "male", + "age": 22, + "address": { + "state": "Connecticut", + "city": "Ironton" + } + }, + { + "id": 4945, + "name": "Danielle Knowles", + "gender": "female", + "age": 47, + "address": { + "state": "Oklahoma", + "city": "Henrietta" + } + }, + { + "id": 4946, + "name": "Everett Hancock", + "gender": "male", + "age": 67, + "address": { + "state": "Oregon", + "city": "Edmund" + } + }, + { + "id": 4947, + "name": "Haney Mayo", + "gender": "male", + "age": 80, + "address": { + "state": "North Carolina", + "city": "Wanamie" + } + }, + { + "id": 4948, + "name": "Lindsey Pickett", + "gender": "female", + "age": 50, + "address": { + "state": "Hawaii", + "city": "Joes" + } + }, + { + "id": 4949, + "name": "Imogene Hartman", + "gender": "female", + "age": 79, + "address": { + "state": "Ohio", + "city": "Kimmell" + } + }, + { + "id": 4950, + "name": "Gretchen Jimenez", + "gender": "female", + "age": 73, + "address": { + "state": "Oregon", + "city": "Albrightsville" + } + }, + { + "id": 4951, + "name": "Savage Blair", + "gender": "male", + "age": 32, + "address": { + "state": "Nevada", + "city": "Saranap" + } + }, + { + "id": 4952, + "name": "Kimberley Bender", + "gender": "female", + "age": 49, + "address": { + "state": "California", + "city": "Homeworth" + } + }, + { + "id": 4953, + "name": "Elena Cain", + "gender": "female", + "age": 45, + "address": { + "state": "Kansas", + "city": "Unionville" + } + }, + { + "id": 4954, + "name": "Keller Ochoa", + "gender": "male", + "age": 80, + "address": { + "state": "Nebraska", + "city": "Kiskimere" + } + }, + { + "id": 4955, + "name": "Rasmussen Clemons", + "gender": "male", + "age": 81, + "address": { + "state": "Rhode Island", + "city": "Watrous" + } + }, + { + "id": 4956, + "name": "Nguyen Santiago", + "gender": "male", + "age": 26, + "address": { + "state": "Arkansas", + "city": "Northridge" + } + }, + { + "id": 4957, + "name": "Blake Gamble", + "gender": "male", + "age": 53, + "address": { + "state": "Montana", + "city": "Belmont" + } + }, + { + "id": 4958, + "name": "Polly Mathews", + "gender": "female", + "age": 35, + "address": { + "state": "South Dakota", + "city": "Iberia" + } + }, + { + "id": 4959, + "name": "Mai Young", + "gender": "female", + "age": 32, + "address": { + "state": "Hawaii", + "city": "Chical" + } + }, + { + "id": 4960, + "name": "Rivera Terrell", + "gender": "male", + "age": 25, + "address": { + "state": "Kentucky", + "city": "Bentonville" + } + }, + { + "id": 4961, + "name": "Barr Fletcher", + "gender": "male", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Cornucopia" + } + }, + { + "id": 4962, + "name": "Nelson Gilliam", + "gender": "male", + "age": 46, + "address": { + "state": "Indiana", + "city": "Emory" + } + }, + { + "id": 4963, + "name": "Henrietta Woods", + "gender": "female", + "age": 30, + "address": { + "state": "Washington", + "city": "Austinburg" + } + }, + { + "id": 4964, + "name": "Twila Langley", + "gender": "female", + "age": 54, + "address": { + "state": "Idaho", + "city": "Chaparrito" + } + }, + { + "id": 4965, + "name": "Shelton Moody", + "gender": "male", + "age": 59, + "address": { + "state": "Pennsylvania", + "city": "Wyoming" + } + }, + { + "id": 4966, + "name": "Catherine Vang", + "gender": "female", + "age": 79, + "address": { + "state": "Illinois", + "city": "Sutton" + } + }, + { + "id": 4967, + "name": "Gould Collier", + "gender": "male", + "age": 49, + "address": { + "state": "New York", + "city": "Albany" + } + }, + { + "id": 4968, + "name": "Megan Jennings", + "gender": "female", + "age": 39, + "address": { + "state": "Mississippi", + "city": "Oneida" + } + }, + { + "id": 4969, + "name": "Morrison Nunez", + "gender": "male", + "age": 80, + "address": { + "state": "Iowa", + "city": "Lawrence" + } + }, + { + "id": 4970, + "name": "Washington Stafford", + "gender": "male", + "age": 61, + "address": { + "state": "Delaware", + "city": "Clinton" + } + }, + { + "id": 4971, + "name": "Mcclure Wright", + "gender": "male", + "age": 47, + "address": { + "state": "Wyoming", + "city": "Hegins" + } + }, + { + "id": 4972, + "name": "Mcleod Sims", + "gender": "male", + "age": 35, + "address": { + "state": "New Hampshire", + "city": "Greenfields" + } + }, + { + "id": 4973, + "name": "Paulette Scott", + "gender": "female", + "age": 60, + "address": { + "state": "Maine", + "city": "Loveland" + } + }, + { + "id": 4974, + "name": "Cline Wolf", + "gender": "male", + "age": 76, + "address": { + "state": "Connecticut", + "city": "Windsor" + } + }, + { + "id": 4975, + "name": "Irwin Cox", + "gender": "male", + "age": 36, + "address": { + "state": "Oklahoma", + "city": "Konterra" + } + }, + { + "id": 4976, + "name": "Mathews Pacheco", + "gender": "male", + "age": 38, + "address": { + "state": "Missouri", + "city": "National" + } + }, + { + "id": 4977, + "name": "Iva Gallagher", + "gender": "female", + "age": 18, + "address": { + "state": "West Virginia", + "city": "Connerton" + } + }, + { + "id": 4978, + "name": "Stephenson Bradshaw", + "gender": "male", + "age": 35, + "address": { + "state": "Colorado", + "city": "Keyport" + } + }, + { + "id": 4979, + "name": "Aline Mejia", + "gender": "female", + "age": 75, + "address": { + "state": "Texas", + "city": "Bradenville" + } + }, + { + "id": 4980, + "name": "Daniel Farley", + "gender": "male", + "age": 33, + "address": { + "state": "Alabama", + "city": "Hatteras" + } + }, + { + "id": 4981, + "name": "Vaughan Ball", + "gender": "male", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Roulette" + } + }, + { + "id": 4982, + "name": "Rita Freeman", + "gender": "female", + "age": 52, + "address": { + "state": "Alaska", + "city": "Stollings" + } + }, + { + "id": 4983, + "name": "Mccall Farrell", + "gender": "male", + "age": 81, + "address": { + "state": "Utah", + "city": "Caroline" + } + }, + { + "id": 4984, + "name": "Alissa Goodman", + "gender": "female", + "age": 82, + "address": { + "state": "Arizona", + "city": "Dubois" + } + }, + { + "id": 4985, + "name": "Branch Nieves", + "gender": "male", + "age": 40, + "address": { + "state": "Georgia", + "city": "Greenock" + } + }, + { + "id": 4986, + "name": "Chasity Andrews", + "gender": "female", + "age": 78, + "address": { + "state": "Florida", + "city": "Fedora" + } + }, + { + "id": 4987, + "name": "Ollie Hardy", + "gender": "female", + "age": 42, + "address": { + "state": "Virginia", + "city": "Shasta" + } + }, + { + "id": 4988, + "name": "Noel Lambert", + "gender": "male", + "age": 59, + "address": { + "state": "Michigan", + "city": "Muse" + } + }, + { + "id": 4989, + "name": "Torres Mcgowan", + "gender": "male", + "age": 27, + "address": { + "state": "Tennessee", + "city": "Nescatunga" + } + }, + { + "id": 4990, + "name": "Nicholson Mcclain", + "gender": "male", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Bourg" + } + }, + { + "id": 4991, + "name": "Allison Whitfield", + "gender": "female", + "age": 22, + "address": { + "state": "Vermont", + "city": "Sardis" + } + }, + { + "id": 4992, + "name": "Kathrine Lamb", + "gender": "female", + "age": 48, + "address": { + "state": "South Carolina", + "city": "Orick" + } + }, + { + "id": 4993, + "name": "Mckee Goodwin", + "gender": "male", + "age": 60, + "address": { + "state": "New Jersey", + "city": "Wheatfields" + } + }, + { + "id": 4994, + "name": "Callie Boyle", + "gender": "female", + "age": 75, + "address": { + "state": "Wisconsin", + "city": "Ypsilanti" + } + }, + { + "id": 4995, + "name": "Farmer Garner", + "gender": "male", + "age": 71, + "address": { + "state": "North Carolina", + "city": "Columbus" + } + }, + { + "id": 4996, + "name": "Serrano Justice", + "gender": "male", + "age": 25, + "address": { + "state": "Massachusetts", + "city": "Glenville" + } + }, + { + "id": 4997, + "name": "Horne Curry", + "gender": "male", + "age": 19, + "address": { + "state": "Maryland", + "city": "Volta" + } + }, + { + "id": 4998, + "name": "Michelle Gentry", + "gender": "female", + "age": 72, + "address": { + "state": "Delaware", + "city": "Wolcott" + } + }, + { + "id": 4999, + "name": "Odom Kelly", + "gender": "male", + "age": 68, + "address": { + "state": "Pennsylvania", + "city": "Beechmont" + } + }, + { + "id": 5000, + "name": "Martinez Duran", + "gender": "male", + "age": 67, + "address": { + "state": "Wisconsin", + "city": "Wawona" + } + }, + { + "id": 5001, + "name": "Terry Pate", + "gender": "female", + "age": 48, + "address": { + "state": "Indiana", + "city": "Germanton" + } + }, + { + "id": 5002, + "name": "Araceli Puckett", + "gender": "female", + "age": 64, + "address": { + "state": "South Carolina", + "city": "Retsof" + } + }, + { + "id": 5003, + "name": "Evans Christensen", + "gender": "male", + "age": 63, + "address": { + "state": "Minnesota", + "city": "Sultana" + } + }, + { + "id": 5004, + "name": "Payne Booker", + "gender": "male", + "age": 62, + "address": { + "state": "Missouri", + "city": "Wollochet" + } + }, + { + "id": 5005, + "name": "Gay Mcconnell", + "gender": "male", + "age": 52, + "address": { + "state": "Rhode Island", + "city": "Veguita" + } + }, + { + "id": 5006, + "name": "Alyssa Simon", + "gender": "female", + "age": 77, + "address": { + "state": "Colorado", + "city": "Bergoo" + } + }, + { + "id": 5007, + "name": "Lillian Chan", + "gender": "female", + "age": 60, + "address": { + "state": "Mississippi", + "city": "Magnolia" + } + }, + { + "id": 5008, + "name": "Miranda Davenport", + "gender": "female", + "age": 48, + "address": { + "state": "Maine", + "city": "Mathews" + } + }, + { + "id": 5009, + "name": "Betsy Montoya", + "gender": "female", + "age": 46, + "address": { + "state": "Hawaii", + "city": "Alden" + } + }, + { + "id": 5010, + "name": "Ila Knapp", + "gender": "female", + "age": 38, + "address": { + "state": "Arizona", + "city": "Genoa" + } + }, + { + "id": 5011, + "name": "Suzanne Wynn", + "gender": "female", + "age": 80, + "address": { + "state": "Texas", + "city": "Kenvil" + } + }, + { + "id": 5012, + "name": "Simon Stanton", + "gender": "male", + "age": 66, + "address": { + "state": "Florida", + "city": "Allensworth" + } + }, + { + "id": 5013, + "name": "Aimee Scott", + "gender": "female", + "age": 73, + "address": { + "state": "New Jersey", + "city": "Dellview" + } + }, + { + "id": 5014, + "name": "Freida Valencia", + "gender": "female", + "age": 27, + "address": { + "state": "Maryland", + "city": "Iberia" + } + }, + { + "id": 5015, + "name": "Melanie Haley", + "gender": "female", + "age": 44, + "address": { + "state": "West Virginia", + "city": "Norwood" + } + }, + { + "id": 5016, + "name": "Nadia Morin", + "gender": "female", + "age": 55, + "address": { + "state": "North Carolina", + "city": "Coloma" + } + }, + { + "id": 5017, + "name": "Casey Peck", + "gender": "female", + "age": 54, + "address": { + "state": "Iowa", + "city": "Gloucester" + } + }, + { + "id": 5018, + "name": "Merle Cole", + "gender": "female", + "age": 23, + "address": { + "state": "Illinois", + "city": "Freetown" + } + }, + { + "id": 5019, + "name": "Curtis Guthrie", + "gender": "male", + "age": 41, + "address": { + "state": "South Dakota", + "city": "Slovan" + } + }, + { + "id": 5020, + "name": "Oneal Garrison", + "gender": "male", + "age": 81, + "address": { + "state": "Oregon", + "city": "Vivian" + } + }, + { + "id": 5021, + "name": "Juliana Butler", + "gender": "female", + "age": 51, + "address": { + "state": "Idaho", + "city": "Greenbackville" + } + }, + { + "id": 5022, + "name": "Earline Mays", + "gender": "female", + "age": 53, + "address": { + "state": "California", + "city": "Tedrow" + } + }, + { + "id": 5023, + "name": "Cox Merritt", + "gender": "male", + "age": 79, + "address": { + "state": "New York", + "city": "Biddle" + } + }, + { + "id": 5024, + "name": "Schwartz Graham", + "gender": "male", + "age": 43, + "address": { + "state": "New Hampshire", + "city": "Spokane" + } + }, + { + "id": 5025, + "name": "Natalia Myers", + "gender": "female", + "age": 53, + "address": { + "state": "Ohio", + "city": "Dixie" + } + }, + { + "id": 5026, + "name": "Sherri Gillespie", + "gender": "female", + "age": 45, + "address": { + "state": "Utah", + "city": "Riner" + } + }, + { + "id": 5027, + "name": "Traci Collins", + "gender": "female", + "age": 67, + "address": { + "state": "Virginia", + "city": "Watchtower" + } + }, + { + "id": 5028, + "name": "West Glenn", + "gender": "male", + "age": 70, + "address": { + "state": "Georgia", + "city": "Woodlake" + } + }, + { + "id": 5029, + "name": "Nannie Blackburn", + "gender": "female", + "age": 75, + "address": { + "state": "Washington", + "city": "Cumminsville" + } + }, + { + "id": 5030, + "name": "Leigh Brewer", + "gender": "female", + "age": 37, + "address": { + "state": "Michigan", + "city": "Zortman" + } + }, + { + "id": 5031, + "name": "Vance Riddle", + "gender": "male", + "age": 66, + "address": { + "state": "Louisiana", + "city": "Ferney" + } + }, + { + "id": 5032, + "name": "Lara Terrell", + "gender": "female", + "age": 18, + "address": { + "state": "Alaska", + "city": "Ebro" + } + }, + { + "id": 5033, + "name": "Lee Blair", + "gender": "male", + "age": 79, + "address": { + "state": "Montana", + "city": "Bartley" + } + }, + { + "id": 5034, + "name": "Blackburn Montgomery", + "gender": "male", + "age": 49, + "address": { + "state": "Nevada", + "city": "Brambleton" + } + }, + { + "id": 5035, + "name": "Esperanza Robertson", + "gender": "female", + "age": 40, + "address": { + "state": "Wyoming", + "city": "Worton" + } + }, + { + "id": 5036, + "name": "Chase Shields", + "gender": "male", + "age": 65, + "address": { + "state": "Connecticut", + "city": "Clinton" + } + }, + { + "id": 5037, + "name": "Mavis Oneill", + "gender": "female", + "age": 52, + "address": { + "state": "Vermont", + "city": "Dennard" + } + }, + { + "id": 5038, + "name": "Conner Rasmussen", + "gender": "male", + "age": 42, + "address": { + "state": "Oklahoma", + "city": "Hannasville" + } + }, + { + "id": 5039, + "name": "Morrison Hebert", + "gender": "male", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Newkirk" + } + }, + { + "id": 5040, + "name": "Ratliff Kerr", + "gender": "male", + "age": 23, + "address": { + "state": "New Mexico", + "city": "Venice" + } + }, + { + "id": 5041, + "name": "House Chandler", + "gender": "male", + "age": 42, + "address": { + "state": "Kansas", + "city": "Finzel" + } + }, + { + "id": 5042, + "name": "Ashlee Small", + "gender": "female", + "age": 82, + "address": { + "state": "North Dakota", + "city": "Benson" + } + }, + { + "id": 5043, + "name": "Faye Davis", + "gender": "female", + "age": 27, + "address": { + "state": "Alabama", + "city": "Roulette" + } + }, + { + "id": 5044, + "name": "Hebert Clarke", + "gender": "male", + "age": 72, + "address": { + "state": "Arkansas", + "city": "Nipinnawasee" + } + }, + { + "id": 5045, + "name": "Dolores Mcguire", + "gender": "female", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Jamestown" + } + }, + { + "id": 5046, + "name": "Oneill Macias", + "gender": "male", + "age": 56, + "address": { + "state": "Tennessee", + "city": "Garfield" + } + }, + { + "id": 5047, + "name": "Blanche Orr", + "gender": "female", + "age": 24, + "address": { + "state": "Wyoming", + "city": "Goodville" + } + }, + { + "id": 5048, + "name": "Gilmore French", + "gender": "male", + "age": 55, + "address": { + "state": "Georgia", + "city": "Oceola" + } + }, + { + "id": 5049, + "name": "Chavez Jimenez", + "gender": "male", + "age": 80, + "address": { + "state": "Maine", + "city": "Tyhee" + } + }, + { + "id": 5050, + "name": "Eunice Andrews", + "gender": "female", + "age": 35, + "address": { + "state": "Nebraska", + "city": "Elliston" + } + }, + { + "id": 5051, + "name": "Atkins Vincent", + "gender": "male", + "age": 80, + "address": { + "state": "Delaware", + "city": "Ogema" + } + }, + { + "id": 5052, + "name": "Massey Combs", + "gender": "male", + "age": 26, + "address": { + "state": "Rhode Island", + "city": "Rodman" + } + }, + { + "id": 5053, + "name": "Vega Nielsen", + "gender": "male", + "age": 26, + "address": { + "state": "Texas", + "city": "Kipp" + } + }, + { + "id": 5054, + "name": "Rowe Roach", + "gender": "male", + "age": 63, + "address": { + "state": "South Dakota", + "city": "Orviston" + } + }, + { + "id": 5055, + "name": "Mccarthy Myers", + "gender": "male", + "age": 38, + "address": { + "state": "Illinois", + "city": "Conway" + } + }, + { + "id": 5056, + "name": "Jennings Flynn", + "gender": "male", + "age": 70, + "address": { + "state": "Hawaii", + "city": "Albany" + } + }, + { + "id": 5057, + "name": "Sandra Matthews", + "gender": "female", + "age": 68, + "address": { + "state": "Florida", + "city": "Mammoth" + } + }, + { + "id": 5058, + "name": "Peck Woodward", + "gender": "male", + "age": 29, + "address": { + "state": "North Carolina", + "city": "Greensburg" + } + }, + { + "id": 5059, + "name": "Dionne Gill", + "gender": "female", + "age": 75, + "address": { + "state": "Massachusetts", + "city": "Trail" + } + }, + { + "id": 5060, + "name": "Elisa Simpson", + "gender": "female", + "age": 75, + "address": { + "state": "Oregon", + "city": "Haena" + } + }, + { + "id": 5061, + "name": "Minerva Huff", + "gender": "female", + "age": 28, + "address": { + "state": "North Dakota", + "city": "Canterwood" + } + }, + { + "id": 5062, + "name": "Susana Sloan", + "gender": "female", + "age": 65, + "address": { + "state": "Mississippi", + "city": "Maxville" + } + }, + { + "id": 5063, + "name": "Terry Brown", + "gender": "female", + "age": 60, + "address": { + "state": "Nevada", + "city": "Statenville" + } + }, + { + "id": 5064, + "name": "Carrillo Grant", + "gender": "male", + "age": 58, + "address": { + "state": "Pennsylvania", + "city": "Garnet" + } + }, + { + "id": 5065, + "name": "Howard Wilkinson", + "gender": "male", + "age": 75, + "address": { + "state": "New York", + "city": "Marne" + } + }, + { + "id": 5066, + "name": "Richards Hernandez", + "gender": "male", + "age": 79, + "address": { + "state": "Wisconsin", + "city": "Advance" + } + }, + { + "id": 5067, + "name": "Millicent Dickerson", + "gender": "female", + "age": 72, + "address": { + "state": "Louisiana", + "city": "Nettie" + } + }, + { + "id": 5068, + "name": "Kate Benton", + "gender": "female", + "age": 79, + "address": { + "state": "South Carolina", + "city": "Summertown" + } + }, + { + "id": 5069, + "name": "Rojas Ward", + "gender": "male", + "age": 58, + "address": { + "state": "Kentucky", + "city": "Biddle" + } + }, + { + "id": 5070, + "name": "Bessie Branch", + "gender": "female", + "age": 50, + "address": { + "state": "Tennessee", + "city": "Abiquiu" + } + }, + { + "id": 5071, + "name": "April Noel", + "gender": "female", + "age": 63, + "address": { + "state": "Utah", + "city": "Noxen" + } + }, + { + "id": 5072, + "name": "Bonnie Baxter", + "gender": "female", + "age": 20, + "address": { + "state": "Idaho", + "city": "Marenisco" + } + }, + { + "id": 5073, + "name": "Carolina Acosta", + "gender": "female", + "age": 63, + "address": { + "state": "Connecticut", + "city": "Fingerville" + } + }, + { + "id": 5074, + "name": "Katina Buckley", + "gender": "female", + "age": 37, + "address": { + "state": "Virginia", + "city": "Ada" + } + }, + { + "id": 5075, + "name": "Estrada Barrett", + "gender": "male", + "age": 18, + "address": { + "state": "Kansas", + "city": "Edneyville" + } + }, + { + "id": 5076, + "name": "Kane Tran", + "gender": "male", + "age": 72, + "address": { + "state": "Arizona", + "city": "Cawood" + } + }, + { + "id": 5077, + "name": "Christina Riddle", + "gender": "female", + "age": 65, + "address": { + "state": "New Mexico", + "city": "Camas" + } + }, + { + "id": 5078, + "name": "Winifred Parks", + "gender": "female", + "age": 31, + "address": { + "state": "Missouri", + "city": "Dunnavant" + } + }, + { + "id": 5079, + "name": "Tania Marshall", + "gender": "female", + "age": 72, + "address": { + "state": "Iowa", + "city": "Ladera" + } + }, + { + "id": 5080, + "name": "Ivy Valentine", + "gender": "female", + "age": 63, + "address": { + "state": "Vermont", + "city": "Kohatk" + } + }, + { + "id": 5081, + "name": "Mooney Huber", + "gender": "male", + "age": 67, + "address": { + "state": "Washington", + "city": "Galesville" + } + }, + { + "id": 5082, + "name": "Marissa Tanner", + "gender": "female", + "age": 66, + "address": { + "state": "Oklahoma", + "city": "Slovan" + } + }, + { + "id": 5083, + "name": "Clayton Wright", + "gender": "male", + "age": 26, + "address": { + "state": "Maryland", + "city": "Waterloo" + } + }, + { + "id": 5084, + "name": "Lynette Bowen", + "gender": "female", + "age": 70, + "address": { + "state": "Michigan", + "city": "Rosine" + } + }, + { + "id": 5085, + "name": "Mcbride Fleming", + "gender": "male", + "age": 35, + "address": { + "state": "New Hampshire", + "city": "Chloride" + } + }, + { + "id": 5086, + "name": "Lawanda Rose", + "gender": "female", + "age": 51, + "address": { + "state": "Indiana", + "city": "Robbins" + } + }, + { + "id": 5087, + "name": "Aisha Webb", + "gender": "female", + "age": 75, + "address": { + "state": "Montana", + "city": "Broadlands" + } + }, + { + "id": 5088, + "name": "Stacey Fuentes", + "gender": "female", + "age": 18, + "address": { + "state": "Arkansas", + "city": "Bannock" + } + }, + { + "id": 5089, + "name": "Sue Downs", + "gender": "female", + "age": 19, + "address": { + "state": "New Jersey", + "city": "Blende" + } + }, + { + "id": 5090, + "name": "Carmela Pierce", + "gender": "female", + "age": 18, + "address": { + "state": "West Virginia", + "city": "Lavalette" + } + }, + { + "id": 5091, + "name": "Constance Willis", + "gender": "female", + "age": 82, + "address": { + "state": "California", + "city": "Nadine" + } + }, + { + "id": 5092, + "name": "Darcy Dotson", + "gender": "female", + "age": 55, + "address": { + "state": "Alabama", + "city": "Greenwich" + } + }, + { + "id": 5093, + "name": "Julianne Holder", + "gender": "female", + "age": 39, + "address": { + "state": "Ohio", + "city": "Beechmont" + } + }, + { + "id": 5094, + "name": "Cynthia Mejia", + "gender": "female", + "age": 71, + "address": { + "state": "Minnesota", + "city": "Valle" + } + }, + { + "id": 5095, + "name": "Kristi Irwin", + "gender": "female", + "age": 21, + "address": { + "state": "Alaska", + "city": "Katonah" + } + }, + { + "id": 5096, + "name": "Herrera Kemp", + "gender": "male", + "age": 70, + "address": { + "state": "California", + "city": "Fostoria" + } + }, + { + "id": 5097, + "name": "Sexton Hurley", + "gender": "male", + "age": 35, + "address": { + "state": "Colorado", + "city": "Fairacres" + } + }, + { + "id": 5098, + "name": "Vonda Faulkner", + "gender": "female", + "age": 63, + "address": { + "state": "Maine", + "city": "Swartzville" + } + }, + { + "id": 5099, + "name": "Leonor Lynn", + "gender": "female", + "age": 49, + "address": { + "state": "Michigan", + "city": "Tuskahoma" + } + }, + { + "id": 5100, + "name": "Madeleine Mclaughlin", + "gender": "female", + "age": 63, + "address": { + "state": "Maryland", + "city": "Norfolk" + } + }, + { + "id": 5101, + "name": "Armstrong Gomez", + "gender": "male", + "age": 18, + "address": { + "state": "Mississippi", + "city": "Klondike" + } + }, + { + "id": 5102, + "name": "Alvarado Hoover", + "gender": "male", + "age": 59, + "address": { + "state": "Virginia", + "city": "Westwood" + } + }, + { + "id": 5103, + "name": "Britt Marsh", + "gender": "male", + "age": 23, + "address": { + "state": "North Dakota", + "city": "Forbestown" + } + }, + { + "id": 5104, + "name": "Helene William", + "gender": "female", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Ladera" + } + }, + { + "id": 5105, + "name": "Jacqueline Carter", + "gender": "female", + "age": 20, + "address": { + "state": "South Carolina", + "city": "Emerald" + } + }, + { + "id": 5106, + "name": "Kelley Allen", + "gender": "female", + "age": 59, + "address": { + "state": "Connecticut", + "city": "Tolu" + } + }, + { + "id": 5107, + "name": "Laura Collier", + "gender": "female", + "age": 22, + "address": { + "state": "Illinois", + "city": "Germanton" + } + }, + { + "id": 5108, + "name": "Buckley Parrish", + "gender": "male", + "age": 36, + "address": { + "state": "Kentucky", + "city": "Freeburn" + } + }, + { + "id": 5109, + "name": "Fry Hunt", + "gender": "male", + "age": 55, + "address": { + "state": "Delaware", + "city": "Nelson" + } + }, + { + "id": 5110, + "name": "Casey Booker", + "gender": "female", + "age": 17, + "address": { + "state": "New Mexico", + "city": "Flintville" + } + }, + { + "id": 5111, + "name": "Stark Charles", + "gender": "male", + "age": 21, + "address": { + "state": "Alaska", + "city": "Chase" + } + }, + { + "id": 5112, + "name": "Christensen Mercer", + "gender": "male", + "age": 19, + "address": { + "state": "Idaho", + "city": "Wawona" + } + }, + { + "id": 5113, + "name": "Silva Shannon", + "gender": "male", + "age": 66, + "address": { + "state": "Arizona", + "city": "Fulford" + } + }, + { + "id": 5114, + "name": "Pierce Alston", + "gender": "male", + "age": 61, + "address": { + "state": "Oklahoma", + "city": "Wadsworth" + } + }, + { + "id": 5115, + "name": "Mendoza Maynard", + "gender": "male", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Statenville" + } + }, + { + "id": 5116, + "name": "Jannie Jordan", + "gender": "female", + "age": 57, + "address": { + "state": "Nevada", + "city": "Hiseville" + } + }, + { + "id": 5117, + "name": "Kayla Crosby", + "gender": "female", + "age": 45, + "address": { + "state": "North Carolina", + "city": "Enetai" + } + }, + { + "id": 5118, + "name": "Addie Solomon", + "gender": "female", + "age": 23, + "address": { + "state": "Vermont", + "city": "Hessville" + } + }, + { + "id": 5119, + "name": "Ferguson Levine", + "gender": "male", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Foxworth" + } + }, + { + "id": 5120, + "name": "Cain Kline", + "gender": "male", + "age": 74, + "address": { + "state": "South Dakota", + "city": "Harleigh" + } + }, + { + "id": 5121, + "name": "Hancock Hernandez", + "gender": "male", + "age": 31, + "address": { + "state": "Missouri", + "city": "Jenkinsville" + } + }, + { + "id": 5122, + "name": "Rosalinda Ashley", + "gender": "female", + "age": 73, + "address": { + "state": "Texas", + "city": "Tampico" + } + }, + { + "id": 5123, + "name": "Ester Chapman", + "gender": "female", + "age": 54, + "address": { + "state": "Louisiana", + "city": "Sandston" + } + }, + { + "id": 5124, + "name": "Bowen Mcgowan", + "gender": "male", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Ellerslie" + } + }, + { + "id": 5125, + "name": "Alma Deleon", + "gender": "female", + "age": 17, + "address": { + "state": "Ohio", + "city": "Laurelton" + } + }, + { + "id": 5126, + "name": "Mcdonald Cummings", + "gender": "male", + "age": 34, + "address": { + "state": "Utah", + "city": "Stockdale" + } + }, + { + "id": 5127, + "name": "Small Morin", + "gender": "male", + "age": 18, + "address": { + "state": "West Virginia", + "city": "Konterra" + } + }, + { + "id": 5128, + "name": "Puckett Craft", + "gender": "male", + "age": 57, + "address": { + "state": "Iowa", + "city": "Crumpler" + } + }, + { + "id": 5129, + "name": "Angelia Avila", + "gender": "female", + "age": 71, + "address": { + "state": "Oregon", + "city": "Bannock" + } + }, + { + "id": 5130, + "name": "Melanie Wilson", + "gender": "female", + "age": 58, + "address": { + "state": "Montana", + "city": "Dola" + } + }, + { + "id": 5131, + "name": "William Lyons", + "gender": "male", + "age": 72, + "address": { + "state": "Wyoming", + "city": "Allison" + } + }, + { + "id": 5132, + "name": "Pitts Bowen", + "gender": "male", + "age": 27, + "address": { + "state": "Tennessee", + "city": "Boling" + } + }, + { + "id": 5133, + "name": "Rush Herring", + "gender": "male", + "age": 21, + "address": { + "state": "Indiana", + "city": "Terlingua" + } + }, + { + "id": 5134, + "name": "Bernadine Blackburn", + "gender": "female", + "age": 82, + "address": { + "state": "Florida", + "city": "Freelandville" + } + }, + { + "id": 5135, + "name": "Pearlie Nieves", + "gender": "female", + "age": 79, + "address": { + "state": "Kansas", + "city": "Dorneyville" + } + }, + { + "id": 5136, + "name": "Tracie Padilla", + "gender": "female", + "age": 74, + "address": { + "state": "Pennsylvania", + "city": "Cascades" + } + }, + { + "id": 5137, + "name": "Workman Leonard", + "gender": "male", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Geyserville" + } + }, + { + "id": 5138, + "name": "Mcintosh Cain", + "gender": "male", + "age": 22, + "address": { + "state": "New Hampshire", + "city": "Deltaville" + } + }, + { + "id": 5139, + "name": "Jones Richardson", + "gender": "male", + "age": 37, + "address": { + "state": "Alabama", + "city": "Dupuyer" + } + }, + { + "id": 5140, + "name": "Scott Huber", + "gender": "male", + "age": 74, + "address": { + "state": "Hawaii", + "city": "Vienna" + } + }, + { + "id": 5141, + "name": "Eliza Anthony", + "gender": "female", + "age": 47, + "address": { + "state": "Massachusetts", + "city": "Homeland" + } + }, + { + "id": 5142, + "name": "Margie Mccarthy", + "gender": "female", + "age": 21, + "address": { + "state": "New York", + "city": "Forestburg" + } + }, + { + "id": 5143, + "name": "Thornton Lee", + "gender": "male", + "age": 63, + "address": { + "state": "Minnesota", + "city": "Ironton" + } + }, + { + "id": 5144, + "name": "Morgan Rivers", + "gender": "female", + "age": 69, + "address": { + "state": "Washington", + "city": "Clayville" + } + }, + { + "id": 5145, + "name": "Casandra Farmer", + "gender": "female", + "age": 44, + "address": { + "state": "Kentucky", + "city": "Dunlo" + } + }, + { + "id": 5146, + "name": "Helena Knox", + "gender": "female", + "age": 47, + "address": { + "state": "Kansas", + "city": "Woodlands" + } + }, + { + "id": 5147, + "name": "Hewitt Britt", + "gender": "male", + "age": 55, + "address": { + "state": "Hawaii", + "city": "Wyano" + } + }, + { + "id": 5148, + "name": "Emilia Keller", + "gender": "female", + "age": 19, + "address": { + "state": "Texas", + "city": "Malott" + } + }, + { + "id": 5149, + "name": "Gardner Avila", + "gender": "male", + "age": 26, + "address": { + "state": "Minnesota", + "city": "Vandiver" + } + }, + { + "id": 5150, + "name": "Meyer Gilbert", + "gender": "male", + "age": 64, + "address": { + "state": "Vermont", + "city": "Carlos" + } + }, + { + "id": 5151, + "name": "Marks Garrison", + "gender": "male", + "age": 79, + "address": { + "state": "Utah", + "city": "Idledale" + } + }, + { + "id": 5152, + "name": "Priscilla Bradford", + "gender": "female", + "age": 58, + "address": { + "state": "Mississippi", + "city": "Cliff" + } + }, + { + "id": 5153, + "name": "Camille Kelley", + "gender": "female", + "age": 80, + "address": { + "state": "Massachusetts", + "city": "Caroline" + } + }, + { + "id": 5154, + "name": "Rosalinda Meadows", + "gender": "female", + "age": 47, + "address": { + "state": "Arizona", + "city": "Berlin" + } + }, + { + "id": 5155, + "name": "Trina Hayes", + "gender": "female", + "age": 28, + "address": { + "state": "Michigan", + "city": "Kennedyville" + } + }, + { + "id": 5156, + "name": "Leah Weiss", + "gender": "female", + "age": 31, + "address": { + "state": "Maine", + "city": "Belleview" + } + }, + { + "id": 5157, + "name": "Delores Hines", + "gender": "female", + "age": 80, + "address": { + "state": "South Dakota", + "city": "Kansas" + } + }, + { + "id": 5158, + "name": "Robert Giles", + "gender": "female", + "age": 17, + "address": { + "state": "Montana", + "city": "Wintersburg" + } + }, + { + "id": 5159, + "name": "Drake Ruiz", + "gender": "male", + "age": 34, + "address": { + "state": "Washington", + "city": "Homeland" + } + }, + { + "id": 5160, + "name": "Fitzgerald Conway", + "gender": "male", + "age": 64, + "address": { + "state": "North Dakota", + "city": "Catharine" + } + }, + { + "id": 5161, + "name": "Wilder Horn", + "gender": "male", + "age": 28, + "address": { + "state": "Maryland", + "city": "Wauhillau" + } + }, + { + "id": 5162, + "name": "Sloan Brewer", + "gender": "male", + "age": 76, + "address": { + "state": "Alaska", + "city": "Juntura" + } + }, + { + "id": 5163, + "name": "Brown Kelly", + "gender": "male", + "age": 34, + "address": { + "state": "Missouri", + "city": "Delshire" + } + }, + { + "id": 5164, + "name": "Talley Johnston", + "gender": "male", + "age": 49, + "address": { + "state": "Idaho", + "city": "Saddlebrooke" + } + }, + { + "id": 5165, + "name": "Mitzi Wheeler", + "gender": "female", + "age": 45, + "address": { + "state": "New Hampshire", + "city": "Dola" + } + }, + { + "id": 5166, + "name": "Natalie Terrell", + "gender": "female", + "age": 24, + "address": { + "state": "Connecticut", + "city": "Hinsdale" + } + }, + { + "id": 5167, + "name": "Mccarty Rios", + "gender": "male", + "age": 66, + "address": { + "state": "Nebraska", + "city": "Adamstown" + } + }, + { + "id": 5168, + "name": "Sullivan Bernard", + "gender": "male", + "age": 77, + "address": { + "state": "Illinois", + "city": "Brookfield" + } + }, + { + "id": 5169, + "name": "Pat French", + "gender": "female", + "age": 38, + "address": { + "state": "Delaware", + "city": "Lupton" + } + }, + { + "id": 5170, + "name": "Shields Holcomb", + "gender": "male", + "age": 22, + "address": { + "state": "Pennsylvania", + "city": "Bagtown" + } + }, + { + "id": 5171, + "name": "Aguilar Crawford", + "gender": "male", + "age": 58, + "address": { + "state": "Louisiana", + "city": "Sidman" + } + }, + { + "id": 5172, + "name": "Morin Stewart", + "gender": "male", + "age": 49, + "address": { + "state": "Rhode Island", + "city": "Volta" + } + }, + { + "id": 5173, + "name": "Espinoza Ramos", + "gender": "male", + "age": 72, + "address": { + "state": "Nevada", + "city": "Morningside" + } + }, + { + "id": 5174, + "name": "Jackson Woodard", + "gender": "male", + "age": 21, + "address": { + "state": "Ohio", + "city": "Coral" + } + }, + { + "id": 5175, + "name": "Curry Huff", + "gender": "male", + "age": 32, + "address": { + "state": "Georgia", + "city": "Whitmer" + } + }, + { + "id": 5176, + "name": "Wilda Newton", + "gender": "female", + "age": 60, + "address": { + "state": "Tennessee", + "city": "Odessa" + } + }, + { + "id": 5177, + "name": "Terry Sheppard", + "gender": "male", + "age": 38, + "address": { + "state": "Florida", + "city": "Iberia" + } + }, + { + "id": 5178, + "name": "Sherrie Bryan", + "gender": "female", + "age": 49, + "address": { + "state": "Wisconsin", + "city": "Brewster" + } + }, + { + "id": 5179, + "name": "Hester Mclaughlin", + "gender": "female", + "age": 74, + "address": { + "state": "Wyoming", + "city": "Sanford" + } + }, + { + "id": 5180, + "name": "Alexandra Tyler", + "gender": "female", + "age": 44, + "address": { + "state": "California", + "city": "Roland" + } + }, + { + "id": 5181, + "name": "Janet Hewitt", + "gender": "female", + "age": 64, + "address": { + "state": "North Carolina", + "city": "Englevale" + } + }, + { + "id": 5182, + "name": "Eve Nixon", + "gender": "female", + "age": 75, + "address": { + "state": "South Carolina", + "city": "Corriganville" + } + }, + { + "id": 5183, + "name": "Reba Erickson", + "gender": "female", + "age": 65, + "address": { + "state": "Indiana", + "city": "Choctaw" + } + }, + { + "id": 5184, + "name": "Ross Buckner", + "gender": "male", + "age": 76, + "address": { + "state": "New York", + "city": "Lithium" + } + }, + { + "id": 5185, + "name": "Betsy Bartlett", + "gender": "female", + "age": 54, + "address": { + "state": "Arkansas", + "city": "Fontanelle" + } + }, + { + "id": 5186, + "name": "Riggs Abbott", + "gender": "male", + "age": 45, + "address": { + "state": "New Mexico", + "city": "Shindler" + } + }, + { + "id": 5187, + "name": "Adams Hardin", + "gender": "male", + "age": 63, + "address": { + "state": "Alabama", + "city": "Strong" + } + }, + { + "id": 5188, + "name": "Hart Preston", + "gender": "male", + "age": 33, + "address": { + "state": "Colorado", + "city": "National" + } + }, + { + "id": 5189, + "name": "Tessa Weeks", + "gender": "female", + "age": 47, + "address": { + "state": "Oregon", + "city": "Idamay" + } + }, + { + "id": 5190, + "name": "Todd Houston", + "gender": "male", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Hoagland" + } + }, + { + "id": 5191, + "name": "Cindy Dalton", + "gender": "female", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Bartonsville" + } + }, + { + "id": 5192, + "name": "Langley Sharpe", + "gender": "male", + "age": 24, + "address": { + "state": "Virginia", + "city": "Herald" + } + }, + { + "id": 5193, + "name": "Eleanor Sexton", + "gender": "female", + "age": 33, + "address": { + "state": "West Virginia", + "city": "Woodlake" + } + }, + { + "id": 5194, + "name": "Lawson Walker", + "gender": "male", + "age": 77, + "address": { + "state": "Georgia", + "city": "Axis" + } + }, + { + "id": 5195, + "name": "Vonda Sanford", + "gender": "female", + "age": 70, + "address": { + "state": "Texas", + "city": "Wheatfields" + } + }, + { + "id": 5196, + "name": "Katherine Sawyer", + "gender": "female", + "age": 18, + "address": { + "state": "Oklahoma", + "city": "Delshire" + } + }, + { + "id": 5197, + "name": "Glenda Bowman", + "gender": "female", + "age": 33, + "address": { + "state": "Michigan", + "city": "Inkerman" + } + }, + { + "id": 5198, + "name": "Nell Anderson", + "gender": "female", + "age": 79, + "address": { + "state": "Maryland", + "city": "Fivepointville" + } + }, + { + "id": 5199, + "name": "Rowena Osborne", + "gender": "female", + "age": 19, + "address": { + "state": "Ohio", + "city": "Urie" + } + }, + { + "id": 5200, + "name": "Chavez Finley", + "gender": "male", + "age": 71, + "address": { + "state": "Montana", + "city": "Foscoe" + } + }, + { + "id": 5201, + "name": "Jayne Crosby", + "gender": "female", + "age": 42, + "address": { + "state": "Nebraska", + "city": "Conway" + } + }, + { + "id": 5202, + "name": "Teri George", + "gender": "female", + "age": 32, + "address": { + "state": "Hawaii", + "city": "Beaverdale" + } + }, + { + "id": 5203, + "name": "Rodgers Delacruz", + "gender": "male", + "age": 78, + "address": { + "state": "Missouri", + "city": "Imperial" + } + }, + { + "id": 5204, + "name": "Christie Day", + "gender": "female", + "age": 22, + "address": { + "state": "Illinois", + "city": "Cotopaxi" + } + }, + { + "id": 5205, + "name": "Rose Love", + "gender": "female", + "age": 81, + "address": { + "state": "Alabama", + "city": "Jacksonburg" + } + }, + { + "id": 5206, + "name": "Moran Mcclain", + "gender": "male", + "age": 21, + "address": { + "state": "Utah", + "city": "Disautel" + } + }, + { + "id": 5207, + "name": "Barbra Ferguson", + "gender": "female", + "age": 59, + "address": { + "state": "Indiana", + "city": "Itmann" + } + }, + { + "id": 5208, + "name": "Potter Montgomery", + "gender": "male", + "age": 38, + "address": { + "state": "Alaska", + "city": "Belmont" + } + }, + { + "id": 5209, + "name": "Valentine Knapp", + "gender": "male", + "age": 45, + "address": { + "state": "Florida", + "city": "Murillo" + } + }, + { + "id": 5210, + "name": "Emma Mcintosh", + "gender": "female", + "age": 28, + "address": { + "state": "North Dakota", + "city": "Richford" + } + }, + { + "id": 5211, + "name": "Zelma Solis", + "gender": "female", + "age": 43, + "address": { + "state": "Idaho", + "city": "Chaparrito" + } + }, + { + "id": 5212, + "name": "Avila Stone", + "gender": "male", + "age": 65, + "address": { + "state": "Nevada", + "city": "Kirk" + } + }, + { + "id": 5213, + "name": "Marilyn Calhoun", + "gender": "female", + "age": 81, + "address": { + "state": "Wisconsin", + "city": "Elrama" + } + }, + { + "id": 5214, + "name": "Webb Freeman", + "gender": "male", + "age": 35, + "address": { + "state": "New Jersey", + "city": "Eagletown" + } + }, + { + "id": 5215, + "name": "Aurelia Murphy", + "gender": "female", + "age": 81, + "address": { + "state": "South Dakota", + "city": "Rew" + } + }, + { + "id": 5216, + "name": "Hinton Mullins", + "gender": "male", + "age": 18, + "address": { + "state": "Louisiana", + "city": "Blairstown" + } + }, + { + "id": 5217, + "name": "Payne Santos", + "gender": "male", + "age": 66, + "address": { + "state": "West Virginia", + "city": "Caberfae" + } + }, + { + "id": 5218, + "name": "Tammy Newman", + "gender": "female", + "age": 22, + "address": { + "state": "New Mexico", + "city": "Vaughn" + } + }, + { + "id": 5219, + "name": "Cole Burris", + "gender": "male", + "age": 67, + "address": { + "state": "Vermont", + "city": "Outlook" + } + }, + { + "id": 5220, + "name": "Maura Johns", + "gender": "female", + "age": 64, + "address": { + "state": "New York", + "city": "Century" + } + }, + { + "id": 5221, + "name": "Arlene Cote", + "gender": "female", + "age": 42, + "address": { + "state": "North Carolina", + "city": "Biehle" + } + }, + { + "id": 5222, + "name": "Shanna Tillman", + "gender": "female", + "age": 39, + "address": { + "state": "Mississippi", + "city": "Advance" + } + }, + { + "id": 5223, + "name": "Wood Velazquez", + "gender": "male", + "age": 81, + "address": { + "state": "Arizona", + "city": "Watrous" + } + }, + { + "id": 5224, + "name": "Jeanine Fields", + "gender": "female", + "age": 52, + "address": { + "state": "Washington", + "city": "Allamuchy" + } + }, + { + "id": 5225, + "name": "Myra Hunter", + "gender": "female", + "age": 50, + "address": { + "state": "Rhode Island", + "city": "Babb" + } + }, + { + "id": 5226, + "name": "Hillary Gardner", + "gender": "female", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Brenton" + } + }, + { + "id": 5227, + "name": "Caroline Foley", + "gender": "female", + "age": 72, + "address": { + "state": "Kentucky", + "city": "Colton" + } + }, + { + "id": 5228, + "name": "Waters Obrien", + "gender": "male", + "age": 18, + "address": { + "state": "Connecticut", + "city": "Boling" + } + }, + { + "id": 5229, + "name": "Mallory Johnson", + "gender": "female", + "age": 66, + "address": { + "state": "Iowa", + "city": "Waterloo" + } + }, + { + "id": 5230, + "name": "Lessie Duran", + "gender": "female", + "age": 24, + "address": { + "state": "California", + "city": "Kanauga" + } + }, + { + "id": 5231, + "name": "Selena Oconnor", + "gender": "female", + "age": 23, + "address": { + "state": "New Hampshire", + "city": "Chumuckla" + } + }, + { + "id": 5232, + "name": "Parsons Haley", + "gender": "male", + "age": 71, + "address": { + "state": "Oregon", + "city": "Zortman" + } + }, + { + "id": 5233, + "name": "Reynolds Chase", + "gender": "male", + "age": 28, + "address": { + "state": "Maine", + "city": "Orviston" + } + }, + { + "id": 5234, + "name": "Pena Yang", + "gender": "male", + "age": 64, + "address": { + "state": "Colorado", + "city": "Websterville" + } + }, + { + "id": 5235, + "name": "Eileen Giles", + "gender": "female", + "age": 25, + "address": { + "state": "South Carolina", + "city": "Canby" + } + }, + { + "id": 5236, + "name": "Mari Wall", + "gender": "female", + "age": 55, + "address": { + "state": "Delaware", + "city": "Newkirk" + } + }, + { + "id": 5237, + "name": "Norman Douglas", + "gender": "male", + "age": 20, + "address": { + "state": "Massachusetts", + "city": "Greenbush" + } + }, + { + "id": 5238, + "name": "Sondra Alston", + "gender": "female", + "age": 62, + "address": { + "state": "Virginia", + "city": "Alamo" + } + }, + { + "id": 5239, + "name": "Esther Palmer", + "gender": "female", + "age": 77, + "address": { + "state": "Pennsylvania", + "city": "Wiscon" + } + }, + { + "id": 5240, + "name": "Delacruz Whitley", + "gender": "male", + "age": 74, + "address": { + "state": "Tennessee", + "city": "Jackpot" + } + }, + { + "id": 5241, + "name": "Ford Hester", + "gender": "male", + "age": 55, + "address": { + "state": "Kansas", + "city": "Rivera" + } + }, + { + "id": 5242, + "name": "Dickerson Blanchard", + "gender": "male", + "age": 38, + "address": { + "state": "Wyoming", + "city": "Lawrence" + } + }, + { + "id": 5243, + "name": "Janine Buchanan", + "gender": "female", + "age": 52, + "address": { + "state": "Washington", + "city": "Eureka" + } + }, + { + "id": 5244, + "name": "Nicholson Hinton", + "gender": "male", + "age": 67, + "address": { + "state": "Georgia", + "city": "Jeff" + } + }, + { + "id": 5245, + "name": "Danielle Olsen", + "gender": "female", + "age": 62, + "address": { + "state": "Alaska", + "city": "Crucible" + } + }, + { + "id": 5246, + "name": "Rosemary Richards", + "gender": "female", + "age": 23, + "address": { + "state": "Florida", + "city": "Bedias" + } + }, + { + "id": 5247, + "name": "Wells Pennington", + "gender": "male", + "age": 61, + "address": { + "state": "North Carolina", + "city": "Wilsonia" + } + }, + { + "id": 5248, + "name": "Tucker Robles", + "gender": "male", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Nile" + } + }, + { + "id": 5249, + "name": "Marcie Acosta", + "gender": "female", + "age": 45, + "address": { + "state": "Texas", + "city": "Guthrie" + } + }, + { + "id": 5250, + "name": "Loretta Terry", + "gender": "female", + "age": 42, + "address": { + "state": "Wisconsin", + "city": "Gibsonia" + } + }, + { + "id": 5251, + "name": "Roseann Watkins", + "gender": "female", + "age": 41, + "address": { + "state": "Rhode Island", + "city": "Trucksville" + } + }, + { + "id": 5252, + "name": "Pat Fletcher", + "gender": "female", + "age": 27, + "address": { + "state": "Vermont", + "city": "Gwynn" + } + }, + { + "id": 5253, + "name": "Sheena Guthrie", + "gender": "female", + "age": 22, + "address": { + "state": "Michigan", + "city": "Fredericktown" + } + }, + { + "id": 5254, + "name": "Linda Best", + "gender": "female", + "age": 36, + "address": { + "state": "Iowa", + "city": "Munjor" + } + }, + { + "id": 5255, + "name": "Susanna Bright", + "gender": "female", + "age": 43, + "address": { + "state": "New Jersey", + "city": "Dupuyer" + } + }, + { + "id": 5256, + "name": "Donna Medina", + "gender": "female", + "age": 74, + "address": { + "state": "Minnesota", + "city": "Coleville" + } + }, + { + "id": 5257, + "name": "Marta Beach", + "gender": "female", + "age": 21, + "address": { + "state": "New Hampshire", + "city": "Seymour" + } + }, + { + "id": 5258, + "name": "Josephine Moon", + "gender": "female", + "age": 76, + "address": { + "state": "California", + "city": "Morriston" + } + }, + { + "id": 5259, + "name": "Meadows Owen", + "gender": "male", + "age": 71, + "address": { + "state": "Arkansas", + "city": "Sanborn" + } + }, + { + "id": 5260, + "name": "Kari Fulton", + "gender": "female", + "age": 59, + "address": { + "state": "Illinois", + "city": "Cleary" + } + }, + { + "id": 5261, + "name": "Kristine Castillo", + "gender": "female", + "age": 18, + "address": { + "state": "Louisiana", + "city": "Tryon" + } + }, + { + "id": 5262, + "name": "Marshall Padilla", + "gender": "male", + "age": 70, + "address": { + "state": "Utah", + "city": "Cecilia" + } + }, + { + "id": 5263, + "name": "Rosanna Gallagher", + "gender": "female", + "age": 70, + "address": { + "state": "Alabama", + "city": "Lawrence" + } + }, + { + "id": 5264, + "name": "Lucille Miller", + "gender": "female", + "age": 49, + "address": { + "state": "Tennessee", + "city": "Marenisco" + } + }, + { + "id": 5265, + "name": "Aimee Levine", + "gender": "female", + "age": 19, + "address": { + "state": "Maryland", + "city": "Dixonville" + } + }, + { + "id": 5266, + "name": "Hines Munoz", + "gender": "male", + "age": 64, + "address": { + "state": "Hawaii", + "city": "Graniteville" + } + }, + { + "id": 5267, + "name": "Rosalinda Nunez", + "gender": "female", + "age": 26, + "address": { + "state": "Virginia", + "city": "Townsend" + } + }, + { + "id": 5268, + "name": "Martinez Patton", + "gender": "male", + "age": 64, + "address": { + "state": "Idaho", + "city": "Edgar" + } + }, + { + "id": 5269, + "name": "Calhoun Clark", + "gender": "male", + "age": 60, + "address": { + "state": "Colorado", + "city": "Rockingham" + } + }, + { + "id": 5270, + "name": "Audra Pollard", + "gender": "female", + "age": 24, + "address": { + "state": "Mississippi", + "city": "Wescosville" + } + }, + { + "id": 5271, + "name": "Mccarty Gay", + "gender": "male", + "age": 80, + "address": { + "state": "Nevada", + "city": "Hampstead" + } + }, + { + "id": 5272, + "name": "Teri King", + "gender": "female", + "age": 72, + "address": { + "state": "Nebraska", + "city": "Stockdale" + } + }, + { + "id": 5273, + "name": "Stacey Combs", + "gender": "female", + "age": 54, + "address": { + "state": "South Carolina", + "city": "Kimmell" + } + }, + { + "id": 5274, + "name": "Alvarado Byrd", + "gender": "male", + "age": 41, + "address": { + "state": "Massachusetts", + "city": "Bath" + } + }, + { + "id": 5275, + "name": "Galloway Lloyd", + "gender": "male", + "age": 31, + "address": { + "state": "New Mexico", + "city": "Eastvale" + } + }, + { + "id": 5276, + "name": "Williamson Obrien", + "gender": "male", + "age": 38, + "address": { + "state": "Kentucky", + "city": "Falmouth" + } + }, + { + "id": 5277, + "name": "Floyd Russell", + "gender": "male", + "age": 33, + "address": { + "state": "Ohio", + "city": "Stewartville" + } + }, + { + "id": 5278, + "name": "Carr Cote", + "gender": "male", + "age": 36, + "address": { + "state": "Missouri", + "city": "Temperanceville" + } + }, + { + "id": 5279, + "name": "Charmaine Mercado", + "gender": "female", + "age": 31, + "address": { + "state": "Oregon", + "city": "Diaperville" + } + }, + { + "id": 5280, + "name": "Curtis Fisher", + "gender": "male", + "age": 24, + "address": { + "state": "West Virginia", + "city": "Konterra" + } + }, + { + "id": 5281, + "name": "Tonia Odonnell", + "gender": "female", + "age": 32, + "address": { + "state": "Delaware", + "city": "Beyerville" + } + }, + { + "id": 5282, + "name": "Shaw Osborne", + "gender": "male", + "age": 50, + "address": { + "state": "Arizona", + "city": "Greenwich" + } + }, + { + "id": 5283, + "name": "Rojas Moore", + "gender": "male", + "age": 52, + "address": { + "state": "South Dakota", + "city": "Iola" + } + }, + { + "id": 5284, + "name": "Cook Anderson", + "gender": "male", + "age": 71, + "address": { + "state": "Montana", + "city": "Ryderwood" + } + }, + { + "id": 5285, + "name": "Randall Jacobs", + "gender": "male", + "age": 18, + "address": { + "state": "Pennsylvania", + "city": "Gordon" + } + }, + { + "id": 5286, + "name": "Erma Wright", + "gender": "female", + "age": 30, + "address": { + "state": "Indiana", + "city": "Bellfountain" + } + }, + { + "id": 5287, + "name": "Leila Wade", + "gender": "female", + "age": 40, + "address": { + "state": "Wyoming", + "city": "Jenkinsville" + } + }, + { + "id": 5288, + "name": "Perry Byers", + "gender": "male", + "age": 40, + "address": { + "state": "Kansas", + "city": "Edenburg" + } + }, + { + "id": 5289, + "name": "Murray Howard", + "gender": "male", + "age": 48, + "address": { + "state": "New York", + "city": "Singer" + } + }, + { + "id": 5290, + "name": "Lindsey Williams", + "gender": "female", + "age": 80, + "address": { + "state": "Maine", + "city": "Norwood" + } + }, + { + "id": 5291, + "name": "Albert Oconnor", + "gender": "male", + "age": 22, + "address": { + "state": "Connecticut", + "city": "Greenfields" + } + }, + { + "id": 5292, + "name": "Knapp Horn", + "gender": "male", + "age": 81, + "address": { + "state": "Indiana", + "city": "Cliffside" + } + }, + { + "id": 5293, + "name": "Bolton Goff", + "gender": "male", + "age": 76, + "address": { + "state": "Texas", + "city": "Spokane" + } + }, + { + "id": 5294, + "name": "Dixon Humphrey", + "gender": "male", + "age": 28, + "address": { + "state": "Maryland", + "city": "Roeville" + } + }, + { + "id": 5295, + "name": "Michael Case", + "gender": "male", + "age": 54, + "address": { + "state": "Washington", + "city": "Silkworth" + } + }, + { + "id": 5296, + "name": "Darla Day", + "gender": "female", + "age": 82, + "address": { + "state": "Pennsylvania", + "city": "Defiance" + } + }, + { + "id": 5297, + "name": "Rhonda Whitley", + "gender": "female", + "age": 21, + "address": { + "state": "Alaska", + "city": "Gracey" + } + }, + { + "id": 5298, + "name": "Adams Rios", + "gender": "male", + "age": 36, + "address": { + "state": "Kansas", + "city": "Elizaville" + } + }, + { + "id": 5299, + "name": "Cobb Stanton", + "gender": "male", + "age": 56, + "address": { + "state": "South Dakota", + "city": "Chloride" + } + }, + { + "id": 5300, + "name": "Mccarthy Rogers", + "gender": "male", + "age": 20, + "address": { + "state": "West Virginia", + "city": "Keyport" + } + }, + { + "id": 5301, + "name": "Frost Pennington", + "gender": "male", + "age": 63, + "address": { + "state": "Georgia", + "city": "Navarre" + } + }, + { + "id": 5302, + "name": "Sheree Dyer", + "gender": "female", + "age": 33, + "address": { + "state": "Montana", + "city": "Matheny" + } + }, + { + "id": 5303, + "name": "Lott Clayton", + "gender": "male", + "age": 31, + "address": { + "state": "Hawaii", + "city": "Dubois" + } + }, + { + "id": 5304, + "name": "Tanner Hall", + "gender": "male", + "age": 69, + "address": { + "state": "New Hampshire", + "city": "Kanauga" + } + }, + { + "id": 5305, + "name": "Candice Arnold", + "gender": "female", + "age": 80, + "address": { + "state": "California", + "city": "Madrid" + } + }, + { + "id": 5306, + "name": "Vasquez Cummings", + "gender": "male", + "age": 71, + "address": { + "state": "New York", + "city": "Blodgett" + } + }, + { + "id": 5307, + "name": "Leonor Hendrix", + "gender": "female", + "age": 62, + "address": { + "state": "Idaho", + "city": "Wescosville" + } + }, + { + "id": 5308, + "name": "Mollie Norman", + "gender": "female", + "age": 57, + "address": { + "state": "Connecticut", + "city": "Joes" + } + }, + { + "id": 5309, + "name": "Leon Cain", + "gender": "male", + "age": 73, + "address": { + "state": "New Jersey", + "city": "Rockhill" + } + }, + { + "id": 5310, + "name": "Rosalie Curry", + "gender": "female", + "age": 81, + "address": { + "state": "Michigan", + "city": "Sharon" + } + }, + { + "id": 5311, + "name": "Rosella Chambers", + "gender": "female", + "age": 26, + "address": { + "state": "Louisiana", + "city": "Wollochet" + } + }, + { + "id": 5312, + "name": "Sheppard Lindsey", + "gender": "male", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Detroit" + } + }, + { + "id": 5313, + "name": "Karina Mcmillan", + "gender": "female", + "age": 44, + "address": { + "state": "Florida", + "city": "Maury" + } + }, + { + "id": 5314, + "name": "Vaughn Vasquez", + "gender": "male", + "age": 46, + "address": { + "state": "Nebraska", + "city": "Glidden" + } + }, + { + "id": 5315, + "name": "Kristie Velez", + "gender": "female", + "age": 74, + "address": { + "state": "Arizona", + "city": "Springdale" + } + }, + { + "id": 5316, + "name": "Judith Blackburn", + "gender": "female", + "age": 57, + "address": { + "state": "Delaware", + "city": "Waiohinu" + } + }, + { + "id": 5317, + "name": "Marylou Donovan", + "gender": "female", + "age": 77, + "address": { + "state": "Kentucky", + "city": "Blende" + } + }, + { + "id": 5318, + "name": "Celina Torres", + "gender": "female", + "age": 33, + "address": { + "state": "Wisconsin", + "city": "Edenburg" + } + }, + { + "id": 5319, + "name": "Gloria Espinoza", + "gender": "female", + "age": 78, + "address": { + "state": "Alabama", + "city": "Boonville" + } + }, + { + "id": 5320, + "name": "Osborn Mckinney", + "gender": "male", + "age": 74, + "address": { + "state": "Oklahoma", + "city": "Wakarusa" + } + }, + { + "id": 5321, + "name": "Ellison James", + "gender": "male", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Delwood" + } + }, + { + "id": 5322, + "name": "Gwendolyn Montgomery", + "gender": "female", + "age": 41, + "address": { + "state": "Illinois", + "city": "Nash" + } + }, + { + "id": 5323, + "name": "Ayers Russell", + "gender": "male", + "age": 65, + "address": { + "state": "Oregon", + "city": "Shelby" + } + }, + { + "id": 5324, + "name": "Roxie Reilly", + "gender": "female", + "age": 56, + "address": { + "state": "North Carolina", + "city": "Chamizal" + } + }, + { + "id": 5325, + "name": "Lawson Estes", + "gender": "male", + "age": 50, + "address": { + "state": "Massachusetts", + "city": "Cochranville" + } + }, + { + "id": 5326, + "name": "Shari Calhoun", + "gender": "female", + "age": 75, + "address": { + "state": "Iowa", + "city": "Albany" + } + }, + { + "id": 5327, + "name": "Jewel Forbes", + "gender": "female", + "age": 18, + "address": { + "state": "Utah", + "city": "Bonanza" + } + }, + { + "id": 5328, + "name": "Gail Decker", + "gender": "female", + "age": 26, + "address": { + "state": "South Carolina", + "city": "Juntura" + } + }, + { + "id": 5329, + "name": "Slater Larsen", + "gender": "male", + "age": 62, + "address": { + "state": "Mississippi", + "city": "Outlook" + } + }, + { + "id": 5330, + "name": "Dejesus Blankenship", + "gender": "male", + "age": 77, + "address": { + "state": "Virginia", + "city": "Vale" + } + }, + { + "id": 5331, + "name": "Corine Bean", + "gender": "female", + "age": 66, + "address": { + "state": "Maine", + "city": "Roberts" + } + }, + { + "id": 5332, + "name": "Ewing Wilcox", + "gender": "male", + "age": 62, + "address": { + "state": "Vermont", + "city": "Coloma" + } + }, + { + "id": 5333, + "name": "Patrice Sutton", + "gender": "female", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Austinburg" + } + }, + { + "id": 5334, + "name": "Rivera Williams", + "gender": "male", + "age": 59, + "address": { + "state": "Colorado", + "city": "Jessie" + } + }, + { + "id": 5335, + "name": "Francisca Giles", + "gender": "female", + "age": 69, + "address": { + "state": "Minnesota", + "city": "Urie" + } + }, + { + "id": 5336, + "name": "Rosemary Macdonald", + "gender": "female", + "age": 27, + "address": { + "state": "Ohio", + "city": "Why" + } + }, + { + "id": 5337, + "name": "Conley Gross", + "gender": "male", + "age": 67, + "address": { + "state": "Arkansas", + "city": "Bluffview" + } + }, + { + "id": 5338, + "name": "Delgado Calderon", + "gender": "male", + "age": 29, + "address": { + "state": "Nevada", + "city": "Guthrie" + } + }, + { + "id": 5339, + "name": "Ronda Henson", + "gender": "female", + "age": 24, + "address": { + "state": "North Dakota", + "city": "Vallonia" + } + }, + { + "id": 5340, + "name": "Noel Mcgowan", + "gender": "male", + "age": 26, + "address": { + "state": "Missouri", + "city": "Guilford" + } + }, + { + "id": 5341, + "name": "Sims Saunders", + "gender": "male", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Bascom" + } + }, + { + "id": 5342, + "name": "Taylor Sosa", + "gender": "female", + "age": 82, + "address": { + "state": "Massachusetts", + "city": "Wikieup" + } + }, + { + "id": 5343, + "name": "Leach Porter", + "gender": "male", + "age": 58, + "address": { + "state": "South Dakota", + "city": "Wheaton" + } + }, + { + "id": 5344, + "name": "Marisol Foley", + "gender": "female", + "age": 73, + "address": { + "state": "New Jersey", + "city": "Lutsen" + } + }, + { + "id": 5345, + "name": "Howe Jones", + "gender": "male", + "age": 76, + "address": { + "state": "Arkansas", + "city": "Dubois" + } + }, + { + "id": 5346, + "name": "Kidd Pugh", + "gender": "male", + "age": 35, + "address": { + "state": "Wisconsin", + "city": "Sharon" + } + }, + { + "id": 5347, + "name": "Anderson Heath", + "gender": "male", + "age": 49, + "address": { + "state": "Indiana", + "city": "Groton" + } + }, + { + "id": 5348, + "name": "Tamara Greer", + "gender": "female", + "age": 77, + "address": { + "state": "Wyoming", + "city": "Yukon" + } + }, + { + "id": 5349, + "name": "Waters Vasquez", + "gender": "male", + "age": 63, + "address": { + "state": "California", + "city": "Bellfountain" + } + }, + { + "id": 5350, + "name": "Richardson Mcdaniel", + "gender": "male", + "age": 74, + "address": { + "state": "Missouri", + "city": "Marion" + } + }, + { + "id": 5351, + "name": "Haynes Frazier", + "gender": "male", + "age": 64, + "address": { + "state": "Maryland", + "city": "Robinette" + } + }, + { + "id": 5352, + "name": "Lara Myers", + "gender": "male", + "age": 57, + "address": { + "state": "New Mexico", + "city": "Allensworth" + } + }, + { + "id": 5353, + "name": "Ward Bauer", + "gender": "male", + "age": 57, + "address": { + "state": "Oregon", + "city": "Cliffside" + } + }, + { + "id": 5354, + "name": "Madeleine Alvarez", + "gender": "female", + "age": 78, + "address": { + "state": "Utah", + "city": "Tooleville" + } + }, + { + "id": 5355, + "name": "Marianne Guerrero", + "gender": "female", + "age": 31, + "address": { + "state": "Iowa", + "city": "Camino" + } + }, + { + "id": 5356, + "name": "Solis Chandler", + "gender": "male", + "age": 22, + "address": { + "state": "Louisiana", + "city": "Coaldale" + } + }, + { + "id": 5357, + "name": "Tillman Stevens", + "gender": "male", + "age": 45, + "address": { + "state": "Hawaii", + "city": "Lynn" + } + }, + { + "id": 5358, + "name": "Buck Valenzuela", + "gender": "male", + "age": 75, + "address": { + "state": "Arizona", + "city": "Tuttle" + } + }, + { + "id": 5359, + "name": "Mccarthy Fletcher", + "gender": "male", + "age": 77, + "address": { + "state": "Nebraska", + "city": "Kerby" + } + }, + { + "id": 5360, + "name": "Abbott Zimmerman", + "gender": "male", + "age": 72, + "address": { + "state": "Alabama", + "city": "Nipinnawasee" + } + }, + { + "id": 5361, + "name": "Mcfarland Maxwell", + "gender": "male", + "age": 65, + "address": { + "state": "Alaska", + "city": "Greenwich" + } + }, + { + "id": 5362, + "name": "Merritt Delaney", + "gender": "male", + "age": 29, + "address": { + "state": "Pennsylvania", + "city": "Bend" + } + }, + { + "id": 5363, + "name": "Hayden Willis", + "gender": "male", + "age": 23, + "address": { + "state": "Ohio", + "city": "Chesterfield" + } + }, + { + "id": 5364, + "name": "Sylvia Carey", + "gender": "female", + "age": 42, + "address": { + "state": "Nevada", + "city": "Enoree" + } + }, + { + "id": 5365, + "name": "Joyce Evans", + "gender": "male", + "age": 66, + "address": { + "state": "South Carolina", + "city": "Saranap" + } + }, + { + "id": 5366, + "name": "Wilkerson Dixon", + "gender": "male", + "age": 34, + "address": { + "state": "Montana", + "city": "Marne" + } + }, + { + "id": 5367, + "name": "Anastasia Beach", + "gender": "female", + "age": 66, + "address": { + "state": "New Hampshire", + "city": "Tuskahoma" + } + }, + { + "id": 5368, + "name": "Soto Stevenson", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Keller" + } + }, + { + "id": 5369, + "name": "Latisha Neal", + "gender": "female", + "age": 23, + "address": { + "state": "North Dakota", + "city": "Nogal" + } + }, + { + "id": 5370, + "name": "Reva Gonzales", + "gender": "female", + "age": 75, + "address": { + "state": "Idaho", + "city": "Spokane" + } + }, + { + "id": 5371, + "name": "Chavez Preston", + "gender": "male", + "age": 39, + "address": { + "state": "Mississippi", + "city": "Temperanceville" + } + }, + { + "id": 5372, + "name": "Berg Haynes", + "gender": "male", + "age": 39, + "address": { + "state": "Minnesota", + "city": "Ironton" + } + }, + { + "id": 5373, + "name": "Roslyn Key", + "gender": "female", + "age": 62, + "address": { + "state": "Kansas", + "city": "Columbus" + } + }, + { + "id": 5374, + "name": "Tia Fernandez", + "gender": "female", + "age": 23, + "address": { + "state": "Texas", + "city": "Villarreal" + } + }, + { + "id": 5375, + "name": "Hays Johnson", + "gender": "male", + "age": 52, + "address": { + "state": "Washington", + "city": "Coldiron" + } + }, + { + "id": 5376, + "name": "Rasmussen Nieves", + "gender": "male", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Carrsville" + } + }, + { + "id": 5377, + "name": "Goff Duke", + "gender": "male", + "age": 31, + "address": { + "state": "Maine", + "city": "Monument" + } + }, + { + "id": 5378, + "name": "Vasquez Mayo", + "gender": "male", + "age": 50, + "address": { + "state": "Colorado", + "city": "Grayhawk" + } + }, + { + "id": 5379, + "name": "John Mccullough", + "gender": "female", + "age": 40, + "address": { + "state": "Virginia", + "city": "Sanford" + } + }, + { + "id": 5380, + "name": "Mcleod Bentley", + "gender": "male", + "age": 42, + "address": { + "state": "New York", + "city": "Dola" + } + }, + { + "id": 5381, + "name": "Hartman Goodman", + "gender": "male", + "age": 74, + "address": { + "state": "Delaware", + "city": "Tetherow" + } + }, + { + "id": 5382, + "name": "Myers Nunez", + "gender": "male", + "age": 41, + "address": { + "state": "Michigan", + "city": "Sena" + } + }, + { + "id": 5383, + "name": "Hopper Kelley", + "gender": "male", + "age": 71, + "address": { + "state": "Connecticut", + "city": "Fidelis" + } + }, + { + "id": 5384, + "name": "Gill Ray", + "gender": "male", + "age": 79, + "address": { + "state": "Florida", + "city": "Thynedale" + } + }, + { + "id": 5385, + "name": "Henson Kennedy", + "gender": "male", + "age": 72, + "address": { + "state": "Illinois", + "city": "Rosedale" + } + }, + { + "id": 5386, + "name": "Gale Reid", + "gender": "female", + "age": 19, + "address": { + "state": "Kentucky", + "city": "Corinne" + } + }, + { + "id": 5387, + "name": "Thompson Barnett", + "gender": "male", + "age": 35, + "address": { + "state": "Rhode Island", + "city": "Bedias" + } + }, + { + "id": 5388, + "name": "Erika Kirk", + "gender": "female", + "age": 80, + "address": { + "state": "North Carolina", + "city": "Suitland" + } + }, + { + "id": 5389, + "name": "Bonita Hendrix", + "gender": "female", + "age": 19, + "address": { + "state": "Vermont", + "city": "Tampico" + } + }, + { + "id": 5390, + "name": "Sasha Calhoun", + "gender": "female", + "age": 35, + "address": { + "state": "New York", + "city": "Roosevelt" + } + }, + { + "id": 5391, + "name": "Christi Morales", + "gender": "female", + "age": 34, + "address": { + "state": "Arkansas", + "city": "Springville" + } + }, + { + "id": 5392, + "name": "Nichole Lowery", + "gender": "female", + "age": 38, + "address": { + "state": "Oklahoma", + "city": "Brambleton" + } + }, + { + "id": 5393, + "name": "Gardner Guzman", + "gender": "male", + "age": 46, + "address": { + "state": "Louisiana", + "city": "Ferney" + } + }, + { + "id": 5394, + "name": "Jerry Evans", + "gender": "female", + "age": 43, + "address": { + "state": "Tennessee", + "city": "Weeksville" + } + }, + { + "id": 5395, + "name": "Baldwin Bryant", + "gender": "male", + "age": 60, + "address": { + "state": "Georgia", + "city": "Cutter" + } + }, + { + "id": 5396, + "name": "Hamilton Drake", + "gender": "male", + "age": 21, + "address": { + "state": "South Carolina", + "city": "Darlington" + } + }, + { + "id": 5397, + "name": "Leila Carver", + "gender": "female", + "age": 30, + "address": { + "state": "Vermont", + "city": "Otranto" + } + }, + { + "id": 5398, + "name": "Figueroa Mckenzie", + "gender": "male", + "age": 46, + "address": { + "state": "Nevada", + "city": "Cetronia" + } + }, + { + "id": 5399, + "name": "Malone Knapp", + "gender": "male", + "age": 54, + "address": { + "state": "New Mexico", + "city": "Stewartville" + } + }, + { + "id": 5400, + "name": "Bryan Brooks", + "gender": "male", + "age": 43, + "address": { + "state": "Utah", + "city": "Boomer" + } + }, + { + "id": 5401, + "name": "Shepherd Mcbride", + "gender": "male", + "age": 39, + "address": { + "state": "Indiana", + "city": "Virgie" + } + }, + { + "id": 5402, + "name": "Whitfield Holloway", + "gender": "male", + "age": 45, + "address": { + "state": "North Dakota", + "city": "Dexter" + } + }, + { + "id": 5403, + "name": "Leanna Emerson", + "gender": "female", + "age": 75, + "address": { + "state": "West Virginia", + "city": "Convent" + } + }, + { + "id": 5404, + "name": "Rebecca Pena", + "gender": "female", + "age": 80, + "address": { + "state": "Washington", + "city": "Roland" + } + }, + { + "id": 5405, + "name": "Lynn Black", + "gender": "male", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Clarence" + } + }, + { + "id": 5406, + "name": "Janie Holmes", + "gender": "female", + "age": 54, + "address": { + "state": "Kansas", + "city": "Garnet" + } + }, + { + "id": 5407, + "name": "Alba Cooley", + "gender": "female", + "age": 80, + "address": { + "state": "Maine", + "city": "Summerset" + } + }, + { + "id": 5408, + "name": "Ava Flores", + "gender": "female", + "age": 68, + "address": { + "state": "Arizona", + "city": "Bison" + } + }, + { + "id": 5409, + "name": "Moreno Larsen", + "gender": "male", + "age": 81, + "address": { + "state": "Connecticut", + "city": "Dupuyer" + } + }, + { + "id": 5410, + "name": "Hilary Sawyer", + "gender": "female", + "age": 43, + "address": { + "state": "Idaho", + "city": "Bridgetown" + } + }, + { + "id": 5411, + "name": "Mariana Salazar", + "gender": "female", + "age": 65, + "address": { + "state": "Maryland", + "city": "Chamizal" + } + }, + { + "id": 5412, + "name": "Holman Williams", + "gender": "male", + "age": 76, + "address": { + "state": "Alaska", + "city": "Katonah" + } + }, + { + "id": 5413, + "name": "Maddox Ellis", + "gender": "male", + "age": 72, + "address": { + "state": "Illinois", + "city": "Lydia" + } + }, + { + "id": 5414, + "name": "Barry Gates", + "gender": "male", + "age": 60, + "address": { + "state": "Nebraska", + "city": "Newry" + } + }, + { + "id": 5415, + "name": "Vonda Dillard", + "gender": "female", + "age": 27, + "address": { + "state": "Delaware", + "city": "Kempton" + } + }, + { + "id": 5416, + "name": "Wells Curtis", + "gender": "male", + "age": 68, + "address": { + "state": "Colorado", + "city": "Sultana" + } + }, + { + "id": 5417, + "name": "Coffey Bush", + "gender": "male", + "age": 36, + "address": { + "state": "Texas", + "city": "Basye" + } + }, + { + "id": 5418, + "name": "Claudia Hobbs", + "gender": "female", + "age": 18, + "address": { + "state": "Hawaii", + "city": "Avalon" + } + }, + { + "id": 5419, + "name": "Stacey Thomas", + "gender": "female", + "age": 34, + "address": { + "state": "Missouri", + "city": "Harrison" + } + }, + { + "id": 5420, + "name": "Graves Dawson", + "gender": "male", + "age": 53, + "address": { + "state": "California", + "city": "Wyano" + } + }, + { + "id": 5421, + "name": "Marlene Acevedo", + "gender": "female", + "age": 39, + "address": { + "state": "Virginia", + "city": "Westwood" + } + }, + { + "id": 5422, + "name": "Barbra Mcmillan", + "gender": "female", + "age": 82, + "address": { + "state": "Rhode Island", + "city": "Dahlen" + } + }, + { + "id": 5423, + "name": "Jenny Parks", + "gender": "female", + "age": 17, + "address": { + "state": "Oregon", + "city": "Starks" + } + }, + { + "id": 5424, + "name": "Chandler Mays", + "gender": "male", + "age": 59, + "address": { + "state": "Kentucky", + "city": "Bendon" + } + }, + { + "id": 5425, + "name": "Laurel Donaldson", + "gender": "female", + "age": 67, + "address": { + "state": "New Jersey", + "city": "Tampico" + } + }, + { + "id": 5426, + "name": "Carrillo Davidson", + "gender": "male", + "age": 44, + "address": { + "state": "Alabama", + "city": "Reno" + } + }, + { + "id": 5427, + "name": "Benita Lester", + "gender": "female", + "age": 75, + "address": { + "state": "Minnesota", + "city": "Magnolia" + } + }, + { + "id": 5428, + "name": "Christina Morin", + "gender": "female", + "age": 21, + "address": { + "state": "New Hampshire", + "city": "Chemung" + } + }, + { + "id": 5429, + "name": "Hester York", + "gender": "male", + "age": 68, + "address": { + "state": "Iowa", + "city": "Wadsworth" + } + }, + { + "id": 5430, + "name": "Bartlett Day", + "gender": "male", + "age": 81, + "address": { + "state": "Wyoming", + "city": "Flintville" + } + }, + { + "id": 5431, + "name": "Tabitha Boyd", + "gender": "female", + "age": 24, + "address": { + "state": "Florida", + "city": "Buxton" + } + }, + { + "id": 5432, + "name": "Frederick Lynn", + "gender": "male", + "age": 48, + "address": { + "state": "Wisconsin", + "city": "Cade" + } + }, + { + "id": 5433, + "name": "Jeanine Park", + "gender": "female", + "age": 70, + "address": { + "state": "Michigan", + "city": "Bannock" + } + }, + { + "id": 5434, + "name": "Sanford Brennan", + "gender": "male", + "age": 37, + "address": { + "state": "Pennsylvania", + "city": "Spokane" + } + }, + { + "id": 5435, + "name": "Hunt Frederick", + "gender": "male", + "age": 56, + "address": { + "state": "South Dakota", + "city": "Manchester" + } + }, + { + "id": 5436, + "name": "Edwards Monroe", + "gender": "male", + "age": 32, + "address": { + "state": "Montana", + "city": "Oneida" + } + }, + { + "id": 5437, + "name": "Jackie Delacruz", + "gender": "female", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Groveville" + } + }, + { + "id": 5438, + "name": "Heidi Campbell", + "gender": "female", + "age": 67, + "address": { + "state": "North Carolina", + "city": "Blende" + } + }, + { + "id": 5439, + "name": "Marietta Bentley", + "gender": "female", + "age": 28, + "address": { + "state": "Missouri", + "city": "Bartonsville" + } + }, + { + "id": 5440, + "name": "Chambers Witt", + "gender": "male", + "age": 67, + "address": { + "state": "Louisiana", + "city": "Linwood" + } + }, + { + "id": 5441, + "name": "Celina Hill", + "gender": "female", + "age": 60, + "address": { + "state": "Nevada", + "city": "Rivera" + } + }, + { + "id": 5442, + "name": "Richardson Huff", + "gender": "male", + "age": 77, + "address": { + "state": "Vermont", + "city": "Echo" + } + }, + { + "id": 5443, + "name": "Clarice Duke", + "gender": "female", + "age": 81, + "address": { + "state": "Ohio", + "city": "Sparkill" + } + }, + { + "id": 5444, + "name": "Williamson Mayo", + "gender": "male", + "age": 46, + "address": { + "state": "Minnesota", + "city": "Conestoga" + } + }, + { + "id": 5445, + "name": "Lela Tucker", + "gender": "female", + "age": 46, + "address": { + "state": "Alabama", + "city": "Calvary" + } + }, + { + "id": 5446, + "name": "May Love", + "gender": "male", + "age": 45, + "address": { + "state": "Oregon", + "city": "Unionville" + } + }, + { + "id": 5447, + "name": "Kirby Puckett", + "gender": "male", + "age": 61, + "address": { + "state": "West Virginia", + "city": "Osage" + } + }, + { + "id": 5448, + "name": "Larsen Day", + "gender": "male", + "age": 75, + "address": { + "state": "New Hampshire", + "city": "Jacksonwald" + } + }, + { + "id": 5449, + "name": "Dianna Wiley", + "gender": "female", + "age": 28, + "address": { + "state": "North Carolina", + "city": "Southview" + } + }, + { + "id": 5450, + "name": "Tessa Alvarado", + "gender": "female", + "age": 50, + "address": { + "state": "Alaska", + "city": "Wiscon" + } + }, + { + "id": 5451, + "name": "Dillard Gregory", + "gender": "male", + "age": 30, + "address": { + "state": "Florida", + "city": "Navarre" + } + }, + { + "id": 5452, + "name": "Sadie Castro", + "gender": "female", + "age": 62, + "address": { + "state": "Kansas", + "city": "Wanship" + } + }, + { + "id": 5453, + "name": "Beth Crosby", + "gender": "female", + "age": 48, + "address": { + "state": "Pennsylvania", + "city": "Caroleen" + } + }, + { + "id": 5454, + "name": "Reilly Miller", + "gender": "male", + "age": 33, + "address": { + "state": "Montana", + "city": "Waiohinu" + } + }, + { + "id": 5455, + "name": "Powers Duran", + "gender": "male", + "age": 48, + "address": { + "state": "South Carolina", + "city": "Chalfant" + } + }, + { + "id": 5456, + "name": "Barbra Craig", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Ivanhoe" + } + }, + { + "id": 5457, + "name": "Herman Moreno", + "gender": "male", + "age": 32, + "address": { + "state": "Maryland", + "city": "Craig" + } + }, + { + "id": 5458, + "name": "Bush Daugherty", + "gender": "male", + "age": 75, + "address": { + "state": "New Mexico", + "city": "Strykersville" + } + }, + { + "id": 5459, + "name": "Kimberly Martinez", + "gender": "female", + "age": 59, + "address": { + "state": "Wyoming", + "city": "Johnsonburg" + } + }, + { + "id": 5460, + "name": "Bishop Welch", + "gender": "male", + "age": 34, + "address": { + "state": "Kentucky", + "city": "Waterford" + } + }, + { + "id": 5461, + "name": "Nina Sykes", + "gender": "female", + "age": 50, + "address": { + "state": "Tennessee", + "city": "Kraemer" + } + }, + { + "id": 5462, + "name": "Barnett Fitzpatrick", + "gender": "male", + "age": 72, + "address": { + "state": "Colorado", + "city": "Leola" + } + }, + { + "id": 5463, + "name": "Sosa Craft", + "gender": "male", + "age": 72, + "address": { + "state": "Iowa", + "city": "Wattsville" + } + }, + { + "id": 5464, + "name": "Marguerite Griffith", + "gender": "female", + "age": 17, + "address": { + "state": "South Dakota", + "city": "Lavalette" + } + }, + { + "id": 5465, + "name": "Vang Mosley", + "gender": "male", + "age": 43, + "address": { + "state": "Georgia", + "city": "Walland" + } + }, + { + "id": 5466, + "name": "Dorthy Farrell", + "gender": "female", + "age": 45, + "address": { + "state": "Nebraska", + "city": "Morgandale" + } + }, + { + "id": 5467, + "name": "Minerva Mccarthy", + "gender": "female", + "age": 25, + "address": { + "state": "Wisconsin", + "city": "Tioga" + } + }, + { + "id": 5468, + "name": "Ashley Gallegos", + "gender": "female", + "age": 24, + "address": { + "state": "Illinois", + "city": "Bowie" + } + }, + { + "id": 5469, + "name": "Eliza Kerr", + "gender": "female", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Townsend" + } + }, + { + "id": 5470, + "name": "Copeland Velazquez", + "gender": "male", + "age": 34, + "address": { + "state": "Rhode Island", + "city": "Jeff" + } + }, + { + "id": 5471, + "name": "Long Merrill", + "gender": "male", + "age": 21, + "address": { + "state": "Utah", + "city": "Stouchsburg" + } + }, + { + "id": 5472, + "name": "Mona Watson", + "gender": "female", + "age": 33, + "address": { + "state": "Indiana", + "city": "Homeland" + } + }, + { + "id": 5473, + "name": "Gina Mccall", + "gender": "female", + "age": 37, + "address": { + "state": "Washington", + "city": "Edneyville" + } + }, + { + "id": 5474, + "name": "Pamela Dudley", + "gender": "female", + "age": 65, + "address": { + "state": "Maine", + "city": "Camptown" + } + }, + { + "id": 5475, + "name": "Sawyer Moses", + "gender": "male", + "age": 72, + "address": { + "state": "Texas", + "city": "Juntura" + } + }, + { + "id": 5476, + "name": "Palmer Rocha", + "gender": "male", + "age": 60, + "address": { + "state": "New York", + "city": "Noblestown" + } + }, + { + "id": 5477, + "name": "Leta Anthony", + "gender": "female", + "age": 65, + "address": { + "state": "North Dakota", + "city": "Glenbrook" + } + }, + { + "id": 5478, + "name": "Millie Massey", + "gender": "female", + "age": 71, + "address": { + "state": "Connecticut", + "city": "Topaz" + } + }, + { + "id": 5479, + "name": "Dominguez Bush", + "gender": "male", + "age": 28, + "address": { + "state": "Arizona", + "city": "Fingerville" + } + }, + { + "id": 5480, + "name": "Hutchinson Stuart", + "gender": "male", + "age": 56, + "address": { + "state": "Arkansas", + "city": "Herbster" + } + }, + { + "id": 5481, + "name": "Lucille Rosa", + "gender": "female", + "age": 76, + "address": { + "state": "Oklahoma", + "city": "Joppa" + } + }, + { + "id": 5482, + "name": "Corrine Justice", + "gender": "female", + "age": 54, + "address": { + "state": "Delaware", + "city": "Wakulla" + } + }, + { + "id": 5483, + "name": "Keisha Gibbs", + "gender": "female", + "age": 68, + "address": { + "state": "Mississippi", + "city": "Salunga" + } + }, + { + "id": 5484, + "name": "Cooper Barnes", + "gender": "male", + "age": 67, + "address": { + "state": "Idaho", + "city": "Convent" + } + }, + { + "id": 5485, + "name": "Melisa Heath", + "gender": "female", + "age": 36, + "address": { + "state": "Hawaii", + "city": "Eagletown" + } + }, + { + "id": 5486, + "name": "Michelle Greene", + "gender": "female", + "age": 42, + "address": { + "state": "Michigan", + "city": "Interlochen" + } + }, + { + "id": 5487, + "name": "Horton Richards", + "gender": "male", + "age": 57, + "address": { + "state": "New Jersey", + "city": "Starks" + } + }, + { + "id": 5488, + "name": "Rowe Waller", + "gender": "male", + "age": 39, + "address": { + "state": "South Carolina", + "city": "Dante" + } + }, + { + "id": 5489, + "name": "Bolton Cash", + "gender": "male", + "age": 57, + "address": { + "state": "Oregon", + "city": "Gambrills" + } + }, + { + "id": 5490, + "name": "Herring Cooke", + "gender": "male", + "age": 73, + "address": { + "state": "Pennsylvania", + "city": "Spokane" + } + }, + { + "id": 5491, + "name": "Angelica Walls", + "gender": "female", + "age": 62, + "address": { + "state": "New York", + "city": "Cochranville" + } + }, + { + "id": 5492, + "name": "Sharpe Calderon", + "gender": "male", + "age": 68, + "address": { + "state": "Alaska", + "city": "Monument" + } + }, + { + "id": 5493, + "name": "Barton Hayes", + "gender": "male", + "age": 52, + "address": { + "state": "Rhode Island", + "city": "Cashtown" + } + }, + { + "id": 5494, + "name": "Farley Vinson", + "gender": "male", + "age": 18, + "address": { + "state": "Missouri", + "city": "Delco" + } + }, + { + "id": 5495, + "name": "Mack Burns", + "gender": "male", + "age": 79, + "address": { + "state": "Wisconsin", + "city": "Ezel" + } + }, + { + "id": 5496, + "name": "Leanne Hammond", + "gender": "female", + "age": 23, + "address": { + "state": "New Hampshire", + "city": "Belvoir" + } + }, + { + "id": 5497, + "name": "Nunez Ware", + "gender": "male", + "age": 66, + "address": { + "state": "North Dakota", + "city": "Fairforest" + } + }, + { + "id": 5498, + "name": "Mcmillan Simon", + "gender": "male", + "age": 47, + "address": { + "state": "Arkansas", + "city": "Allamuchy" + } + }, + { + "id": 5499, + "name": "Schultz Norman", + "gender": "male", + "age": 21, + "address": { + "state": "Alabama", + "city": "Bangor" + } + }, + { + "id": 5500, + "name": "Figueroa West", + "gender": "male", + "age": 27, + "address": { + "state": "Wyoming", + "city": "Riegelwood" + } + }, + { + "id": 5501, + "name": "Elaine Witt", + "gender": "female", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Collins" + } + }, + { + "id": 5502, + "name": "Guy Williamson", + "gender": "male", + "age": 50, + "address": { + "state": "Iowa", + "city": "Jardine" + } + }, + { + "id": 5503, + "name": "Edwina Wong", + "gender": "female", + "age": 34, + "address": { + "state": "Virginia", + "city": "Nipinnawasee" + } + }, + { + "id": 5504, + "name": "Huffman Cameron", + "gender": "male", + "age": 63, + "address": { + "state": "Oklahoma", + "city": "Marbury" + } + }, + { + "id": 5505, + "name": "Rebekah Roy", + "gender": "female", + "age": 24, + "address": { + "state": "Louisiana", + "city": "Reno" + } + }, + { + "id": 5506, + "name": "Karla Copeland", + "gender": "female", + "age": 47, + "address": { + "state": "Arizona", + "city": "Chumuckla" + } + }, + { + "id": 5507, + "name": "Jill Hays", + "gender": "female", + "age": 78, + "address": { + "state": "South Dakota", + "city": "Fostoria" + } + }, + { + "id": 5508, + "name": "Lynch Sutton", + "gender": "male", + "age": 68, + "address": { + "state": "Mississippi", + "city": "Williamson" + } + }, + { + "id": 5509, + "name": "Virginia Gould", + "gender": "female", + "age": 42, + "address": { + "state": "Nebraska", + "city": "Chamizal" + } + }, + { + "id": 5510, + "name": "Luann Romero", + "gender": "female", + "age": 20, + "address": { + "state": "Maine", + "city": "Woodburn" + } + }, + { + "id": 5511, + "name": "Johns Lyons", + "gender": "male", + "age": 40, + "address": { + "state": "Indiana", + "city": "Caroleen" + } + }, + { + "id": 5512, + "name": "Dollie Blackburn", + "gender": "female", + "age": 23, + "address": { + "state": "California", + "city": "Weeksville" + } + }, + { + "id": 5513, + "name": "Weiss Berg", + "gender": "male", + "age": 29, + "address": { + "state": "Maryland", + "city": "Sharon" + } + }, + { + "id": 5514, + "name": "Georgette Osborn", + "gender": "female", + "age": 52, + "address": { + "state": "Delaware", + "city": "Caroline" + } + }, + { + "id": 5515, + "name": "Knapp Stephenson", + "gender": "male", + "age": 68, + "address": { + "state": "Michigan", + "city": "Savannah" + } + }, + { + "id": 5516, + "name": "Willie Allison", + "gender": "female", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Glidden" + } + }, + { + "id": 5517, + "name": "Kristen Hyde", + "gender": "female", + "age": 66, + "address": { + "state": "Texas", + "city": "Beason" + } + }, + { + "id": 5518, + "name": "Mcdowell Allen", + "gender": "male", + "age": 76, + "address": { + "state": "Vermont", + "city": "Naomi" + } + }, + { + "id": 5519, + "name": "Hines Wheeler", + "gender": "male", + "age": 23, + "address": { + "state": "Kansas", + "city": "Edgewater" + } + }, + { + "id": 5520, + "name": "Ellis Benjamin", + "gender": "male", + "age": 18, + "address": { + "state": "Montana", + "city": "Verdi" + } + }, + { + "id": 5521, + "name": "Bridgett Stone", + "gender": "female", + "age": 17, + "address": { + "state": "Utah", + "city": "Ladera" + } + }, + { + "id": 5522, + "name": "Amber Wolf", + "gender": "female", + "age": 48, + "address": { + "state": "Tennessee", + "city": "Yonah" + } + }, + { + "id": 5523, + "name": "Klein Mayer", + "gender": "male", + "age": 70, + "address": { + "state": "West Virginia", + "city": "Caln" + } + }, + { + "id": 5524, + "name": "Meyer Dunlap", + "gender": "male", + "age": 79, + "address": { + "state": "Hawaii", + "city": "Cotopaxi" + } + }, + { + "id": 5525, + "name": "Shepard Frederick", + "gender": "male", + "age": 18, + "address": { + "state": "Colorado", + "city": "Brethren" + } + }, + { + "id": 5526, + "name": "Levy Gutierrez", + "gender": "male", + "age": 48, + "address": { + "state": "Washington", + "city": "Dunbar" + } + }, + { + "id": 5527, + "name": "Lacey Aguilar", + "gender": "female", + "age": 43, + "address": { + "state": "Connecticut", + "city": "Greensburg" + } + }, + { + "id": 5528, + "name": "Santiago Cummings", + "gender": "male", + "age": 43, + "address": { + "state": "Nevada", + "city": "Chase" + } + }, + { + "id": 5529, + "name": "Brewer Pratt", + "gender": "male", + "age": 18, + "address": { + "state": "Ohio", + "city": "Cornfields" + } + }, + { + "id": 5530, + "name": "Angel Andrews", + "gender": "female", + "age": 26, + "address": { + "state": "Florida", + "city": "Sunriver" + } + }, + { + "id": 5531, + "name": "Goff Snider", + "gender": "male", + "age": 73, + "address": { + "state": "Minnesota", + "city": "Bladensburg" + } + }, + { + "id": 5532, + "name": "Hughes William", + "gender": "male", + "age": 38, + "address": { + "state": "Idaho", + "city": "Advance" + } + }, + { + "id": 5533, + "name": "William Buck", + "gender": "male", + "age": 74, + "address": { + "state": "New Mexico", + "city": "Catharine" + } + }, + { + "id": 5534, + "name": "Sims Joyner", + "gender": "male", + "age": 57, + "address": { + "state": "Georgia", + "city": "Gwynn" + } + }, + { + "id": 5535, + "name": "Terra Mack", + "gender": "female", + "age": 42, + "address": { + "state": "Kentucky", + "city": "Stevens" + } + }, + { + "id": 5536, + "name": "Lorna Rhodes", + "gender": "female", + "age": 41, + "address": { + "state": "Illinois", + "city": "Lawrence" + } + }, + { + "id": 5537, + "name": "Sheppard Stanton", + "gender": "male", + "age": 52, + "address": { + "state": "Arizona", + "city": "Whitestone" + } + }, + { + "id": 5538, + "name": "Shelia Oconnor", + "gender": "female", + "age": 71, + "address": { + "state": "South Dakota", + "city": "Walland" + } + }, + { + "id": 5539, + "name": "Bowers Bolton", + "gender": "male", + "age": 39, + "address": { + "state": "Kansas", + "city": "Remington" + } + }, + { + "id": 5540, + "name": "Tanisha Maldonado", + "gender": "female", + "age": 75, + "address": { + "state": "Kentucky", + "city": "Vicksburg" + } + }, + { + "id": 5541, + "name": "Sloan Wilkerson", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Emison" + } + }, + { + "id": 5542, + "name": "Delia Bass", + "gender": "female", + "age": 64, + "address": { + "state": "Wisconsin", + "city": "Dahlen" + } + }, + { + "id": 5543, + "name": "Victoria Guy", + "gender": "female", + "age": 58, + "address": { + "state": "Alabama", + "city": "Tryon" + } + }, + { + "id": 5544, + "name": "Gregory Miranda", + "gender": "male", + "age": 33, + "address": { + "state": "Maine", + "city": "Ballico" + } + }, + { + "id": 5545, + "name": "Leigh Mayer", + "gender": "female", + "age": 62, + "address": { + "state": "Montana", + "city": "Roeville" + } + }, + { + "id": 5546, + "name": "Julie Forbes", + "gender": "female", + "age": 43, + "address": { + "state": "Colorado", + "city": "Bloomington" + } + }, + { + "id": 5547, + "name": "Hutchinson Robinson", + "gender": "male", + "age": 65, + "address": { + "state": "Maryland", + "city": "Columbus" + } + }, + { + "id": 5548, + "name": "Morales Walton", + "gender": "male", + "age": 58, + "address": { + "state": "Vermont", + "city": "Camptown" + } + }, + { + "id": 5549, + "name": "Socorro Bradford", + "gender": "female", + "age": 27, + "address": { + "state": "New York", + "city": "Bodega" + } + }, + { + "id": 5550, + "name": "Burt Knight", + "gender": "male", + "age": 68, + "address": { + "state": "Pennsylvania", + "city": "Coleville" + } + }, + { + "id": 5551, + "name": "Helga Duncan", + "gender": "female", + "age": 36, + "address": { + "state": "Nevada", + "city": "Baden" + } + }, + { + "id": 5552, + "name": "Angelina Cox", + "gender": "female", + "age": 19, + "address": { + "state": "Rhode Island", + "city": "Sanders" + } + }, + { + "id": 5553, + "name": "Beatrice Whitehead", + "gender": "female", + "age": 24, + "address": { + "state": "Iowa", + "city": "Statenville" + } + }, + { + "id": 5554, + "name": "Herring Wright", + "gender": "male", + "age": 34, + "address": { + "state": "South Carolina", + "city": "Brutus" + } + }, + { + "id": 5555, + "name": "Dona Howard", + "gender": "female", + "age": 79, + "address": { + "state": "Texas", + "city": "Kansas" + } + }, + { + "id": 5556, + "name": "Henry Bullock", + "gender": "male", + "age": 82, + "address": { + "state": "Alaska", + "city": "Franklin" + } + }, + { + "id": 5557, + "name": "Chandra Bryant", + "gender": "female", + "age": 26, + "address": { + "state": "New Jersey", + "city": "Drummond" + } + }, + { + "id": 5558, + "name": "Trujillo Bishop", + "gender": "male", + "age": 24, + "address": { + "state": "Indiana", + "city": "Clay" + } + }, + { + "id": 5559, + "name": "Nora Wolf", + "gender": "female", + "age": 64, + "address": { + "state": "Delaware", + "city": "Bison" + } + }, + { + "id": 5560, + "name": "Moss Small", + "gender": "male", + "age": 73, + "address": { + "state": "Arkansas", + "city": "Oneida" + } + }, + { + "id": 5561, + "name": "Booth Thornton", + "gender": "male", + "age": 33, + "address": { + "state": "North Dakota", + "city": "Balm" + } + }, + { + "id": 5562, + "name": "Clarissa Dawson", + "gender": "female", + "age": 40, + "address": { + "state": "Ohio", + "city": "Leroy" + } + }, + { + "id": 5563, + "name": "Cherry Tucker", + "gender": "male", + "age": 81, + "address": { + "state": "Tennessee", + "city": "Flintville" + } + }, + { + "id": 5564, + "name": "Irene Poole", + "gender": "female", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Bordelonville" + } + }, + { + "id": 5565, + "name": "Hodge Morton", + "gender": "male", + "age": 74, + "address": { + "state": "Oklahoma", + "city": "Allendale" + } + }, + { + "id": 5566, + "name": "Alba Lucas", + "gender": "female", + "age": 72, + "address": { + "state": "Illinois", + "city": "Brambleton" + } + }, + { + "id": 5567, + "name": "Roberson Dennis", + "gender": "male", + "age": 64, + "address": { + "state": "Florida", + "city": "Dexter" + } + }, + { + "id": 5568, + "name": "Pamela Dodson", + "gender": "female", + "age": 66, + "address": { + "state": "Mississippi", + "city": "Teasdale" + } + }, + { + "id": 5569, + "name": "Rachael Mathis", + "gender": "female", + "age": 58, + "address": { + "state": "Hawaii", + "city": "Derwood" + } + }, + { + "id": 5570, + "name": "Tran Raymond", + "gender": "male", + "age": 64, + "address": { + "state": "Virginia", + "city": "Ypsilanti" + } + }, + { + "id": 5571, + "name": "Rosanna Nieves", + "gender": "female", + "age": 45, + "address": { + "state": "Minnesota", + "city": "Groton" + } + }, + { + "id": 5572, + "name": "Monica Macias", + "gender": "female", + "age": 41, + "address": { + "state": "Utah", + "city": "Ola" + } + }, + { + "id": 5573, + "name": "Debra Wong", + "gender": "female", + "age": 36, + "address": { + "state": "Missouri", + "city": "Dunnavant" + } + }, + { + "id": 5574, + "name": "Suzanne Skinner", + "gender": "female", + "age": 62, + "address": { + "state": "Nebraska", + "city": "Cashtown" + } + }, + { + "id": 5575, + "name": "Marie Allison", + "gender": "female", + "age": 21, + "address": { + "state": "West Virginia", + "city": "Tilden" + } + }, + { + "id": 5576, + "name": "Latoya Ryan", + "gender": "female", + "age": 25, + "address": { + "state": "Wyoming", + "city": "Rodanthe" + } + }, + { + "id": 5577, + "name": "Briggs Kim", + "gender": "male", + "age": 51, + "address": { + "state": "New Hampshire", + "city": "Dorneyville" + } + }, + { + "id": 5578, + "name": "Ruthie Finch", + "gender": "female", + "age": 29, + "address": { + "state": "California", + "city": "Hackneyville" + } + }, + { + "id": 5579, + "name": "Cantrell Campbell", + "gender": "male", + "age": 64, + "address": { + "state": "Washington", + "city": "Leland" + } + }, + { + "id": 5580, + "name": "Payne Spencer", + "gender": "male", + "age": 55, + "address": { + "state": "Georgia", + "city": "Sanford" + } + }, + { + "id": 5581, + "name": "Pacheco Mcbride", + "gender": "male", + "age": 74, + "address": { + "state": "Louisiana", + "city": "Brownlee" + } + }, + { + "id": 5582, + "name": "Mosley Moody", + "gender": "male", + "age": 80, + "address": { + "state": "Oregon", + "city": "Gadsden" + } + }, + { + "id": 5583, + "name": "Mckay Duke", + "gender": "male", + "age": 47, + "address": { + "state": "North Carolina", + "city": "Kennedyville" + } + }, + { + "id": 5584, + "name": "Meredith Wade", + "gender": "female", + "age": 32, + "address": { + "state": "Connecticut", + "city": "Brethren" + } + }, + { + "id": 5585, + "name": "Alston Ford", + "gender": "male", + "age": 60, + "address": { + "state": "New Mexico", + "city": "Gila" + } + }, + { + "id": 5586, + "name": "Cote Noel", + "gender": "male", + "age": 20, + "address": { + "state": "Hawaii", + "city": "Vale" + } + }, + { + "id": 5587, + "name": "Belinda Lara", + "gender": "female", + "age": 63, + "address": { + "state": "Washington", + "city": "Johnsonburg" + } + }, + { + "id": 5588, + "name": "Swanson Cooper", + "gender": "male", + "age": 79, + "address": { + "state": "Alaska", + "city": "Nogal" + } + }, + { + "id": 5589, + "name": "Eugenia Herring", + "gender": "female", + "age": 26, + "address": { + "state": "Nebraska", + "city": "Hiwasse" + } + }, + { + "id": 5590, + "name": "Maureen Coleman", + "gender": "female", + "age": 65, + "address": { + "state": "Louisiana", + "city": "Tyro" + } + }, + { + "id": 5591, + "name": "Guerrero Rose", + "gender": "male", + "age": 17, + "address": { + "state": "Oregon", + "city": "Conway" + } + }, + { + "id": 5592, + "name": "Aguirre Floyd", + "gender": "male", + "age": 41, + "address": { + "state": "Tennessee", + "city": "Herald" + } + }, + { + "id": 5593, + "name": "Bridges Wolfe", + "gender": "male", + "age": 20, + "address": { + "state": "Ohio", + "city": "Calpine" + } + }, + { + "id": 5594, + "name": "Camacho Newman", + "gender": "male", + "age": 81, + "address": { + "state": "North Dakota", + "city": "Aberdeen" + } + }, + { + "id": 5595, + "name": "Russo Kramer", + "gender": "male", + "age": 25, + "address": { + "state": "Delaware", + "city": "Klondike" + } + }, + { + "id": 5596, + "name": "Cortez Solis", + "gender": "male", + "age": 50, + "address": { + "state": "Michigan", + "city": "Northridge" + } + }, + { + "id": 5597, + "name": "Barlow Boone", + "gender": "male", + "age": 82, + "address": { + "state": "New Mexico", + "city": "Chical" + } + }, + { + "id": 5598, + "name": "Benson Sawyer", + "gender": "male", + "age": 37, + "address": { + "state": "Arkansas", + "city": "Sims" + } + }, + { + "id": 5599, + "name": "Erica Mueller", + "gender": "female", + "age": 33, + "address": { + "state": "Colorado", + "city": "Kenmar" + } + }, + { + "id": 5600, + "name": "Hensley Morse", + "gender": "male", + "age": 35, + "address": { + "state": "New Jersey", + "city": "Bethany" + } + }, + { + "id": 5601, + "name": "Shannon Lane", + "gender": "female", + "age": 74, + "address": { + "state": "Maine", + "city": "Sultana" + } + }, + { + "id": 5602, + "name": "Bianca Fleming", + "gender": "female", + "age": 23, + "address": { + "state": "West Virginia", + "city": "Tedrow" + } + }, + { + "id": 5603, + "name": "Vickie Salas", + "gender": "female", + "age": 53, + "address": { + "state": "North Carolina", + "city": "Ticonderoga" + } + }, + { + "id": 5604, + "name": "Chaney Watson", + "gender": "male", + "age": 57, + "address": { + "state": "Kansas", + "city": "Waterloo" + } + }, + { + "id": 5605, + "name": "Bonner Soto", + "gender": "male", + "age": 61, + "address": { + "state": "Oklahoma", + "city": "Neibert" + } + }, + { + "id": 5606, + "name": "Lynnette Schroeder", + "gender": "female", + "age": 71, + "address": { + "state": "Nevada", + "city": "Keyport" + } + }, + { + "id": 5607, + "name": "Millicent Pope", + "gender": "female", + "age": 43, + "address": { + "state": "Missouri", + "city": "Springville" + } + }, + { + "id": 5608, + "name": "Rita Eaton", + "gender": "female", + "age": 34, + "address": { + "state": "New Hampshire", + "city": "Shrewsbury" + } + }, + { + "id": 5609, + "name": "Burgess Knowles", + "gender": "male", + "age": 27, + "address": { + "state": "South Dakota", + "city": "Williston" + } + }, + { + "id": 5610, + "name": "Jamie Lester", + "gender": "female", + "age": 32, + "address": { + "state": "Mississippi", + "city": "Tonopah" + } + }, + { + "id": 5611, + "name": "Monroe Pruitt", + "gender": "male", + "age": 74, + "address": { + "state": "Florida", + "city": "Rivereno" + } + }, + { + "id": 5612, + "name": "Benjamin William", + "gender": "male", + "age": 61, + "address": { + "state": "Illinois", + "city": "Westphalia" + } + }, + { + "id": 5613, + "name": "Jaclyn Simon", + "gender": "female", + "age": 64, + "address": { + "state": "Massachusetts", + "city": "Cawood" + } + }, + { + "id": 5614, + "name": "Hope Berg", + "gender": "female", + "age": 33, + "address": { + "state": "Alabama", + "city": "Gordon" + } + }, + { + "id": 5615, + "name": "Johanna Powers", + "gender": "female", + "age": 36, + "address": { + "state": "Texas", + "city": "Blende" + } + }, + { + "id": 5616, + "name": "Nash Shepherd", + "gender": "male", + "age": 77, + "address": { + "state": "Virginia", + "city": "Mansfield" + } + }, + { + "id": 5617, + "name": "Joy Gibson", + "gender": "female", + "age": 82, + "address": { + "state": "Maryland", + "city": "Montura" + } + }, + { + "id": 5618, + "name": "Golden Levy", + "gender": "male", + "age": 26, + "address": { + "state": "Wisconsin", + "city": "Delshire" + } + }, + { + "id": 5619, + "name": "Alvarado Walls", + "gender": "male", + "age": 60, + "address": { + "state": "Utah", + "city": "Smock" + } + }, + { + "id": 5620, + "name": "Herminia Wong", + "gender": "female", + "age": 66, + "address": { + "state": "Vermont", + "city": "Benson" + } + }, + { + "id": 5621, + "name": "Morgan Whitfield", + "gender": "female", + "age": 59, + "address": { + "state": "Iowa", + "city": "Waiohinu" + } + }, + { + "id": 5622, + "name": "Kemp Arnold", + "gender": "male", + "age": 59, + "address": { + "state": "Minnesota", + "city": "Edenburg" + } + }, + { + "id": 5623, + "name": "Durham Ferrell", + "gender": "male", + "age": 57, + "address": { + "state": "Arizona", + "city": "Logan" + } + }, + { + "id": 5624, + "name": "Katina Gallegos", + "gender": "female", + "age": 41, + "address": { + "state": "Wyoming", + "city": "Detroit" + } + }, + { + "id": 5625, + "name": "Joyce Durham", + "gender": "female", + "age": 35, + "address": { + "state": "California", + "city": "Berlin" + } + }, + { + "id": 5626, + "name": "Kerry Barnes", + "gender": "female", + "age": 66, + "address": { + "state": "Idaho", + "city": "Gambrills" + } + }, + { + "id": 5627, + "name": "Britt Carver", + "gender": "male", + "age": 39, + "address": { + "state": "Pennsylvania", + "city": "Wollochet" + } + }, + { + "id": 5628, + "name": "Blair Glover", + "gender": "male", + "age": 21, + "address": { + "state": "New York", + "city": "Sunbury" + } + }, + { + "id": 5629, + "name": "Savage Middleton", + "gender": "male", + "age": 40, + "address": { + "state": "Georgia", + "city": "Colton" + } + }, + { + "id": 5630, + "name": "Copeland Burgess", + "gender": "male", + "age": 29, + "address": { + "state": "South Carolina", + "city": "Wolcott" + } + }, + { + "id": 5631, + "name": "Irwin Haley", + "gender": "male", + "age": 27, + "address": { + "state": "Indiana", + "city": "Derwood" + } + }, + { + "id": 5632, + "name": "Carla Saunders", + "gender": "female", + "age": 73, + "address": { + "state": "Rhode Island", + "city": "Brewster" + } + }, + { + "id": 5633, + "name": "Amanda Ward", + "gender": "female", + "age": 71, + "address": { + "state": "Kentucky", + "city": "Dola" + } + }, + { + "id": 5634, + "name": "Wilda Roberson", + "gender": "female", + "age": 81, + "address": { + "state": "Montana", + "city": "Wawona" + } + }, + { + "id": 5635, + "name": "Staci Petty", + "gender": "female", + "age": 79, + "address": { + "state": "North Carolina", + "city": "Enetai" + } + }, + { + "id": 5636, + "name": "Marva Murphy", + "gender": "female", + "age": 18, + "address": { + "state": "Mississippi", + "city": "Seymour" + } + }, + { + "id": 5637, + "name": "Hazel Vance", + "gender": "female", + "age": 24, + "address": { + "state": "Nevada", + "city": "Allentown" + } + }, + { + "id": 5638, + "name": "Brock Cleveland", + "gender": "male", + "age": 55, + "address": { + "state": "Texas", + "city": "Fidelis" + } + }, + { + "id": 5639, + "name": "Walls Holloway", + "gender": "male", + "age": 17, + "address": { + "state": "Alaska", + "city": "Hondah" + } + }, + { + "id": 5640, + "name": "Kemp Wolfe", + "gender": "male", + "age": 19, + "address": { + "state": "Rhode Island", + "city": "Floriston" + } + }, + { + "id": 5641, + "name": "Green Walters", + "gender": "male", + "age": 64, + "address": { + "state": "New York", + "city": "Kilbourne" + } + }, + { + "id": 5642, + "name": "Melton Burks", + "gender": "male", + "age": 62, + "address": { + "state": "Louisiana", + "city": "Interlochen" + } + }, + { + "id": 5643, + "name": "Crosby Beck", + "gender": "male", + "age": 69, + "address": { + "state": "Virginia", + "city": "Belfair" + } + }, + { + "id": 5644, + "name": "Cecelia Kim", + "gender": "female", + "age": 61, + "address": { + "state": "Delaware", + "city": "Moquino" + } + }, + { + "id": 5645, + "name": "Clay Duran", + "gender": "male", + "age": 19, + "address": { + "state": "New Mexico", + "city": "Bethpage" + } + }, + { + "id": 5646, + "name": "Morton Mays", + "gender": "male", + "age": 68, + "address": { + "state": "Illinois", + "city": "Camas" + } + }, + { + "id": 5647, + "name": "Ryan Bush", + "gender": "male", + "age": 71, + "address": { + "state": "Ohio", + "city": "Wright" + } + }, + { + "id": 5648, + "name": "Cora Goodwin", + "gender": "female", + "age": 52, + "address": { + "state": "Connecticut", + "city": "Nord" + } + }, + { + "id": 5649, + "name": "Bell Yang", + "gender": "male", + "age": 72, + "address": { + "state": "Florida", + "city": "Eastmont" + } + }, + { + "id": 5650, + "name": "Medina Tillman", + "gender": "male", + "age": 59, + "address": { + "state": "Vermont", + "city": "Hilltop" + } + }, + { + "id": 5651, + "name": "Petra Bauer", + "gender": "female", + "age": 77, + "address": { + "state": "Colorado", + "city": "Clarence" + } + }, + { + "id": 5652, + "name": "Holloway Sloan", + "gender": "male", + "age": 43, + "address": { + "state": "Hawaii", + "city": "Thomasville" + } + }, + { + "id": 5653, + "name": "Ora Hopkins", + "gender": "female", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Epworth" + } + }, + { + "id": 5654, + "name": "Antonia Pate", + "gender": "female", + "age": 42, + "address": { + "state": "Georgia", + "city": "Martinez" + } + }, + { + "id": 5655, + "name": "Baird Wagner", + "gender": "male", + "age": 82, + "address": { + "state": "Tennessee", + "city": "Wintersburg" + } + }, + { + "id": 5656, + "name": "Stokes Moses", + "gender": "male", + "age": 78, + "address": { + "state": "Montana", + "city": "Cataract" + } + }, + { + "id": 5657, + "name": "Wheeler Castillo", + "gender": "male", + "age": 60, + "address": { + "state": "Kentucky", + "city": "Leming" + } + }, + { + "id": 5658, + "name": "Danielle Ballard", + "gender": "female", + "age": 65, + "address": { + "state": "Arizona", + "city": "Hampstead" + } + }, + { + "id": 5659, + "name": "Loretta Pollard", + "gender": "female", + "age": 49, + "address": { + "state": "Kansas", + "city": "Saticoy" + } + }, + { + "id": 5660, + "name": "Hodge Barnes", + "gender": "male", + "age": 37, + "address": { + "state": "North Dakota", + "city": "Kraemer" + } + }, + { + "id": 5661, + "name": "Jerri Lara", + "gender": "female", + "age": 26, + "address": { + "state": "Alabama", + "city": "Coalmont" + } + }, + { + "id": 5662, + "name": "Gallagher Meyer", + "gender": "male", + "age": 63, + "address": { + "state": "Oklahoma", + "city": "Crown" + } + }, + { + "id": 5663, + "name": "Josefina Macias", + "gender": "female", + "age": 19, + "address": { + "state": "South Carolina", + "city": "Delshire" + } + }, + { + "id": 5664, + "name": "Lolita Velazquez", + "gender": "female", + "age": 37, + "address": { + "state": "Arkansas", + "city": "Adamstown" + } + }, + { + "id": 5665, + "name": "Elvia Lyons", + "gender": "female", + "age": 43, + "address": { + "state": "Wisconsin", + "city": "Townsend" + } + }, + { + "id": 5666, + "name": "Bettye Cantu", + "gender": "female", + "age": 51, + "address": { + "state": "Wyoming", + "city": "Frystown" + } + }, + { + "id": 5667, + "name": "Burns Norman", + "gender": "male", + "age": 55, + "address": { + "state": "Utah", + "city": "Moscow" + } + }, + { + "id": 5668, + "name": "Carly Fry", + "gender": "female", + "age": 50, + "address": { + "state": "Oregon", + "city": "Elrama" + } + }, + { + "id": 5669, + "name": "Kendra Fuller", + "gender": "female", + "age": 56, + "address": { + "state": "Maine", + "city": "Nutrioso" + } + }, + { + "id": 5670, + "name": "Hendrix Martinez", + "gender": "male", + "age": 26, + "address": { + "state": "Nebraska", + "city": "Dola" + } + }, + { + "id": 5671, + "name": "Velma Dunlap", + "gender": "female", + "age": 25, + "address": { + "state": "Michigan", + "city": "Ypsilanti" + } + }, + { + "id": 5672, + "name": "Donaldson Conrad", + "gender": "male", + "age": 31, + "address": { + "state": "Maryland", + "city": "Weedville" + } + }, + { + "id": 5673, + "name": "Mcclure Merrill", + "gender": "male", + "age": 43, + "address": { + "state": "Pennsylvania", + "city": "Keyport" + } + }, + { + "id": 5674, + "name": "Lillie Lloyd", + "gender": "female", + "age": 57, + "address": { + "state": "Indiana", + "city": "Olney" + } + }, + { + "id": 5675, + "name": "Carol Manning", + "gender": "female", + "age": 43, + "address": { + "state": "Missouri", + "city": "Fruitdale" + } + }, + { + "id": 5676, + "name": "Trudy Howell", + "gender": "female", + "age": 63, + "address": { + "state": "New Jersey", + "city": "Draper" + } + }, + { + "id": 5677, + "name": "Ayers Emerson", + "gender": "male", + "age": 47, + "address": { + "state": "South Dakota", + "city": "Brownsville" + } + }, + { + "id": 5678, + "name": "Cox Parker", + "gender": "male", + "age": 27, + "address": { + "state": "Iowa", + "city": "Cloverdale" + } + }, + { + "id": 5679, + "name": "Nadine Warner", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Shepardsville" + } + }, + { + "id": 5680, + "name": "Mamie Blackwell", + "gender": "female", + "age": 62, + "address": { + "state": "Massachusetts", + "city": "Sena" + } + }, + { + "id": 5681, + "name": "Dora Hays", + "gender": "female", + "age": 78, + "address": { + "state": "California", + "city": "Wollochet" + } + }, + { + "id": 5682, + "name": "Bradshaw Steele", + "gender": "male", + "age": 46, + "address": { + "state": "Washington", + "city": "Craig" + } + }, + { + "id": 5683, + "name": "Gwen Salazar", + "gender": "female", + "age": 63, + "address": { + "state": "Minnesota", + "city": "Calpine" + } + }, + { + "id": 5684, + "name": "Bobbi Caldwell", + "gender": "female", + "age": 71, + "address": { + "state": "Minnesota", + "city": "Gasquet" + } + }, + { + "id": 5685, + "name": "Ramona Nelson", + "gender": "female", + "age": 22, + "address": { + "state": "North Carolina", + "city": "Gardners" + } + }, + { + "id": 5686, + "name": "West Best", + "gender": "male", + "age": 59, + "address": { + "state": "Indiana", + "city": "Falconaire" + } + }, + { + "id": 5687, + "name": "Booker Mullen", + "gender": "male", + "age": 18, + "address": { + "state": "Arkansas", + "city": "Rossmore" + } + }, + { + "id": 5688, + "name": "Prince Suarez", + "gender": "male", + "age": 63, + "address": { + "state": "Rhode Island", + "city": "Beyerville" + } + }, + { + "id": 5689, + "name": "Wolfe Chambers", + "gender": "male", + "age": 36, + "address": { + "state": "Iowa", + "city": "Convent" + } + }, + { + "id": 5690, + "name": "Erika Briggs", + "gender": "female", + "age": 22, + "address": { + "state": "Louisiana", + "city": "Joes" + } + }, + { + "id": 5691, + "name": "Page Alexander", + "gender": "male", + "age": 33, + "address": { + "state": "Utah", + "city": "Idledale" + } + }, + { + "id": 5692, + "name": "Lillie Fowler", + "gender": "female", + "age": 53, + "address": { + "state": "New Hampshire", + "city": "Neibert" + } + }, + { + "id": 5693, + "name": "Chen Sargent", + "gender": "male", + "age": 72, + "address": { + "state": "South Dakota", + "city": "Hessville" + } + }, + { + "id": 5694, + "name": "Carroll Allen", + "gender": "male", + "age": 74, + "address": { + "state": "Nebraska", + "city": "Beechmont" + } + }, + { + "id": 5695, + "name": "Hannah Spears", + "gender": "female", + "age": 68, + "address": { + "state": "West Virginia", + "city": "Broadlands" + } + }, + { + "id": 5696, + "name": "Reva Alvarez", + "gender": "female", + "age": 78, + "address": { + "state": "Oklahoma", + "city": "Richmond" + } + }, + { + "id": 5697, + "name": "Barry Ford", + "gender": "male", + "age": 17, + "address": { + "state": "Delaware", + "city": "Salix" + } + }, + { + "id": 5698, + "name": "Vaughn Riddle", + "gender": "male", + "age": 66, + "address": { + "state": "Maryland", + "city": "Summerfield" + } + }, + { + "id": 5699, + "name": "Mona Schmidt", + "gender": "female", + "age": 75, + "address": { + "state": "Illinois", + "city": "Chestnut" + } + }, + { + "id": 5700, + "name": "Callie Taylor", + "gender": "female", + "age": 35, + "address": { + "state": "New Mexico", + "city": "Davenport" + } + }, + { + "id": 5701, + "name": "Whitley Gallagher", + "gender": "male", + "age": 37, + "address": { + "state": "Alabama", + "city": "Alleghenyville" + } + }, + { + "id": 5702, + "name": "Weiss Davis", + "gender": "male", + "age": 33, + "address": { + "state": "Alaska", + "city": "Twilight" + } + }, + { + "id": 5703, + "name": "Elise Britt", + "gender": "female", + "age": 31, + "address": { + "state": "Montana", + "city": "Rosedale" + } + }, + { + "id": 5704, + "name": "Lila Andrews", + "gender": "female", + "age": 66, + "address": { + "state": "Vermont", + "city": "Mooresburg" + } + }, + { + "id": 5705, + "name": "Joann Burch", + "gender": "female", + "age": 27, + "address": { + "state": "New York", + "city": "Harleigh" + } + }, + { + "id": 5706, + "name": "Hahn Ferrell", + "gender": "male", + "age": 69, + "address": { + "state": "Arizona", + "city": "Brewster" + } + }, + { + "id": 5707, + "name": "Elva Knight", + "gender": "female", + "age": 78, + "address": { + "state": "Ohio", + "city": "Breinigsville" + } + }, + { + "id": 5708, + "name": "Melissa Porter", + "gender": "female", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Chesapeake" + } + }, + { + "id": 5709, + "name": "Meadows Swanson", + "gender": "male", + "age": 52, + "address": { + "state": "Mississippi", + "city": "Stagecoach" + } + }, + { + "id": 5710, + "name": "Lauren Mcmillan", + "gender": "female", + "age": 31, + "address": { + "state": "Hawaii", + "city": "Ladera" + } + }, + { + "id": 5711, + "name": "Adrian Cooper", + "gender": "female", + "age": 24, + "address": { + "state": "Idaho", + "city": "Fairview" + } + }, + { + "id": 5712, + "name": "Rosemary Schultz", + "gender": "female", + "age": 23, + "address": { + "state": "Connecticut", + "city": "Selma" + } + }, + { + "id": 5713, + "name": "Hodge Yates", + "gender": "male", + "age": 39, + "address": { + "state": "Texas", + "city": "Emory" + } + }, + { + "id": 5714, + "name": "Melva Rojas", + "gender": "female", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Sidman" + } + }, + { + "id": 5715, + "name": "Dona Davenport", + "gender": "female", + "age": 46, + "address": { + "state": "Wisconsin", + "city": "Caroleen" + } + }, + { + "id": 5716, + "name": "Ernestine Pate", + "gender": "female", + "age": 52, + "address": { + "state": "Maine", + "city": "Albrightsville" + } + }, + { + "id": 5717, + "name": "Harvey Alvarado", + "gender": "male", + "age": 47, + "address": { + "state": "California", + "city": "Saranap" + } + }, + { + "id": 5718, + "name": "Rasmussen Cotton", + "gender": "male", + "age": 51, + "address": { + "state": "Wyoming", + "city": "Vincent" + } + }, + { + "id": 5719, + "name": "Mcneil Buchanan", + "gender": "male", + "age": 48, + "address": { + "state": "Pennsylvania", + "city": "Wedgewood" + } + }, + { + "id": 5720, + "name": "Gregory Boyer", + "gender": "male", + "age": 55, + "address": { + "state": "Kentucky", + "city": "Englevale" + } + }, + { + "id": 5721, + "name": "Willie Hinton", + "gender": "female", + "age": 73, + "address": { + "state": "Washington", + "city": "Abiquiu" + } + }, + { + "id": 5722, + "name": "Lorie Bean", + "gender": "female", + "age": 31, + "address": { + "state": "Oregon", + "city": "Chilton" + } + }, + { + "id": 5723, + "name": "Caitlin Leon", + "gender": "female", + "age": 43, + "address": { + "state": "Missouri", + "city": "Cliffside" + } + }, + { + "id": 5724, + "name": "Cherie Decker", + "gender": "female", + "age": 77, + "address": { + "state": "South Carolina", + "city": "Sims" + } + }, + { + "id": 5725, + "name": "Silva Parks", + "gender": "male", + "age": 44, + "address": { + "state": "Michigan", + "city": "Jacksonwald" + } + }, + { + "id": 5726, + "name": "Debora Hobbs", + "gender": "female", + "age": 51, + "address": { + "state": "Nevada", + "city": "Nutrioso" + } + }, + { + "id": 5727, + "name": "Summer Coffey", + "gender": "female", + "age": 51, + "address": { + "state": "Massachusetts", + "city": "Osage" + } + }, + { + "id": 5728, + "name": "Bush Morrow", + "gender": "male", + "age": 77, + "address": { + "state": "North Dakota", + "city": "Longoria" + } + }, + { + "id": 5729, + "name": "Natalia Cox", + "gender": "female", + "age": 26, + "address": { + "state": "Georgia", + "city": "Hachita" + } + }, + { + "id": 5730, + "name": "Mccarty Blanchard", + "gender": "male", + "age": 49, + "address": { + "state": "Colorado", + "city": "Hebron" + } + }, + { + "id": 5731, + "name": "Francine Nguyen", + "gender": "female", + "age": 51, + "address": { + "state": "Kansas", + "city": "Lafferty" + } + }, + { + "id": 5732, + "name": "Karina Cummings", + "gender": "female", + "age": 31, + "address": { + "state": "Florida", + "city": "Ona" + } + }, + { + "id": 5733, + "name": "Bettie Rosa", + "gender": "female", + "age": 69, + "address": { + "state": "Pennsylvania", + "city": "Goodville" + } + }, + { + "id": 5734, + "name": "Bernadette Armstrong", + "gender": "female", + "age": 76, + "address": { + "state": "Vermont", + "city": "Bellamy" + } + }, + { + "id": 5735, + "name": "Mann Parsons", + "gender": "male", + "age": 19, + "address": { + "state": "Delaware", + "city": "Needmore" + } + }, + { + "id": 5736, + "name": "Corrine May", + "gender": "female", + "age": 55, + "address": { + "state": "Alabama", + "city": "Fidelis" + } + }, + { + "id": 5737, + "name": "Shana Gill", + "gender": "female", + "age": 41, + "address": { + "state": "Montana", + "city": "Fulford" + } + }, + { + "id": 5738, + "name": "Carroll Arnold", + "gender": "male", + "age": 61, + "address": { + "state": "Hawaii", + "city": "Flintville" + } + }, + { + "id": 5739, + "name": "Carmela Fowler", + "gender": "female", + "age": 77, + "address": { + "state": "Wisconsin", + "city": "Tolu" + } + }, + { + "id": 5740, + "name": "Levy Goff", + "gender": "male", + "age": 23, + "address": { + "state": "Oklahoma", + "city": "Venice" + } + }, + { + "id": 5741, + "name": "Geraldine Schmidt", + "gender": "female", + "age": 39, + "address": { + "state": "New Jersey", + "city": "Austinburg" + } + }, + { + "id": 5742, + "name": "Strong Hamilton", + "gender": "male", + "age": 35, + "address": { + "state": "Idaho", + "city": "Sultana" + } + }, + { + "id": 5743, + "name": "Hodge Wilcox", + "gender": "male", + "age": 39, + "address": { + "state": "Texas", + "city": "Taycheedah" + } + }, + { + "id": 5744, + "name": "Hawkins Burch", + "gender": "male", + "age": 74, + "address": { + "state": "Oregon", + "city": "Rosburg" + } + }, + { + "id": 5745, + "name": "Sallie Warner", + "gender": "female", + "age": 61, + "address": { + "state": "Wyoming", + "city": "Reinerton" + } + }, + { + "id": 5746, + "name": "Summers Lloyd", + "gender": "male", + "age": 37, + "address": { + "state": "Rhode Island", + "city": "Linganore" + } + }, + { + "id": 5747, + "name": "Christensen French", + "gender": "male", + "age": 49, + "address": { + "state": "Tennessee", + "city": "Hartsville/Hartley" + } + }, + { + "id": 5748, + "name": "Bethany Rodriquez", + "gender": "female", + "age": 28, + "address": { + "state": "New Mexico", + "city": "Ebro" + } + }, + { + "id": 5749, + "name": "Black Finley", + "gender": "male", + "age": 38, + "address": { + "state": "Illinois", + "city": "Newry" + } + }, + { + "id": 5750, + "name": "Angelia Sweeney", + "gender": "female", + "age": 79, + "address": { + "state": "Colorado", + "city": "Gallina" + } + }, + { + "id": 5751, + "name": "Charity Mccarthy", + "gender": "female", + "age": 34, + "address": { + "state": "Utah", + "city": "Islandia" + } + }, + { + "id": 5752, + "name": "Dianna Melendez", + "gender": "female", + "age": 28, + "address": { + "state": "Minnesota", + "city": "Hannasville" + } + }, + { + "id": 5753, + "name": "Valeria Harper", + "gender": "female", + "age": 30, + "address": { + "state": "Alaska", + "city": "Keller" + } + }, + { + "id": 5754, + "name": "Hewitt Avery", + "gender": "male", + "age": 33, + "address": { + "state": "West Virginia", + "city": "Foscoe" + } + }, + { + "id": 5755, + "name": "Brooke Decker", + "gender": "female", + "age": 35, + "address": { + "state": "Ohio", + "city": "Idledale" + } + }, + { + "id": 5756, + "name": "Bernadine Dickerson", + "gender": "female", + "age": 26, + "address": { + "state": "Nevada", + "city": "Westwood" + } + }, + { + "id": 5757, + "name": "Kris Dotson", + "gender": "female", + "age": 81, + "address": { + "state": "New York", + "city": "Wadsworth" + } + }, + { + "id": 5758, + "name": "Meghan Ramsey", + "gender": "female", + "age": 46, + "address": { + "state": "California", + "city": "Bath" + } + }, + { + "id": 5759, + "name": "Huffman Knox", + "gender": "male", + "age": 43, + "address": { + "state": "Michigan", + "city": "Jamestown" + } + }, + { + "id": 5760, + "name": "Glenda Schroeder", + "gender": "female", + "age": 77, + "address": { + "state": "Mississippi", + "city": "Chapin" + } + }, + { + "id": 5761, + "name": "Latisha Dillard", + "gender": "female", + "age": 80, + "address": { + "state": "South Dakota", + "city": "Kenvil" + } + }, + { + "id": 5762, + "name": "Ingrid Cobb", + "gender": "female", + "age": 63, + "address": { + "state": "Arkansas", + "city": "Otranto" + } + }, + { + "id": 5763, + "name": "Fernandez Chambers", + "gender": "male", + "age": 17, + "address": { + "state": "Nebraska", + "city": "Rote" + } + }, + { + "id": 5764, + "name": "Aimee Fry", + "gender": "female", + "age": 30, + "address": { + "state": "Connecticut", + "city": "Diaperville" + } + }, + { + "id": 5765, + "name": "Kirsten Sawyer", + "gender": "female", + "age": 21, + "address": { + "state": "Kentucky", + "city": "Sunwest" + } + }, + { + "id": 5766, + "name": "Wise Rosales", + "gender": "male", + "age": 68, + "address": { + "state": "Maine", + "city": "Roulette" + } + }, + { + "id": 5767, + "name": "Brady Ware", + "gender": "male", + "age": 18, + "address": { + "state": "Washington", + "city": "Slovan" + } + }, + { + "id": 5768, + "name": "Jeannette Peters", + "gender": "female", + "age": 37, + "address": { + "state": "Iowa", + "city": "Templeton" + } + }, + { + "id": 5769, + "name": "Olson Fisher", + "gender": "male", + "age": 39, + "address": { + "state": "New Hampshire", + "city": "Salunga" + } + }, + { + "id": 5770, + "name": "Acosta Mathews", + "gender": "male", + "age": 40, + "address": { + "state": "Florida", + "city": "Hayes" + } + }, + { + "id": 5771, + "name": "Strickland Thomas", + "gender": "male", + "age": 50, + "address": { + "state": "Georgia", + "city": "Savage" + } + }, + { + "id": 5772, + "name": "Albert Ewing", + "gender": "male", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Crucible" + } + }, + { + "id": 5773, + "name": "Mcpherson Blair", + "gender": "male", + "age": 72, + "address": { + "state": "Arizona", + "city": "Worcester" + } + }, + { + "id": 5774, + "name": "Mccarty Bowen", + "gender": "male", + "age": 23, + "address": { + "state": "Indiana", + "city": "Valle" + } + }, + { + "id": 5775, + "name": "Deana Collier", + "gender": "female", + "age": 65, + "address": { + "state": "Virginia", + "city": "Norwood" + } + }, + { + "id": 5776, + "name": "Lawanda Galloway", + "gender": "female", + "age": 57, + "address": { + "state": "Kansas", + "city": "Coaldale" + } + }, + { + "id": 5777, + "name": "Loretta Gilliam", + "gender": "female", + "age": 66, + "address": { + "state": "North Carolina", + "city": "Macdona" + } + }, + { + "id": 5778, + "name": "Annette Kramer", + "gender": "female", + "age": 61, + "address": { + "state": "Missouri", + "city": "Mulino" + } + }, + { + "id": 5779, + "name": "Raymond Shannon", + "gender": "male", + "age": 21, + "address": { + "state": "Maryland", + "city": "Comptche" + } + }, + { + "id": 5780, + "name": "Booth Hill", + "gender": "male", + "age": 31, + "address": { + "state": "South Carolina", + "city": "Yorklyn" + } + }, + { + "id": 5781, + "name": "Debora Kline", + "gender": "female", + "age": 41, + "address": { + "state": "North Dakota", + "city": "Hailesboro" + } + }, + { + "id": 5782, + "name": "Simmons Gray", + "gender": "male", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Gulf" + } + }, + { + "id": 5783, + "name": "Cash Cook", + "gender": "male", + "age": 66, + "address": { + "state": "Kentucky", + "city": "Fedora" + } + }, + { + "id": 5784, + "name": "Lara Rosales", + "gender": "male", + "age": 23, + "address": { + "state": "Georgia", + "city": "Rew" + } + }, + { + "id": 5785, + "name": "Bryant Lawrence", + "gender": "male", + "age": 49, + "address": { + "state": "Mississippi", + "city": "Torboy" + } + }, + { + "id": 5786, + "name": "Agnes Patterson", + "gender": "female", + "age": 56, + "address": { + "state": "Delaware", + "city": "Villarreal" + } + }, + { + "id": 5787, + "name": "Sadie Swanson", + "gender": "female", + "age": 62, + "address": { + "state": "Tennessee", + "city": "Maplewood" + } + }, + { + "id": 5788, + "name": "Crosby Wyatt", + "gender": "male", + "age": 41, + "address": { + "state": "Vermont", + "city": "Jenkinsville" + } + }, + { + "id": 5789, + "name": "Shannon Silva", + "gender": "female", + "age": 20, + "address": { + "state": "Oklahoma", + "city": "Lavalette" + } + }, + { + "id": 5790, + "name": "Mandy Forbes", + "gender": "female", + "age": 74, + "address": { + "state": "Michigan", + "city": "Snyderville" + } + }, + { + "id": 5791, + "name": "Laurie Holden", + "gender": "female", + "age": 37, + "address": { + "state": "Utah", + "city": "Walton" + } + }, + { + "id": 5792, + "name": "Downs Weaver", + "gender": "male", + "age": 66, + "address": { + "state": "Indiana", + "city": "Waterloo" + } + }, + { + "id": 5793, + "name": "Ana Figueroa", + "gender": "female", + "age": 23, + "address": { + "state": "New Mexico", + "city": "Broadlands" + } + }, + { + "id": 5794, + "name": "Hooper Pacheco", + "gender": "male", + "age": 56, + "address": { + "state": "South Carolina", + "city": "Matthews" + } + }, + { + "id": 5795, + "name": "Clarissa Dawson", + "gender": "female", + "age": 75, + "address": { + "state": "New York", + "city": "Vandiver" + } + }, + { + "id": 5796, + "name": "Levine Randall", + "gender": "male", + "age": 62, + "address": { + "state": "California", + "city": "Ruckersville" + } + }, + { + "id": 5797, + "name": "Pickett Cooley", + "gender": "male", + "age": 58, + "address": { + "state": "Colorado", + "city": "Chamberino" + } + }, + { + "id": 5798, + "name": "Gates Gates", + "gender": "male", + "age": 57, + "address": { + "state": "Washington", + "city": "Nile" + } + }, + { + "id": 5799, + "name": "Peterson Clemons", + "gender": "male", + "age": 52, + "address": { + "state": "Massachusetts", + "city": "Chloride" + } + }, + { + "id": 5800, + "name": "Perez Knight", + "gender": "male", + "age": 79, + "address": { + "state": "Virginia", + "city": "Brownlee" + } + }, + { + "id": 5801, + "name": "Alison Tucker", + "gender": "female", + "age": 20, + "address": { + "state": "Ohio", + "city": "Kieler" + } + }, + { + "id": 5802, + "name": "Bond Alexander", + "gender": "male", + "age": 80, + "address": { + "state": "Hawaii", + "city": "Byrnedale" + } + }, + { + "id": 5803, + "name": "Annette Haynes", + "gender": "female", + "age": 38, + "address": { + "state": "Alaska", + "city": "Detroit" + } + }, + { + "id": 5804, + "name": "Beverly Ballard", + "gender": "female", + "age": 71, + "address": { + "state": "Montana", + "city": "Orviston" + } + }, + { + "id": 5805, + "name": "Fitzpatrick Ryan", + "gender": "male", + "age": 63, + "address": { + "state": "Iowa", + "city": "Jacumba" + } + }, + { + "id": 5806, + "name": "Contreras Yang", + "gender": "male", + "age": 53, + "address": { + "state": "Idaho", + "city": "Gallina" + } + }, + { + "id": 5807, + "name": "Compton Allen", + "gender": "male", + "age": 70, + "address": { + "state": "Oregon", + "city": "Moraida" + } + }, + { + "id": 5808, + "name": "Parrish Romero", + "gender": "male", + "age": 33, + "address": { + "state": "Connecticut", + "city": "Fostoria" + } + }, + { + "id": 5809, + "name": "Jackson Wilkinson", + "gender": "male", + "age": 48, + "address": { + "state": "Texas", + "city": "Delco" + } + }, + { + "id": 5810, + "name": "Boone Anthony", + "gender": "male", + "age": 82, + "address": { + "state": "Florida", + "city": "Fillmore" + } + }, + { + "id": 5811, + "name": "Farrell Hernandez", + "gender": "male", + "age": 44, + "address": { + "state": "Alabama", + "city": "Herlong" + } + }, + { + "id": 5812, + "name": "Cathryn Harding", + "gender": "female", + "age": 78, + "address": { + "state": "Pennsylvania", + "city": "Saranap" + } + }, + { + "id": 5813, + "name": "Dolores Zamora", + "gender": "female", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Keyport" + } + }, + { + "id": 5814, + "name": "Aida Henson", + "gender": "female", + "age": 41, + "address": { + "state": "Illinois", + "city": "Haring" + } + }, + { + "id": 5815, + "name": "Sofia Parsons", + "gender": "female", + "age": 71, + "address": { + "state": "Minnesota", + "city": "Rose" + } + }, + { + "id": 5816, + "name": "Puckett Payne", + "gender": "male", + "age": 45, + "address": { + "state": "Nebraska", + "city": "Bethany" + } + }, + { + "id": 5817, + "name": "Rebecca Calhoun", + "gender": "female", + "age": 56, + "address": { + "state": "New Hampshire", + "city": "Hollymead" + } + }, + { + "id": 5818, + "name": "Swanson English", + "gender": "male", + "age": 47, + "address": { + "state": "Missouri", + "city": "Crawfordsville" + } + }, + { + "id": 5819, + "name": "Elvira Mullen", + "gender": "female", + "age": 78, + "address": { + "state": "Arkansas", + "city": "Konterra" + } + }, + { + "id": 5820, + "name": "Case Molina", + "gender": "male", + "age": 23, + "address": { + "state": "Nevada", + "city": "Wanship" + } + }, + { + "id": 5821, + "name": "Hilary Ellis", + "gender": "female", + "age": 81, + "address": { + "state": "Wyoming", + "city": "Yardville" + } + }, + { + "id": 5822, + "name": "Dale Dejesus", + "gender": "male", + "age": 21, + "address": { + "state": "Arizona", + "city": "Chaparrito" + } + }, + { + "id": 5823, + "name": "Opal Sweet", + "gender": "female", + "age": 69, + "address": { + "state": "South Dakota", + "city": "Dyckesville" + } + }, + { + "id": 5824, + "name": "Maxine Maldonado", + "gender": "female", + "age": 59, + "address": { + "state": "North Dakota", + "city": "Olney" + } + }, + { + "id": 5825, + "name": "Karina Haley", + "gender": "female", + "age": 24, + "address": { + "state": "Wisconsin", + "city": "Marshall" + } + }, + { + "id": 5826, + "name": "Glenda Frederick", + "gender": "female", + "age": 19, + "address": { + "state": "Maryland", + "city": "Fairview" + } + }, + { + "id": 5827, + "name": "Manning Wilkins", + "gender": "male", + "age": 67, + "address": { + "state": "Maine", + "city": "Boonville" + } + }, + { + "id": 5828, + "name": "Sondra Hudson", + "gender": "female", + "age": 77, + "address": { + "state": "Kansas", + "city": "Eastvale" + } + }, + { + "id": 5829, + "name": "Muriel Goodwin", + "gender": "female", + "age": 61, + "address": { + "state": "New Jersey", + "city": "Lithium" + } + }, + { + "id": 5830, + "name": "Chen Shepherd", + "gender": "male", + "age": 58, + "address": { + "state": "West Virginia", + "city": "Eastmont" + } + }, + { + "id": 5831, + "name": "Susan Evans", + "gender": "female", + "age": 20, + "address": { + "state": "Missouri", + "city": "Zarephath" + } + }, + { + "id": 5832, + "name": "Esther Terrell", + "gender": "female", + "age": 50, + "address": { + "state": "Maryland", + "city": "Imperial" + } + }, + { + "id": 5833, + "name": "Grace Skinner", + "gender": "female", + "age": 74, + "address": { + "state": "New Mexico", + "city": "Cleary" + } + }, + { + "id": 5834, + "name": "Malone Burke", + "gender": "male", + "age": 24, + "address": { + "state": "Michigan", + "city": "Wyoming" + } + }, + { + "id": 5835, + "name": "Tonya Bennett", + "gender": "female", + "age": 78, + "address": { + "state": "West Virginia", + "city": "Groveville" + } + }, + { + "id": 5836, + "name": "Little Woodard", + "gender": "male", + "age": 31, + "address": { + "state": "South Carolina", + "city": "Fairmount" + } + }, + { + "id": 5837, + "name": "Rosalie Rosales", + "gender": "female", + "age": 17, + "address": { + "state": "Minnesota", + "city": "Carrsville" + } + }, + { + "id": 5838, + "name": "Bray Lowe", + "gender": "male", + "age": 64, + "address": { + "state": "New York", + "city": "Oceola" + } + }, + { + "id": 5839, + "name": "Manuela Potter", + "gender": "female", + "age": 78, + "address": { + "state": "New Hampshire", + "city": "Statenville" + } + }, + { + "id": 5840, + "name": "Dejesus Gross", + "gender": "male", + "age": 69, + "address": { + "state": "Washington", + "city": "Takilma" + } + }, + { + "id": 5841, + "name": "Hayden Bean", + "gender": "male", + "age": 59, + "address": { + "state": "Indiana", + "city": "Freeburn" + } + }, + { + "id": 5842, + "name": "Berta Payne", + "gender": "female", + "age": 38, + "address": { + "state": "Maine", + "city": "Marne" + } + }, + { + "id": 5843, + "name": "Hawkins Glass", + "gender": "male", + "age": 75, + "address": { + "state": "Iowa", + "city": "Woodruff" + } + }, + { + "id": 5844, + "name": "House Gutierrez", + "gender": "male", + "age": 78, + "address": { + "state": "Tennessee", + "city": "Bowie" + } + }, + { + "id": 5845, + "name": "Roach Booth", + "gender": "male", + "age": 49, + "address": { + "state": "New Jersey", + "city": "Riner" + } + }, + { + "id": 5846, + "name": "Chan Freeman", + "gender": "male", + "age": 77, + "address": { + "state": "Colorado", + "city": "Rosewood" + } + }, + { + "id": 5847, + "name": "Paige Sanchez", + "gender": "female", + "age": 59, + "address": { + "state": "Nebraska", + "city": "Finderne" + } + }, + { + "id": 5848, + "name": "Maryellen Dominguez", + "gender": "female", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Gloucester" + } + }, + { + "id": 5849, + "name": "Potts Avery", + "gender": "male", + "age": 58, + "address": { + "state": "Oregon", + "city": "Cassel" + } + }, + { + "id": 5850, + "name": "Irwin Castro", + "gender": "male", + "age": 55, + "address": { + "state": "Virginia", + "city": "Clinton" + } + }, + { + "id": 5851, + "name": "Allison Townsend", + "gender": "male", + "age": 37, + "address": { + "state": "Oklahoma", + "city": "Layhill" + } + }, + { + "id": 5852, + "name": "Dixie Duffy", + "gender": "female", + "age": 60, + "address": { + "state": "Wyoming", + "city": "Beaverdale" + } + }, + { + "id": 5853, + "name": "Alisa Ballard", + "gender": "female", + "age": 23, + "address": { + "state": "Texas", + "city": "Wikieup" + } + }, + { + "id": 5854, + "name": "Shelley Mcbride", + "gender": "female", + "age": 76, + "address": { + "state": "Arkansas", + "city": "Nicholson" + } + }, + { + "id": 5855, + "name": "White Leonard", + "gender": "male", + "age": 30, + "address": { + "state": "California", + "city": "Deercroft" + } + }, + { + "id": 5856, + "name": "Patrica Mercado", + "gender": "female", + "age": 52, + "address": { + "state": "Utah", + "city": "Kula" + } + }, + { + "id": 5857, + "name": "Lyons Howard", + "gender": "male", + "age": 18, + "address": { + "state": "North Dakota", + "city": "Leroy" + } + }, + { + "id": 5858, + "name": "Hudson Alexander", + "gender": "male", + "age": 30, + "address": { + "state": "Delaware", + "city": "Belgreen" + } + }, + { + "id": 5859, + "name": "Mattie Blair", + "gender": "female", + "age": 66, + "address": { + "state": "Mississippi", + "city": "Vale" + } + }, + { + "id": 5860, + "name": "Pace Frederick", + "gender": "male", + "age": 52, + "address": { + "state": "Pennsylvania", + "city": "Westmoreland" + } + }, + { + "id": 5861, + "name": "Casey Knight", + "gender": "male", + "age": 41, + "address": { + "state": "Louisiana", + "city": "Forbestown" + } + }, + { + "id": 5862, + "name": "Vicky Pitts", + "gender": "female", + "age": 31, + "address": { + "state": "Kentucky", + "city": "Loma" + } + }, + { + "id": 5863, + "name": "Bender Good", + "gender": "male", + "age": 46, + "address": { + "state": "Hawaii", + "city": "Walton" + } + }, + { + "id": 5864, + "name": "Melanie Wallace", + "gender": "female", + "age": 21, + "address": { + "state": "Georgia", + "city": "Chaparrito" + } + }, + { + "id": 5865, + "name": "Thompson Byrd", + "gender": "male", + "age": 70, + "address": { + "state": "North Carolina", + "city": "Dellview" + } + }, + { + "id": 5866, + "name": "Faith Page", + "gender": "female", + "age": 54, + "address": { + "state": "Florida", + "city": "Homeland" + } + }, + { + "id": 5867, + "name": "Ramsey Shields", + "gender": "male", + "age": 50, + "address": { + "state": "Idaho", + "city": "Sanford" + } + }, + { + "id": 5868, + "name": "Meyer Hernandez", + "gender": "male", + "age": 30, + "address": { + "state": "Arizona", + "city": "Mansfield" + } + }, + { + "id": 5869, + "name": "Jodie Sanders", + "gender": "female", + "age": 37, + "address": { + "state": "Massachusetts", + "city": "Knowlton" + } + }, + { + "id": 5870, + "name": "Shari Newton", + "gender": "female", + "age": 33, + "address": { + "state": "Montana", + "city": "Konterra" + } + }, + { + "id": 5871, + "name": "Rosario Compton", + "gender": "male", + "age": 69, + "address": { + "state": "Alaska", + "city": "Byrnedale" + } + }, + { + "id": 5872, + "name": "Barker Maxwell", + "gender": "male", + "age": 78, + "address": { + "state": "Alabama", + "city": "Reno" + } + }, + { + "id": 5873, + "name": "Amie Cervantes", + "gender": "female", + "age": 21, + "address": { + "state": "Illinois", + "city": "Machias" + } + }, + { + "id": 5874, + "name": "Frieda Rowland", + "gender": "female", + "age": 27, + "address": { + "state": "Ohio", + "city": "Jacksonwald" + } + }, + { + "id": 5875, + "name": "Gould Hubbard", + "gender": "male", + "age": 49, + "address": { + "state": "Kansas", + "city": "Hall" + } + }, + { + "id": 5876, + "name": "Lucas Poole", + "gender": "male", + "age": 37, + "address": { + "state": "Vermont", + "city": "Stagecoach" + } + }, + { + "id": 5877, + "name": "Ava Oneill", + "gender": "female", + "age": 56, + "address": { + "state": "South Dakota", + "city": "Moscow" + } + }, + { + "id": 5878, + "name": "Gay Justice", + "gender": "male", + "age": 28, + "address": { + "state": "Wisconsin", + "city": "Bentonville" + } + }, + { + "id": 5879, + "name": "Monroe Rojas", + "gender": "male", + "age": 40, + "address": { + "state": "Rhode Island", + "city": "Haring" + } + }, + { + "id": 5880, + "name": "Angel Clements", + "gender": "female", + "age": 47, + "address": { + "state": "Kansas", + "city": "Grantville" + } + }, + { + "id": 5881, + "name": "Marion Mays", + "gender": "female", + "age": 42, + "address": { + "state": "Montana", + "city": "Evergreen" + } + }, + { + "id": 5882, + "name": "Dominique Foster", + "gender": "female", + "age": 48, + "address": { + "state": "Nevada", + "city": "Clara" + } + }, + { + "id": 5883, + "name": "Huber Watts", + "gender": "male", + "age": 30, + "address": { + "state": "Nebraska", + "city": "Freetown" + } + }, + { + "id": 5884, + "name": "Jacobson Dean", + "gender": "male", + "age": 24, + "address": { + "state": "Indiana", + "city": "Retsof" + } + }, + { + "id": 5885, + "name": "Mullen Bryan", + "gender": "male", + "age": 27, + "address": { + "state": "West Virginia", + "city": "Allamuchy" + } + }, + { + "id": 5886, + "name": "James Marks", + "gender": "female", + "age": 72, + "address": { + "state": "Ohio", + "city": "Holcombe" + } + }, + { + "id": 5887, + "name": "Ilene Dyer", + "gender": "female", + "age": 42, + "address": { + "state": "California", + "city": "Lookingglass" + } + }, + { + "id": 5888, + "name": "Vance Pope", + "gender": "male", + "age": 47, + "address": { + "state": "Utah", + "city": "Ladera" + } + }, + { + "id": 5889, + "name": "Corina Paul", + "gender": "female", + "age": 38, + "address": { + "state": "Oklahoma", + "city": "Layhill" + } + }, + { + "id": 5890, + "name": "Phoebe Rasmussen", + "gender": "female", + "age": 31, + "address": { + "state": "Hawaii", + "city": "Drummond" + } + }, + { + "id": 5891, + "name": "Kirsten Russo", + "gender": "female", + "age": 60, + "address": { + "state": "Wyoming", + "city": "Gouglersville" + } + }, + { + "id": 5892, + "name": "Willa Ferguson", + "gender": "female", + "age": 45, + "address": { + "state": "Arkansas", + "city": "Yogaville" + } + }, + { + "id": 5893, + "name": "Bentley Tillman", + "gender": "male", + "age": 80, + "address": { + "state": "Missouri", + "city": "Adamstown" + } + }, + { + "id": 5894, + "name": "Pickett Guerra", + "gender": "male", + "age": 49, + "address": { + "state": "Massachusetts", + "city": "Osage" + } + }, + { + "id": 5895, + "name": "Kent Bowman", + "gender": "male", + "age": 18, + "address": { + "state": "North Dakota", + "city": "Chloride" + } + }, + { + "id": 5896, + "name": "Battle Rodriquez", + "gender": "male", + "age": 20, + "address": { + "state": "Oregon", + "city": "Taycheedah" + } + }, + { + "id": 5897, + "name": "Holt Baker", + "gender": "male", + "age": 53, + "address": { + "state": "South Carolina", + "city": "Newkirk" + } + }, + { + "id": 5898, + "name": "Alyce Hawkins", + "gender": "female", + "age": 71, + "address": { + "state": "Rhode Island", + "city": "Beyerville" + } + }, + { + "id": 5899, + "name": "Orr Dejesus", + "gender": "male", + "age": 55, + "address": { + "state": "Minnesota", + "city": "Dale" + } + }, + { + "id": 5900, + "name": "Jenkins Dixon", + "gender": "male", + "age": 17, + "address": { + "state": "Mississippi", + "city": "Dunlo" + } + }, + { + "id": 5901, + "name": "Bird Maddox", + "gender": "male", + "age": 29, + "address": { + "state": "Virginia", + "city": "Stonybrook" + } + }, + { + "id": 5902, + "name": "Darcy Wiley", + "gender": "female", + "age": 48, + "address": { + "state": "Tennessee", + "city": "Camino" + } + }, + { + "id": 5903, + "name": "Irene Dunn", + "gender": "female", + "age": 68, + "address": { + "state": "Texas", + "city": "Salvo" + } + }, + { + "id": 5904, + "name": "Graciela Williams", + "gender": "female", + "age": 46, + "address": { + "state": "Pennsylvania", + "city": "Healy" + } + }, + { + "id": 5905, + "name": "Summer Harris", + "gender": "female", + "age": 45, + "address": { + "state": "Illinois", + "city": "Shaft" + } + }, + { + "id": 5906, + "name": "Collier Odonnell", + "gender": "male", + "age": 31, + "address": { + "state": "Michigan", + "city": "Crown" + } + }, + { + "id": 5907, + "name": "Freda Lancaster", + "gender": "female", + "age": 17, + "address": { + "state": "New Hampshire", + "city": "Saticoy" + } + }, + { + "id": 5908, + "name": "Boyd Copeland", + "gender": "male", + "age": 19, + "address": { + "state": "Maine", + "city": "Aguila" + } + }, + { + "id": 5909, + "name": "Antoinette Bass", + "gender": "female", + "age": 33, + "address": { + "state": "Vermont", + "city": "Groton" + } + }, + { + "id": 5910, + "name": "Mcmahon Robinson", + "gender": "male", + "age": 82, + "address": { + "state": "Alaska", + "city": "Chestnut" + } + }, + { + "id": 5911, + "name": "Lowery Dillard", + "gender": "male", + "age": 36, + "address": { + "state": "Kentucky", + "city": "Lawrence" + } + }, + { + "id": 5912, + "name": "James Rice", + "gender": "male", + "age": 38, + "address": { + "state": "Colorado", + "city": "Turah" + } + }, + { + "id": 5913, + "name": "Janine Hudson", + "gender": "female", + "age": 47, + "address": { + "state": "Washington", + "city": "Westwood" + } + }, + { + "id": 5914, + "name": "Russell Christensen", + "gender": "male", + "age": 18, + "address": { + "state": "Wisconsin", + "city": "Hemlock" + } + }, + { + "id": 5915, + "name": "Hewitt Hodge", + "gender": "male", + "age": 64, + "address": { + "state": "New Mexico", + "city": "Hardyville" + } + }, + { + "id": 5916, + "name": "Rivera Clayton", + "gender": "male", + "age": 64, + "address": { + "state": "South Dakota", + "city": "Loyalhanna" + } + }, + { + "id": 5917, + "name": "Heather Nguyen", + "gender": "female", + "age": 50, + "address": { + "state": "Alabama", + "city": "Grandview" + } + }, + { + "id": 5918, + "name": "Brigitte Bartlett", + "gender": "female", + "age": 74, + "address": { + "state": "Georgia", + "city": "Cliff" + } + }, + { + "id": 5919, + "name": "Rodriguez Phelps", + "gender": "male", + "age": 41, + "address": { + "state": "Maryland", + "city": "Watrous" + } + }, + { + "id": 5920, + "name": "Frazier Lucas", + "gender": "male", + "age": 70, + "address": { + "state": "Idaho", + "city": "Gibbsville" + } + }, + { + "id": 5921, + "name": "Horne Roberson", + "gender": "male", + "age": 23, + "address": { + "state": "New York", + "city": "Bellamy" + } + }, + { + "id": 5922, + "name": "Evangelina Ware", + "gender": "female", + "age": 28, + "address": { + "state": "Arizona", + "city": "Garberville" + } + }, + { + "id": 5923, + "name": "Simon Whitney", + "gender": "male", + "age": 68, + "address": { + "state": "Delaware", + "city": "Foscoe" + } + }, + { + "id": 5924, + "name": "Janie Mclaughlin", + "gender": "female", + "age": 57, + "address": { + "state": "New Jersey", + "city": "Lavalette" + } + }, + { + "id": 5925, + "name": "Mari Conley", + "gender": "female", + "age": 22, + "address": { + "state": "Connecticut", + "city": "Crenshaw" + } + }, + { + "id": 5926, + "name": "Mcbride Frederick", + "gender": "male", + "age": 69, + "address": { + "state": "Iowa", + "city": "Tuskahoma" + } + }, + { + "id": 5927, + "name": "Mccall Peters", + "gender": "male", + "age": 44, + "address": { + "state": "Florida", + "city": "Moscow" + } + }, + { + "id": 5928, + "name": "Greer Powers", + "gender": "male", + "age": 21, + "address": { + "state": "Louisiana", + "city": "Rivereno" + } + }, + { + "id": 5929, + "name": "Eliza Colon", + "gender": "female", + "age": 29, + "address": { + "state": "Connecticut", + "city": "Glenbrook" + } + }, + { + "id": 5930, + "name": "Jeannette Ayala", + "gender": "female", + "age": 54, + "address": { + "state": "Arkansas", + "city": "Lowgap" + } + }, + { + "id": 5931, + "name": "Sasha Mcdaniel", + "gender": "female", + "age": 39, + "address": { + "state": "Minnesota", + "city": "Monument" + } + }, + { + "id": 5932, + "name": "Lolita Baxter", + "gender": "female", + "age": 26, + "address": { + "state": "Idaho", + "city": "Roosevelt" + } + }, + { + "id": 5933, + "name": "Watkins Leonard", + "gender": "male", + "age": 54, + "address": { + "state": "Ohio", + "city": "Bawcomville" + } + }, + { + "id": 5934, + "name": "Allison Pruitt", + "gender": "male", + "age": 71, + "address": { + "state": "Alabama", + "city": "Cazadero" + } + }, + { + "id": 5935, + "name": "Davenport Hobbs", + "gender": "male", + "age": 21, + "address": { + "state": "West Virginia", + "city": "Curtice" + } + }, + { + "id": 5936, + "name": "Lola Long", + "gender": "female", + "age": 45, + "address": { + "state": "South Dakota", + "city": "Glasgow" + } + }, + { + "id": 5937, + "name": "Ochoa Sullivan", + "gender": "male", + "age": 42, + "address": { + "state": "Virginia", + "city": "Sanborn" + } + }, + { + "id": 5938, + "name": "Penelope Mays", + "gender": "female", + "age": 64, + "address": { + "state": "Florida", + "city": "Rosine" + } + }, + { + "id": 5939, + "name": "Lorena Nolan", + "gender": "female", + "age": 26, + "address": { + "state": "New Hampshire", + "city": "Abrams" + } + }, + { + "id": 5940, + "name": "Lorraine Doyle", + "gender": "female", + "age": 70, + "address": { + "state": "Kentucky", + "city": "Witmer" + } + }, + { + "id": 5941, + "name": "Michele Blevins", + "gender": "female", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Springhill" + } + }, + { + "id": 5942, + "name": "Lucinda Herman", + "gender": "female", + "age": 37, + "address": { + "state": "South Carolina", + "city": "Centerville" + } + }, + { + "id": 5943, + "name": "Danielle Payne", + "gender": "female", + "age": 17, + "address": { + "state": "Louisiana", + "city": "Durham" + } + }, + { + "id": 5944, + "name": "Avis Nichols", + "gender": "female", + "age": 27, + "address": { + "state": "Nebraska", + "city": "Crawfordsville" + } + }, + { + "id": 5945, + "name": "Frederick Sharp", + "gender": "male", + "age": 29, + "address": { + "state": "Michigan", + "city": "Herbster" + } + }, + { + "id": 5946, + "name": "Ruthie Ortega", + "gender": "female", + "age": 22, + "address": { + "state": "Maryland", + "city": "Boling" + } + }, + { + "id": 5947, + "name": "Celina Gordon", + "gender": "female", + "age": 44, + "address": { + "state": "Iowa", + "city": "Calvary" + } + }, + { + "id": 5948, + "name": "Alvarez Prince", + "gender": "male", + "age": 59, + "address": { + "state": "Wisconsin", + "city": "Lisco" + } + }, + { + "id": 5949, + "name": "Lorna Aguilar", + "gender": "female", + "age": 25, + "address": { + "state": "Georgia", + "city": "Wolcott" + } + }, + { + "id": 5950, + "name": "Dominique Lowe", + "gender": "female", + "age": 40, + "address": { + "state": "North Dakota", + "city": "Thynedale" + } + }, + { + "id": 5951, + "name": "Roberta Castillo", + "gender": "female", + "age": 52, + "address": { + "state": "Nevada", + "city": "Irwin" + } + }, + { + "id": 5952, + "name": "Deena Crosby", + "gender": "female", + "age": 77, + "address": { + "state": "Texas", + "city": "Topanga" + } + }, + { + "id": 5953, + "name": "Marcie Odonnell", + "gender": "female", + "age": 64, + "address": { + "state": "New Mexico", + "city": "Maury" + } + }, + { + "id": 5954, + "name": "Oneil Blair", + "gender": "male", + "age": 70, + "address": { + "state": "Oregon", + "city": "Soudan" + } + }, + { + "id": 5955, + "name": "Melba Schwartz", + "gender": "female", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Dawn" + } + }, + { + "id": 5956, + "name": "Chan Booker", + "gender": "male", + "age": 39, + "address": { + "state": "Mississippi", + "city": "Norfolk" + } + }, + { + "id": 5957, + "name": "Jamie Combs", + "gender": "female", + "age": 18, + "address": { + "state": "Colorado", + "city": "Driftwood" + } + }, + { + "id": 5958, + "name": "Craig Peters", + "gender": "male", + "age": 75, + "address": { + "state": "Alaska", + "city": "Bagtown" + } + }, + { + "id": 5959, + "name": "Lorie Shepherd", + "gender": "female", + "age": 41, + "address": { + "state": "New York", + "city": "Trail" + } + }, + { + "id": 5960, + "name": "Celeste Torres", + "gender": "female", + "age": 36, + "address": { + "state": "Arizona", + "city": "Dundee" + } + }, + { + "id": 5961, + "name": "Alma Houston", + "gender": "female", + "age": 43, + "address": { + "state": "California", + "city": "Boonville" + } + }, + { + "id": 5962, + "name": "Carney Terrell", + "gender": "male", + "age": 59, + "address": { + "state": "Hawaii", + "city": "Enetai" + } + }, + { + "id": 5963, + "name": "Kristy Branch", + "gender": "female", + "age": 35, + "address": { + "state": "Maine", + "city": "Masthope" + } + }, + { + "id": 5964, + "name": "Turner Lloyd", + "gender": "male", + "age": 24, + "address": { + "state": "Montana", + "city": "Sedley" + } + }, + { + "id": 5965, + "name": "Sanchez Mercado", + "gender": "male", + "age": 57, + "address": { + "state": "Kansas", + "city": "Gasquet" + } + }, + { + "id": 5966, + "name": "Roth Burton", + "gender": "male", + "age": 65, + "address": { + "state": "Washington", + "city": "Churchill" + } + }, + { + "id": 5967, + "name": "Mcintyre Hull", + "gender": "male", + "age": 23, + "address": { + "state": "Rhode Island", + "city": "Williams" + } + }, + { + "id": 5968, + "name": "Grace Tillman", + "gender": "female", + "age": 19, + "address": { + "state": "New Jersey", + "city": "Jacksonwald" + } + }, + { + "id": 5969, + "name": "Langley Merrill", + "gender": "male", + "age": 82, + "address": { + "state": "Delaware", + "city": "Bergoo" + } + }, + { + "id": 5970, + "name": "Natasha Nelson", + "gender": "female", + "age": 81, + "address": { + "state": "Indiana", + "city": "Kieler" + } + }, + { + "id": 5971, + "name": "Leach Mcdonald", + "gender": "male", + "age": 24, + "address": { + "state": "Wyoming", + "city": "Kohatk" + } + }, + { + "id": 5972, + "name": "Lindsay Landry", + "gender": "male", + "age": 73, + "address": { + "state": "Vermont", + "city": "Orason" + } + }, + { + "id": 5973, + "name": "Rosemarie Waters", + "gender": "female", + "age": 39, + "address": { + "state": "Massachusetts", + "city": "Salix" + } + }, + { + "id": 5974, + "name": "Wilkins Jensen", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Madaket" + } + }, + { + "id": 5975, + "name": "Jewell Benson", + "gender": "female", + "age": 31, + "address": { + "state": "Illinois", + "city": "Odessa" + } + }, + { + "id": 5976, + "name": "Della Mclaughlin", + "gender": "female", + "age": 78, + "address": { + "state": "Utah", + "city": "Cressey" + } + }, + { + "id": 5977, + "name": "Bowman Flores", + "gender": "male", + "age": 47, + "address": { + "state": "Missouri", + "city": "Blairstown" + } + }, + { + "id": 5978, + "name": "Baird Woodward", + "gender": "male", + "age": 73, + "address": { + "state": "Mississippi", + "city": "Zeba" + } + }, + { + "id": 5979, + "name": "Odom Burgess", + "gender": "male", + "age": 64, + "address": { + "state": "Illinois", + "city": "Beason" + } + }, + { + "id": 5980, + "name": "Audrey Gilbert", + "gender": "female", + "age": 53, + "address": { + "state": "Arkansas", + "city": "Allison" + } + }, + { + "id": 5981, + "name": "Angelica Mooney", + "gender": "female", + "age": 76, + "address": { + "state": "Wisconsin", + "city": "Windsor" + } + }, + { + "id": 5982, + "name": "Lois Eaton", + "gender": "female", + "age": 58, + "address": { + "state": "Nevada", + "city": "Ruckersville" + } + }, + { + "id": 5983, + "name": "Briggs Guerrero", + "gender": "male", + "age": 18, + "address": { + "state": "Kentucky", + "city": "Veyo" + } + }, + { + "id": 5984, + "name": "Mable Richards", + "gender": "female", + "age": 46, + "address": { + "state": "California", + "city": "Delwood" + } + }, + { + "id": 5985, + "name": "Ruthie Farmer", + "gender": "female", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Loretto" + } + }, + { + "id": 5986, + "name": "Klein Garza", + "gender": "male", + "age": 52, + "address": { + "state": "Alabama", + "city": "Healy" + } + }, + { + "id": 5987, + "name": "Stewart Roy", + "gender": "male", + "age": 20, + "address": { + "state": "Michigan", + "city": "Osmond" + } + }, + { + "id": 5988, + "name": "Hahn Hartman", + "gender": "male", + "age": 26, + "address": { + "state": "Tennessee", + "city": "Kilbourne" + } + }, + { + "id": 5989, + "name": "Vazquez Chandler", + "gender": "male", + "age": 24, + "address": { + "state": "Georgia", + "city": "Northridge" + } + }, + { + "id": 5990, + "name": "Day Tran", + "gender": "male", + "age": 28, + "address": { + "state": "New York", + "city": "Sehili" + } + }, + { + "id": 5991, + "name": "Lynnette Hurst", + "gender": "female", + "age": 61, + "address": { + "state": "New Jersey", + "city": "Terlingua" + } + }, + { + "id": 5992, + "name": "Chaney Spears", + "gender": "male", + "age": 53, + "address": { + "state": "North Dakota", + "city": "Boling" + } + }, + { + "id": 5993, + "name": "Albert Hopkins", + "gender": "male", + "age": 78, + "address": { + "state": "West Virginia", + "city": "Edgewater" + } + }, + { + "id": 5994, + "name": "Antoinette Travis", + "gender": "female", + "age": 31, + "address": { + "state": "Rhode Island", + "city": "Ezel" + } + }, + { + "id": 5995, + "name": "York Medina", + "gender": "male", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Brewster" + } + }, + { + "id": 5996, + "name": "Polly Potter", + "gender": "female", + "age": 29, + "address": { + "state": "Connecticut", + "city": "Lumberton" + } + }, + { + "id": 5997, + "name": "Patton Sharp", + "gender": "male", + "age": 82, + "address": { + "state": "Arizona", + "city": "Marshall" + } + }, + { + "id": 5998, + "name": "Loretta Valencia", + "gender": "female", + "age": 68, + "address": { + "state": "Massachusetts", + "city": "Rosburg" + } + }, + { + "id": 5999, + "name": "Margaret Jennings", + "gender": "female", + "age": 82, + "address": { + "state": "Colorado", + "city": "Allamuchy" + } + }, + { + "id": 6000, + "name": "Suarez Glass", + "gender": "male", + "age": 27, + "address": { + "state": "New Mexico", + "city": "Dale" + } + }, + { + "id": 6001, + "name": "Alexandria Maynard", + "gender": "female", + "age": 69, + "address": { + "state": "Delaware", + "city": "Sidman" + } + }, + { + "id": 6002, + "name": "Wendy Wooten", + "gender": "female", + "age": 49, + "address": { + "state": "Virginia", + "city": "Cotopaxi" + } + }, + { + "id": 6003, + "name": "Gamble Levy", + "gender": "male", + "age": 76, + "address": { + "state": "Montana", + "city": "Dixie" + } + }, + { + "id": 6004, + "name": "Black Richmond", + "gender": "male", + "age": 63, + "address": { + "state": "Texas", + "city": "Dexter" + } + }, + { + "id": 6005, + "name": "Schroeder Robbins", + "gender": "male", + "age": 33, + "address": { + "state": "North Carolina", + "city": "Nutrioso" + } + }, + { + "id": 6006, + "name": "Nora Gutierrez", + "gender": "female", + "age": 30, + "address": { + "state": "New Hampshire", + "city": "Linganore" + } + }, + { + "id": 6007, + "name": "Nina Emerson", + "gender": "female", + "age": 68, + "address": { + "state": "Ohio", + "city": "Durham" + } + }, + { + "id": 6008, + "name": "Francis Williamson", + "gender": "female", + "age": 62, + "address": { + "state": "Nebraska", + "city": "Dahlen" + } + }, + { + "id": 6009, + "name": "Mccarty Hill", + "gender": "male", + "age": 77, + "address": { + "state": "Florida", + "city": "Eureka" + } + }, + { + "id": 6010, + "name": "Patti Bryan", + "gender": "female", + "age": 75, + "address": { + "state": "Kansas", + "city": "Thynedale" + } + }, + { + "id": 6011, + "name": "Pennington Tate", + "gender": "male", + "age": 36, + "address": { + "state": "Utah", + "city": "Floriston" + } + }, + { + "id": 6012, + "name": "Melton Burnett", + "gender": "male", + "age": 64, + "address": { + "state": "Iowa", + "city": "Mooresburg" + } + }, + { + "id": 6013, + "name": "Baldwin Reed", + "gender": "male", + "age": 20, + "address": { + "state": "Oklahoma", + "city": "Garnet" + } + }, + { + "id": 6014, + "name": "Jones Sanford", + "gender": "male", + "age": 39, + "address": { + "state": "Pennsylvania", + "city": "Elfrida" + } + }, + { + "id": 6015, + "name": "Katy Church", + "gender": "female", + "age": 63, + "address": { + "state": "Indiana", + "city": "Herald" + } + }, + { + "id": 6016, + "name": "Langley Case", + "gender": "male", + "age": 23, + "address": { + "state": "Alaska", + "city": "Alafaya" + } + }, + { + "id": 6017, + "name": "Rosa Heath", + "gender": "female", + "age": 34, + "address": { + "state": "South Dakota", + "city": "Hemlock" + } + }, + { + "id": 6018, + "name": "Garrison Johnson", + "gender": "male", + "age": 62, + "address": { + "state": "Washington", + "city": "Maxville" + } + }, + { + "id": 6019, + "name": "Burton Green", + "gender": "male", + "age": 59, + "address": { + "state": "Vermont", + "city": "Marienthal" + } + }, + { + "id": 6020, + "name": "Patterson Charles", + "gender": "male", + "age": 25, + "address": { + "state": "Maine", + "city": "Springhill" + } + }, + { + "id": 6021, + "name": "Leona Berry", + "gender": "female", + "age": 60, + "address": { + "state": "Missouri", + "city": "Waverly" + } + }, + { + "id": 6022, + "name": "Clarke Trevino", + "gender": "male", + "age": 43, + "address": { + "state": "Idaho", + "city": "Stockdale" + } + }, + { + "id": 6023, + "name": "Franklin Brewer", + "gender": "male", + "age": 43, + "address": { + "state": "South Carolina", + "city": "Manila" + } + }, + { + "id": 6024, + "name": "Murray Walter", + "gender": "male", + "age": 52, + "address": { + "state": "Maryland", + "city": "Berlin" + } + }, + { + "id": 6025, + "name": "Ester Rogers", + "gender": "female", + "age": 52, + "address": { + "state": "Minnesota", + "city": "Sheatown" + } + }, + { + "id": 6026, + "name": "Solomon Acevedo", + "gender": "male", + "age": 80, + "address": { + "state": "Oregon", + "city": "Camas" + } + }, + { + "id": 6027, + "name": "Gill Douglas", + "gender": "male", + "age": 76, + "address": { + "state": "Oklahoma", + "city": "Brooktrails" + } + }, + { + "id": 6028, + "name": "Melton Harper", + "gender": "male", + "age": 29, + "address": { + "state": "Iowa", + "city": "Trail" + } + }, + { + "id": 6029, + "name": "Horne Boyer", + "gender": "male", + "age": 24, + "address": { + "state": "Missouri", + "city": "Helen" + } + }, + { + "id": 6030, + "name": "Jimenez Harding", + "gender": "male", + "age": 31, + "address": { + "state": "Ohio", + "city": "Machias" + } + }, + { + "id": 6031, + "name": "Mcclain Navarro", + "gender": "male", + "age": 35, + "address": { + "state": "Wyoming", + "city": "Sussex" + } + }, + { + "id": 6032, + "name": "Acosta Cochran", + "gender": "male", + "age": 80, + "address": { + "state": "Alabama", + "city": "Chesterfield" + } + }, + { + "id": 6033, + "name": "Anderson Hernandez", + "gender": "male", + "age": 77, + "address": { + "state": "Michigan", + "city": "Tyhee" + } + }, + { + "id": 6034, + "name": "Tracey Perkins", + "gender": "female", + "age": 74, + "address": { + "state": "Maine", + "city": "Summerset" + } + }, + { + "id": 6035, + "name": "Gallegos Mcneil", + "gender": "male", + "age": 74, + "address": { + "state": "Washington", + "city": "Gerber" + } + }, + { + "id": 6036, + "name": "Genevieve Stark", + "gender": "female", + "age": 34, + "address": { + "state": "Oregon", + "city": "Jessie" + } + }, + { + "id": 6037, + "name": "Hunter Nunez", + "gender": "male", + "age": 77, + "address": { + "state": "Maryland", + "city": "Cobbtown" + } + }, + { + "id": 6038, + "name": "Shelia Rosa", + "gender": "female", + "age": 59, + "address": { + "state": "South Dakota", + "city": "Kent" + } + }, + { + "id": 6039, + "name": "Sheree Puckett", + "gender": "female", + "age": 25, + "address": { + "state": "California", + "city": "Tuttle" + } + }, + { + "id": 6040, + "name": "Estrada Hamilton", + "gender": "male", + "age": 66, + "address": { + "state": "Vermont", + "city": "Wanship" + } + }, + { + "id": 6041, + "name": "Whitley Mccray", + "gender": "male", + "age": 44, + "address": { + "state": "Minnesota", + "city": "Urbana" + } + }, + { + "id": 6042, + "name": "Aida Chen", + "gender": "female", + "age": 68, + "address": { + "state": "North Dakota", + "city": "Manila" + } + }, + { + "id": 6043, + "name": "Casey Jacobson", + "gender": "female", + "age": 53, + "address": { + "state": "Illinois", + "city": "Onton" + } + }, + { + "id": 6044, + "name": "Kaitlin Griffin", + "gender": "female", + "age": 72, + "address": { + "state": "Mississippi", + "city": "Brutus" + } + }, + { + "id": 6045, + "name": "Daugherty Dominguez", + "gender": "male", + "age": 62, + "address": { + "state": "Nebraska", + "city": "Yogaville" + } + }, + { + "id": 6046, + "name": "Randolph Butler", + "gender": "male", + "age": 68, + "address": { + "state": "Delaware", + "city": "Coyote" + } + }, + { + "id": 6047, + "name": "Tammy Cortez", + "gender": "female", + "age": 66, + "address": { + "state": "New Jersey", + "city": "Clara" + } + }, + { + "id": 6048, + "name": "Parsons Hooper", + "gender": "male", + "age": 77, + "address": { + "state": "South Carolina", + "city": "Bluetown" + } + }, + { + "id": 6049, + "name": "Sophia Ayala", + "gender": "female", + "age": 27, + "address": { + "state": "Wisconsin", + "city": "Alamo" + } + }, + { + "id": 6050, + "name": "Montgomery Sosa", + "gender": "male", + "age": 82, + "address": { + "state": "Utah", + "city": "Biddle" + } + }, + { + "id": 6051, + "name": "Lloyd Melton", + "gender": "male", + "age": 22, + "address": { + "state": "West Virginia", + "city": "Dowling" + } + }, + { + "id": 6052, + "name": "Nadine Taylor", + "gender": "female", + "age": 24, + "address": { + "state": "Tennessee", + "city": "Manitou" + } + }, + { + "id": 6053, + "name": "Jaclyn Horton", + "gender": "female", + "age": 82, + "address": { + "state": "Florida", + "city": "Lavalette" + } + }, + { + "id": 6054, + "name": "Andrews Hopkins", + "gender": "male", + "age": 65, + "address": { + "state": "Hawaii", + "city": "Greensburg" + } + }, + { + "id": 6055, + "name": "Robinson Rocha", + "gender": "male", + "age": 38, + "address": { + "state": "Massachusetts", + "city": "Malo" + } + }, + { + "id": 6056, + "name": "Natasha Mcgowan", + "gender": "female", + "age": 75, + "address": { + "state": "Nevada", + "city": "Bordelonville" + } + }, + { + "id": 6057, + "name": "Sharpe Dotson", + "gender": "male", + "age": 32, + "address": { + "state": "Kentucky", + "city": "Roeville" + } + }, + { + "id": 6058, + "name": "Anthony Delacruz", + "gender": "male", + "age": 47, + "address": { + "state": "Arkansas", + "city": "Blue" + } + }, + { + "id": 6059, + "name": "Cecile Coffey", + "gender": "female", + "age": 37, + "address": { + "state": "Indiana", + "city": "Orason" + } + }, + { + "id": 6060, + "name": "Sophie Conley", + "gender": "female", + "age": 41, + "address": { + "state": "New Hampshire", + "city": "Buxton" + } + }, + { + "id": 6061, + "name": "Berg Crane", + "gender": "male", + "age": 66, + "address": { + "state": "Arizona", + "city": "Rutherford" + } + }, + { + "id": 6062, + "name": "Marissa Lott", + "gender": "female", + "age": 28, + "address": { + "state": "Connecticut", + "city": "Fairmount" + } + }, + { + "id": 6063, + "name": "Washington Obrien", + "gender": "male", + "age": 41, + "address": { + "state": "Texas", + "city": "Mahtowa" + } + }, + { + "id": 6064, + "name": "Patrica Kennedy", + "gender": "female", + "age": 52, + "address": { + "state": "Montana", + "city": "Hampstead" + } + }, + { + "id": 6065, + "name": "Rosalind Parsons", + "gender": "female", + "age": 82, + "address": { + "state": "New York", + "city": "Cliff" + } + }, + { + "id": 6066, + "name": "Bond Reese", + "gender": "male", + "age": 72, + "address": { + "state": "Pennsylvania", + "city": "Echo" + } + }, + { + "id": 6067, + "name": "Maryann Bolton", + "gender": "female", + "age": 72, + "address": { + "state": "Idaho", + "city": "Steinhatchee" + } + }, + { + "id": 6068, + "name": "Simpson Munoz", + "gender": "male", + "age": 73, + "address": { + "state": "Colorado", + "city": "Volta" + } + }, + { + "id": 6069, + "name": "Noemi Fletcher", + "gender": "female", + "age": 44, + "address": { + "state": "New Mexico", + "city": "Haena" + } + }, + { + "id": 6070, + "name": "Suzanne Cantu", + "gender": "female", + "age": 43, + "address": { + "state": "Georgia", + "city": "Saranap" + } + }, + { + "id": 6071, + "name": "Padilla Owens", + "gender": "male", + "age": 50, + "address": { + "state": "Louisiana", + "city": "Blandburg" + } + }, + { + "id": 6072, + "name": "Brandi Turner", + "gender": "female", + "age": 43, + "address": { + "state": "Rhode Island", + "city": "Cashtown" + } + }, + { + "id": 6073, + "name": "Cooke Bird", + "gender": "male", + "age": 50, + "address": { + "state": "Virginia", + "city": "Mathews" + } + }, + { + "id": 6074, + "name": "Lillie Avila", + "gender": "female", + "age": 46, + "address": { + "state": "North Carolina", + "city": "Cannondale" + } + }, + { + "id": 6075, + "name": "Dolly Stevenson", + "gender": "female", + "age": 61, + "address": { + "state": "Kansas", + "city": "Lutsen" + } + }, + { + "id": 6076, + "name": "Strong Nolan", + "gender": "male", + "age": 76, + "address": { + "state": "Missouri", + "city": "Lowgap" + } + }, + { + "id": 6077, + "name": "Frazier Shaffer", + "gender": "male", + "age": 17, + "address": { + "state": "Maine", + "city": "Walker" + } + }, + { + "id": 6078, + "name": "Munoz Leon", + "gender": "male", + "age": 33, + "address": { + "state": "Oklahoma", + "city": "Brandermill" + } + }, + { + "id": 6079, + "name": "Abigail Kent", + "gender": "female", + "age": 71, + "address": { + "state": "California", + "city": "Jacumba" + } + }, + { + "id": 6080, + "name": "Carmella Pratt", + "gender": "female", + "age": 65, + "address": { + "state": "New York", + "city": "Holcombe" + } + }, + { + "id": 6081, + "name": "May Sawyer", + "gender": "female", + "age": 40, + "address": { + "state": "Virginia", + "city": "Succasunna" + } + }, + { + "id": 6082, + "name": "Cortez Perez", + "gender": "male", + "age": 68, + "address": { + "state": "New Hampshire", + "city": "Vivian" + } + }, + { + "id": 6083, + "name": "Mcmillan Mejia", + "gender": "male", + "age": 49, + "address": { + "state": "Arizona", + "city": "Washington" + } + }, + { + "id": 6084, + "name": "Brown Lowery", + "gender": "male", + "age": 26, + "address": { + "state": "Oregon", + "city": "Sterling" + } + }, + { + "id": 6085, + "name": "Robbie Terrell", + "gender": "female", + "age": 55, + "address": { + "state": "Texas", + "city": "Hegins" + } + }, + { + "id": 6086, + "name": "Janell Chambers", + "gender": "female", + "age": 62, + "address": { + "state": "Kansas", + "city": "Ruffin" + } + }, + { + "id": 6087, + "name": "Ashlee Valenzuela", + "gender": "female", + "age": 80, + "address": { + "state": "Wyoming", + "city": "Bannock" + } + }, + { + "id": 6088, + "name": "Bradley Rasmussen", + "gender": "male", + "age": 44, + "address": { + "state": "Tennessee", + "city": "Dundee" + } + }, + { + "id": 6089, + "name": "Tamera Sloan", + "gender": "female", + "age": 31, + "address": { + "state": "North Dakota", + "city": "Fairacres" + } + }, + { + "id": 6090, + "name": "Hopkins Burt", + "gender": "male", + "age": 42, + "address": { + "state": "Michigan", + "city": "Gardners" + } + }, + { + "id": 6091, + "name": "Frank Mack", + "gender": "male", + "age": 51, + "address": { + "state": "Rhode Island", + "city": "Beaulieu" + } + }, + { + "id": 6092, + "name": "Farmer Jimenez", + "gender": "male", + "age": 29, + "address": { + "state": "New Jersey", + "city": "Manchester" + } + }, + { + "id": 6093, + "name": "Horton Haney", + "gender": "male", + "age": 26, + "address": { + "state": "Colorado", + "city": "Lydia" + } + }, + { + "id": 6094, + "name": "Livingston Rojas", + "gender": "male", + "age": 32, + "address": { + "state": "Washington", + "city": "Advance" + } + }, + { + "id": 6095, + "name": "Rosa Hodges", + "gender": "male", + "age": 73, + "address": { + "state": "Georgia", + "city": "Vincent" + } + }, + { + "id": 6096, + "name": "Candice Waters", + "gender": "female", + "age": 29, + "address": { + "state": "South Carolina", + "city": "Lafferty" + } + }, + { + "id": 6097, + "name": "Jewell Yates", + "gender": "female", + "age": 32, + "address": { + "state": "Minnesota", + "city": "Loyalhanna" + } + }, + { + "id": 6098, + "name": "Pratt Gomez", + "gender": "male", + "age": 65, + "address": { + "state": "Illinois", + "city": "Twilight" + } + }, + { + "id": 6099, + "name": "Dena Armstrong", + "gender": "female", + "age": 77, + "address": { + "state": "Iowa", + "city": "Itmann" + } + }, + { + "id": 6100, + "name": "Shanna Whitaker", + "gender": "female", + "age": 60, + "address": { + "state": "New Mexico", + "city": "Yukon" + } + }, + { + "id": 6101, + "name": "Carissa Barnes", + "gender": "female", + "age": 74, + "address": { + "state": "Kentucky", + "city": "Imperial" + } + }, + { + "id": 6102, + "name": "Paige Winters", + "gender": "female", + "age": 78, + "address": { + "state": "Mississippi", + "city": "Salix" + } + }, + { + "id": 6103, + "name": "Angel Franklin", + "gender": "female", + "age": 52, + "address": { + "state": "Arkansas", + "city": "Elfrida" + } + }, + { + "id": 6104, + "name": "Estella Morrow", + "gender": "female", + "age": 39, + "address": { + "state": "Connecticut", + "city": "Thornport" + } + }, + { + "id": 6105, + "name": "Diane Hatfield", + "gender": "female", + "age": 38, + "address": { + "state": "Pennsylvania", + "city": "Forbestown" + } + }, + { + "id": 6106, + "name": "Angelina Richard", + "gender": "female", + "age": 58, + "address": { + "state": "Wisconsin", + "city": "Tivoli" + } + }, + { + "id": 6107, + "name": "Mccall Santiago", + "gender": "male", + "age": 70, + "address": { + "state": "Delaware", + "city": "Hoagland" + } + }, + { + "id": 6108, + "name": "West Knight", + "gender": "male", + "age": 26, + "address": { + "state": "North Carolina", + "city": "Westboro" + } + }, + { + "id": 6109, + "name": "Deann Davidson", + "gender": "female", + "age": 44, + "address": { + "state": "Alaska", + "city": "Stewart" + } + }, + { + "id": 6110, + "name": "Estela Mercado", + "gender": "female", + "age": 69, + "address": { + "state": "Maryland", + "city": "Summertown" + } + }, + { + "id": 6111, + "name": "Harvey Meyer", + "gender": "male", + "age": 67, + "address": { + "state": "Ohio", + "city": "Needmore" + } + }, + { + "id": 6112, + "name": "Mullen Mendez", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Spelter" + } + }, + { + "id": 6113, + "name": "Austin Powell", + "gender": "male", + "age": 70, + "address": { + "state": "Vermont", + "city": "Goldfield" + } + }, + { + "id": 6114, + "name": "Marylou Bridges", + "gender": "female", + "age": 39, + "address": { + "state": "South Dakota", + "city": "Sussex" + } + }, + { + "id": 6115, + "name": "Dorsey Pugh", + "gender": "male", + "age": 49, + "address": { + "state": "Alabama", + "city": "Frierson" + } + }, + { + "id": 6116, + "name": "Parsons Wynn", + "gender": "male", + "age": 19, + "address": { + "state": "Florida", + "city": "Hiko" + } + }, + { + "id": 6117, + "name": "Frankie Vinson", + "gender": "female", + "age": 18, + "address": { + "state": "Hawaii", + "city": "Grenelefe" + } + }, + { + "id": 6118, + "name": "Leila Cabrera", + "gender": "female", + "age": 27, + "address": { + "state": "Indiana", + "city": "Sanborn" + } + }, + { + "id": 6119, + "name": "Tammy Roth", + "gender": "female", + "age": 22, + "address": { + "state": "Massachusetts", + "city": "Waiohinu" + } + }, + { + "id": 6120, + "name": "Mcneil Mcbride", + "gender": "male", + "age": 42, + "address": { + "state": "Nevada", + "city": "Brookfield" + } + }, + { + "id": 6121, + "name": "Mavis Yang", + "gender": "female", + "age": 71, + "address": { + "state": "Utah", + "city": "Kimmell" + } + }, + { + "id": 6122, + "name": "Foley Trujillo", + "gender": "male", + "age": 52, + "address": { + "state": "Idaho", + "city": "Independence" + } + }, + { + "id": 6123, + "name": "Hendricks Livingston", + "gender": "male", + "age": 80, + "address": { + "state": "Nebraska", + "city": "Esmont" + } + }, + { + "id": 6124, + "name": "Nikki Osborne", + "gender": "female", + "age": 19, + "address": { + "state": "Montana", + "city": "Kersey" + } + }, + { + "id": 6125, + "name": "Genevieve Rush", + "gender": "female", + "age": 52, + "address": { + "state": "Missouri", + "city": "Madaket" + } + }, + { + "id": 6126, + "name": "Lily Velazquez", + "gender": "female", + "age": 32, + "address": { + "state": "Vermont", + "city": "Winston" + } + }, + { + "id": 6127, + "name": "Sylvia Paul", + "gender": "female", + "age": 80, + "address": { + "state": "Georgia", + "city": "Wyano" + } + }, + { + "id": 6128, + "name": "Earlene Morton", + "gender": "female", + "age": 41, + "address": { + "state": "California", + "city": "Curtice" + } + }, + { + "id": 6129, + "name": "Avila Beard", + "gender": "male", + "age": 79, + "address": { + "state": "Connecticut", + "city": "Dawn" + } + }, + { + "id": 6130, + "name": "Benton Vance", + "gender": "male", + "age": 68, + "address": { + "state": "New Hampshire", + "city": "Hackneyville" + } + }, + { + "id": 6131, + "name": "Stacey Gallegos", + "gender": "female", + "age": 18, + "address": { + "state": "Minnesota", + "city": "Johnsonburg" + } + }, + { + "id": 6132, + "name": "Leona Salazar", + "gender": "female", + "age": 45, + "address": { + "state": "Maine", + "city": "Allendale" + } + }, + { + "id": 6133, + "name": "Eleanor Rutledge", + "gender": "female", + "age": 72, + "address": { + "state": "Alaska", + "city": "Churchill" + } + }, + { + "id": 6134, + "name": "Hale Steele", + "gender": "male", + "age": 67, + "address": { + "state": "South Carolina", + "city": "Muse" + } + }, + { + "id": 6135, + "name": "Townsend Pace", + "gender": "male", + "age": 57, + "address": { + "state": "Illinois", + "city": "Nash" + } + }, + { + "id": 6136, + "name": "Allison Combs", + "gender": "male", + "age": 32, + "address": { + "state": "Idaho", + "city": "Loomis" + } + }, + { + "id": 6137, + "name": "Moore Santana", + "gender": "male", + "age": 64, + "address": { + "state": "Delaware", + "city": "Mathews" + } + }, + { + "id": 6138, + "name": "Hensley Torres", + "gender": "male", + "age": 73, + "address": { + "state": "North Dakota", + "city": "Siglerville" + } + }, + { + "id": 6139, + "name": "Gail Alford", + "gender": "female", + "age": 59, + "address": { + "state": "Virginia", + "city": "Wildwood" + } + }, + { + "id": 6140, + "name": "Hess Bartlett", + "gender": "male", + "age": 33, + "address": { + "state": "Texas", + "city": "Shelby" + } + }, + { + "id": 6141, + "name": "Kristie Cole", + "gender": "female", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Rivereno" + } + }, + { + "id": 6142, + "name": "Althea Blair", + "gender": "female", + "age": 23, + "address": { + "state": "Ohio", + "city": "Odessa" + } + }, + { + "id": 6143, + "name": "Brigitte Watson", + "gender": "female", + "age": 21, + "address": { + "state": "Washington", + "city": "Fredericktown" + } + }, + { + "id": 6144, + "name": "Rosa Huff", + "gender": "female", + "age": 79, + "address": { + "state": "New Mexico", + "city": "Durham" + } + }, + { + "id": 6145, + "name": "Frazier Park", + "gender": "male", + "age": 25, + "address": { + "state": "Colorado", + "city": "Wakarusa" + } + }, + { + "id": 6146, + "name": "Lina Berger", + "gender": "female", + "age": 46, + "address": { + "state": "Wisconsin", + "city": "Wadsworth" + } + }, + { + "id": 6147, + "name": "Cannon Rodriguez", + "gender": "male", + "age": 62, + "address": { + "state": "Rhode Island", + "city": "Winfred" + } + }, + { + "id": 6148, + "name": "Salazar Baker", + "gender": "male", + "age": 23, + "address": { + "state": "North Carolina", + "city": "Freelandville" + } + }, + { + "id": 6149, + "name": "Darlene Cohen", + "gender": "female", + "age": 72, + "address": { + "state": "Iowa", + "city": "Boyd" + } + }, + { + "id": 6150, + "name": "Trisha Hancock", + "gender": "female", + "age": 30, + "address": { + "state": "Florida", + "city": "Movico" + } + }, + { + "id": 6151, + "name": "Acevedo Porter", + "gender": "male", + "age": 62, + "address": { + "state": "Tennessee", + "city": "Loretto" + } + }, + { + "id": 6152, + "name": "Trina Mccarthy", + "gender": "female", + "age": 59, + "address": { + "state": "Hawaii", + "city": "Greenbackville" + } + }, + { + "id": 6153, + "name": "Mercado Fry", + "gender": "male", + "age": 43, + "address": { + "state": "Mississippi", + "city": "Coaldale" + } + }, + { + "id": 6154, + "name": "Therese Neal", + "gender": "female", + "age": 18, + "address": { + "state": "Maryland", + "city": "Farmington" + } + }, + { + "id": 6155, + "name": "Sybil Daniels", + "gender": "female", + "age": 37, + "address": { + "state": "Nevada", + "city": "Troy" + } + }, + { + "id": 6156, + "name": "Josie Holman", + "gender": "female", + "age": 68, + "address": { + "state": "Louisiana", + "city": "Geyserville" + } + }, + { + "id": 6157, + "name": "Woods Hinton", + "gender": "male", + "age": 33, + "address": { + "state": "Oklahoma", + "city": "Lemoyne" + } + }, + { + "id": 6158, + "name": "Tran Buckner", + "gender": "male", + "age": 46, + "address": { + "state": "Alabama", + "city": "Deltaville" + } + }, + { + "id": 6159, + "name": "Hutchinson Olsen", + "gender": "male", + "age": 74, + "address": { + "state": "Oregon", + "city": "Jacksonwald" + } + }, + { + "id": 6160, + "name": "Powell Craft", + "gender": "male", + "age": 45, + "address": { + "state": "Massachusetts", + "city": "Skyland" + } + }, + { + "id": 6161, + "name": "Floyd Quinn", + "gender": "male", + "age": 33, + "address": { + "state": "Arizona", + "city": "Blende" + } + }, + { + "id": 6162, + "name": "Salas Cunningham", + "gender": "male", + "age": 57, + "address": { + "state": "Montana", + "city": "Alafaya" + } + }, + { + "id": 6163, + "name": "Gilbert Owen", + "gender": "male", + "age": 32, + "address": { + "state": "Nebraska", + "city": "Glasgow" + } + }, + { + "id": 6164, + "name": "May Carver", + "gender": "female", + "age": 81, + "address": { + "state": "Michigan", + "city": "Cliffside" + } + }, + { + "id": 6165, + "name": "Alma Weeks", + "gender": "female", + "age": 55, + "address": { + "state": "New Jersey", + "city": "Thornport" + } + }, + { + "id": 6166, + "name": "Colette Garrison", + "gender": "female", + "age": 51, + "address": { + "state": "West Virginia", + "city": "Snyderville" + } + }, + { + "id": 6167, + "name": "Mathis Fisher", + "gender": "male", + "age": 64, + "address": { + "state": "Kentucky", + "city": "Elizaville" + } + }, + { + "id": 6168, + "name": "Ayala Rosa", + "gender": "male", + "age": 39, + "address": { + "state": "Arkansas", + "city": "Draper" + } + }, + { + "id": 6169, + "name": "Goodwin Page", + "gender": "male", + "age": 46, + "address": { + "state": "Kansas", + "city": "Wikieup" + } + }, + { + "id": 6170, + "name": "Marcella Williams", + "gender": "female", + "age": 30, + "address": { + "state": "New York", + "city": "Elliston" + } + }, + { + "id": 6171, + "name": "Dunlap Moon", + "gender": "male", + "age": 27, + "address": { + "state": "Utah", + "city": "Riegelwood" + } + }, + { + "id": 6172, + "name": "George Dodson", + "gender": "male", + "age": 41, + "address": { + "state": "Wyoming", + "city": "Hasty" + } + }, + { + "id": 6173, + "name": "Caitlin Waters", + "gender": "female", + "age": 42, + "address": { + "state": "Pennsylvania", + "city": "Dahlen" + } + }, + { + "id": 6174, + "name": "Casey Michael", + "gender": "male", + "age": 82, + "address": { + "state": "Rhode Island", + "city": "Ellerslie" + } + }, + { + "id": 6175, + "name": "Deanna Greene", + "gender": "female", + "age": 61, + "address": { + "state": "Montana", + "city": "Waterview" + } + }, + { + "id": 6176, + "name": "Alyssa Wise", + "gender": "female", + "age": 53, + "address": { + "state": "Wyoming", + "city": "Veyo" + } + }, + { + "id": 6177, + "name": "Esperanza Cain", + "gender": "female", + "age": 59, + "address": { + "state": "Idaho", + "city": "Condon" + } + }, + { + "id": 6178, + "name": "Ericka Gonzalez", + "gender": "female", + "age": 58, + "address": { + "state": "Indiana", + "city": "Needmore" + } + }, + { + "id": 6179, + "name": "Concetta Hood", + "gender": "female", + "age": 28, + "address": { + "state": "Alaska", + "city": "Oberlin" + } + }, + { + "id": 6180, + "name": "Debbie Randolph", + "gender": "female", + "age": 29, + "address": { + "state": "Arizona", + "city": "Ronco" + } + }, + { + "id": 6181, + "name": "Cathy Berg", + "gender": "female", + "age": 62, + "address": { + "state": "South Dakota", + "city": "Foxworth" + } + }, + { + "id": 6182, + "name": "Schneider Jordan", + "gender": "male", + "age": 20, + "address": { + "state": "Minnesota", + "city": "Chamizal" + } + }, + { + "id": 6183, + "name": "Rivers Schmidt", + "gender": "male", + "age": 47, + "address": { + "state": "West Virginia", + "city": "Dennard" + } + }, + { + "id": 6184, + "name": "Jennie Bell", + "gender": "female", + "age": 78, + "address": { + "state": "North Dakota", + "city": "Matthews" + } + }, + { + "id": 6185, + "name": "Hughes Hayden", + "gender": "male", + "age": 52, + "address": { + "state": "New Mexico", + "city": "Leming" + } + }, + { + "id": 6186, + "name": "Patrice Keith", + "gender": "female", + "age": 68, + "address": { + "state": "Virginia", + "city": "Farmington" + } + }, + { + "id": 6187, + "name": "Baird Odom", + "gender": "male", + "age": 58, + "address": { + "state": "Massachusetts", + "city": "Bluetown" + } + }, + { + "id": 6188, + "name": "Lorrie Short", + "gender": "female", + "age": 27, + "address": { + "state": "Hawaii", + "city": "Freelandville" + } + }, + { + "id": 6189, + "name": "Hope Rojas", + "gender": "female", + "age": 26, + "address": { + "state": "Mississippi", + "city": "Ona" + } + }, + { + "id": 6190, + "name": "Lenora Lawrence", + "gender": "female", + "age": 20, + "address": { + "state": "Delaware", + "city": "Wakarusa" + } + }, + { + "id": 6191, + "name": "Clemons Casey", + "gender": "male", + "age": 29, + "address": { + "state": "Louisiana", + "city": "Enoree" + } + }, + { + "id": 6192, + "name": "Marcy Vincent", + "gender": "female", + "age": 47, + "address": { + "state": "Kentucky", + "city": "Blodgett" + } + }, + { + "id": 6193, + "name": "Ferrell Curry", + "gender": "male", + "age": 65, + "address": { + "state": "Texas", + "city": "Ahwahnee" + } + }, + { + "id": 6194, + "name": "Rush Morin", + "gender": "male", + "age": 74, + "address": { + "state": "Vermont", + "city": "Centerville" + } + }, + { + "id": 6195, + "name": "Adkins Leach", + "gender": "male", + "age": 74, + "address": { + "state": "Oregon", + "city": "Caledonia" + } + }, + { + "id": 6196, + "name": "Weeks Watkins", + "gender": "male", + "age": 30, + "address": { + "state": "Kansas", + "city": "Caln" + } + }, + { + "id": 6197, + "name": "Alston Talley", + "gender": "male", + "age": 38, + "address": { + "state": "Washington", + "city": "Concho" + } + }, + { + "id": 6198, + "name": "Carole Burks", + "gender": "female", + "age": 54, + "address": { + "state": "Illinois", + "city": "Hickory" + } + }, + { + "id": 6199, + "name": "Sheila Rasmussen", + "gender": "female", + "age": 82, + "address": { + "state": "Michigan", + "city": "Warren" + } + }, + { + "id": 6200, + "name": "Branch Banks", + "gender": "male", + "age": 42, + "address": { + "state": "New York", + "city": "Bethany" + } + }, + { + "id": 6201, + "name": "Juliette Camacho", + "gender": "female", + "age": 26, + "address": { + "state": "Florida", + "city": "Cherokee" + } + }, + { + "id": 6202, + "name": "Cindy Best", + "gender": "female", + "age": 40, + "address": { + "state": "Colorado", + "city": "Fostoria" + } + }, + { + "id": 6203, + "name": "Lucas Ortiz", + "gender": "male", + "age": 17, + "address": { + "state": "South Carolina", + "city": "Longbranch" + } + }, + { + "id": 6204, + "name": "Strong England", + "gender": "male", + "age": 39, + "address": { + "state": "Maryland", + "city": "Sharon" + } + }, + { + "id": 6205, + "name": "Hale Ruiz", + "gender": "male", + "age": 60, + "address": { + "state": "Wisconsin", + "city": "Somerset" + } + }, + { + "id": 6206, + "name": "Carpenter Alford", + "gender": "male", + "age": 35, + "address": { + "state": "Ohio", + "city": "Hilltop" + } + }, + { + "id": 6207, + "name": "Erma Weber", + "gender": "female", + "age": 29, + "address": { + "state": "North Carolina", + "city": "Gracey" + } + }, + { + "id": 6208, + "name": "Louise Clarke", + "gender": "female", + "age": 78, + "address": { + "state": "Iowa", + "city": "Hiwasse" + } + }, + { + "id": 6209, + "name": "Colette Cruz", + "gender": "female", + "age": 37, + "address": { + "state": "California", + "city": "Remington" + } + }, + { + "id": 6210, + "name": "Cassie Jensen", + "gender": "female", + "age": 32, + "address": { + "state": "New Hampshire", + "city": "Cornucopia" + } + }, + { + "id": 6211, + "name": "Douglas Sellers", + "gender": "male", + "age": 35, + "address": { + "state": "Connecticut", + "city": "Hardyville" + } + }, + { + "id": 6212, + "name": "Joyner Dudley", + "gender": "male", + "age": 79, + "address": { + "state": "Arkansas", + "city": "Frank" + } + }, + { + "id": 6213, + "name": "Mullen Davidson", + "gender": "male", + "age": 46, + "address": { + "state": "Oklahoma", + "city": "Snyderville" + } + }, + { + "id": 6214, + "name": "Edwards Gaines", + "gender": "male", + "age": 69, + "address": { + "state": "Pennsylvania", + "city": "Brogan" + } + }, + { + "id": 6215, + "name": "Espinoza Summers", + "gender": "male", + "age": 68, + "address": { + "state": "Nebraska", + "city": "Clara" + } + }, + { + "id": 6216, + "name": "Norris Schroeder", + "gender": "male", + "age": 30, + "address": { + "state": "New Jersey", + "city": "Caron" + } + }, + { + "id": 6217, + "name": "Gay Wood", + "gender": "female", + "age": 37, + "address": { + "state": "Maine", + "city": "Brethren" + } + }, + { + "id": 6218, + "name": "Mercer Wilkinson", + "gender": "male", + "age": 34, + "address": { + "state": "Missouri", + "city": "Twilight" + } + }, + { + "id": 6219, + "name": "Casey Bullock", + "gender": "female", + "age": 37, + "address": { + "state": "Alabama", + "city": "Falmouth" + } + }, + { + "id": 6220, + "name": "Fitzpatrick Ayala", + "gender": "male", + "age": 22, + "address": { + "state": "Nevada", + "city": "Dexter" + } + }, + { + "id": 6221, + "name": "Burke Justice", + "gender": "male", + "age": 17, + "address": { + "state": "Georgia", + "city": "Roland" + } + }, + { + "id": 6222, + "name": "Sophia George", + "gender": "female", + "age": 19, + "address": { + "state": "Tennessee", + "city": "Haena" + } + }, + { + "id": 6223, + "name": "Valencia Ewing", + "gender": "male", + "age": 28, + "address": { + "state": "Delaware", + "city": "Soham" + } + }, + { + "id": 6224, + "name": "Rochelle Brooks", + "gender": "female", + "age": 32, + "address": { + "state": "Arizona", + "city": "Benson" + } + }, + { + "id": 6225, + "name": "Kirkland Hudson", + "gender": "male", + "age": 53, + "address": { + "state": "Vermont", + "city": "Drummond" + } + }, + { + "id": 6226, + "name": "Shepherd Cabrera", + "gender": "male", + "age": 22, + "address": { + "state": "Minnesota", + "city": "Dupuyer" + } + }, + { + "id": 6227, + "name": "Stewart Price", + "gender": "male", + "age": 28, + "address": { + "state": "Kentucky", + "city": "Bladensburg" + } + }, + { + "id": 6228, + "name": "Mable Webster", + "gender": "female", + "age": 37, + "address": { + "state": "New Jersey", + "city": "Belmont" + } + }, + { + "id": 6229, + "name": "Marguerite Delaney", + "gender": "female", + "age": 30, + "address": { + "state": "South Dakota", + "city": "Hollins" + } + }, + { + "id": 6230, + "name": "Maldonado Rivas", + "gender": "male", + "age": 65, + "address": { + "state": "Texas", + "city": "Chesapeake" + } + }, + { + "id": 6231, + "name": "Gross Walter", + "gender": "male", + "age": 28, + "address": { + "state": "Virginia", + "city": "Loretto" + } + }, + { + "id": 6232, + "name": "Wolf Perkins", + "gender": "male", + "age": 64, + "address": { + "state": "Hawaii", + "city": "Highland" + } + }, + { + "id": 6233, + "name": "Jeanne Noel", + "gender": "female", + "age": 57, + "address": { + "state": "California", + "city": "Wacissa" + } + }, + { + "id": 6234, + "name": "Watts Le", + "gender": "male", + "age": 29, + "address": { + "state": "New Hampshire", + "city": "Newry" + } + }, + { + "id": 6235, + "name": "Amalia Williams", + "gender": "female", + "age": 79, + "address": { + "state": "Michigan", + "city": "Glenville" + } + }, + { + "id": 6236, + "name": "Edna Cunningham", + "gender": "female", + "age": 51, + "address": { + "state": "Iowa", + "city": "Iola" + } + }, + { + "id": 6237, + "name": "Amie Jefferson", + "gender": "female", + "age": 59, + "address": { + "state": "North Carolina", + "city": "Calverton" + } + }, + { + "id": 6238, + "name": "Mays Vinson", + "gender": "male", + "age": 47, + "address": { + "state": "Mississippi", + "city": "Graball" + } + }, + { + "id": 6239, + "name": "Middleton Steele", + "gender": "male", + "age": 78, + "address": { + "state": "Massachusetts", + "city": "Deseret" + } + }, + { + "id": 6240, + "name": "Hartman Sears", + "gender": "male", + "age": 32, + "address": { + "state": "Kansas", + "city": "Dyckesville" + } + }, + { + "id": 6241, + "name": "Meyers Doyle", + "gender": "male", + "age": 57, + "address": { + "state": "Indiana", + "city": "Aguila" + } + }, + { + "id": 6242, + "name": "Cynthia Pacheco", + "gender": "female", + "age": 79, + "address": { + "state": "Connecticut", + "city": "Sedley" + } + }, + { + "id": 6243, + "name": "Dyer Simmons", + "gender": "male", + "age": 56, + "address": { + "state": "Nevada", + "city": "Smeltertown" + } + }, + { + "id": 6244, + "name": "Hawkins Ramsey", + "gender": "male", + "age": 28, + "address": { + "state": "New Mexico", + "city": "Clarksburg" + } + }, + { + "id": 6245, + "name": "Isabelle Hurst", + "gender": "female", + "age": 51, + "address": { + "state": "North Dakota", + "city": "Holcombe" + } + }, + { + "id": 6246, + "name": "Saundra England", + "gender": "female", + "age": 26, + "address": { + "state": "Nebraska", + "city": "Courtland" + } + }, + { + "id": 6247, + "name": "Hannah Shepherd", + "gender": "female", + "age": 82, + "address": { + "state": "Montana", + "city": "Rossmore" + } + }, + { + "id": 6248, + "name": "Fischer Yang", + "gender": "male", + "age": 82, + "address": { + "state": "South Carolina", + "city": "Wheaton" + } + }, + { + "id": 6249, + "name": "Carrie Lambert", + "gender": "female", + "age": 75, + "address": { + "state": "Colorado", + "city": "Grandview" + } + }, + { + "id": 6250, + "name": "Mabel Deleon", + "gender": "female", + "age": 63, + "address": { + "state": "Illinois", + "city": "Bendon" + } + }, + { + "id": 6251, + "name": "Alison Kemp", + "gender": "female", + "age": 65, + "address": { + "state": "Alabama", + "city": "Olney" + } + }, + { + "id": 6252, + "name": "Tyson Shannon", + "gender": "male", + "age": 30, + "address": { + "state": "Maine", + "city": "Bennett" + } + }, + { + "id": 6253, + "name": "Lilly Potts", + "gender": "female", + "age": 48, + "address": { + "state": "Oregon", + "city": "Hickory" + } + }, + { + "id": 6254, + "name": "Adela Williamson", + "gender": "female", + "age": 60, + "address": { + "state": "Florida", + "city": "Hoagland" + } + }, + { + "id": 6255, + "name": "Jolene Snider", + "gender": "female", + "age": 17, + "address": { + "state": "West Virginia", + "city": "Sims" + } + }, + { + "id": 6256, + "name": "Anthony Sullivan", + "gender": "male", + "age": 48, + "address": { + "state": "Wyoming", + "city": "Welda" + } + }, + { + "id": 6257, + "name": "Clarice Baxter", + "gender": "female", + "age": 77, + "address": { + "state": "Washington", + "city": "Boling" + } + }, + { + "id": 6258, + "name": "Clemons Church", + "gender": "male", + "age": 42, + "address": { + "state": "Pennsylvania", + "city": "Mulberry" + } + }, + { + "id": 6259, + "name": "Cora Ayers", + "gender": "female", + "age": 67, + "address": { + "state": "Georgia", + "city": "Tampico" + } + }, + { + "id": 6260, + "name": "Frieda English", + "gender": "female", + "age": 74, + "address": { + "state": "Rhode Island", + "city": "Dahlen" + } + }, + { + "id": 6261, + "name": "Amparo Rollins", + "gender": "female", + "age": 25, + "address": { + "state": "Ohio", + "city": "Gwynn" + } + }, + { + "id": 6262, + "name": "Ryan Ryan", + "gender": "male", + "age": 35, + "address": { + "state": "Arkansas", + "city": "Stagecoach" + } + }, + { + "id": 6263, + "name": "Huffman Chase", + "gender": "male", + "age": 66, + "address": { + "state": "Idaho", + "city": "Magnolia" + } + }, + { + "id": 6264, + "name": "Hazel Lynn", + "gender": "female", + "age": 36, + "address": { + "state": "Louisiana", + "city": "Coldiron" + } + }, + { + "id": 6265, + "name": "Carlson Hill", + "gender": "male", + "age": 71, + "address": { + "state": "Alaska", + "city": "Cliff" + } + }, + { + "id": 6266, + "name": "Heath Rosa", + "gender": "male", + "age": 45, + "address": { + "state": "Missouri", + "city": "Kersey" + } + }, + { + "id": 6267, + "name": "Catalina Tyler", + "gender": "female", + "age": 71, + "address": { + "state": "Oklahoma", + "city": "Greenwich" + } + }, + { + "id": 6268, + "name": "Hurley Dillon", + "gender": "male", + "age": 24, + "address": { + "state": "Maryland", + "city": "Dargan" + } + }, + { + "id": 6269, + "name": "Hansen Shepard", + "gender": "male", + "age": 78, + "address": { + "state": "New York", + "city": "Duryea" + } + }, + { + "id": 6270, + "name": "Moses Mooney", + "gender": "male", + "age": 63, + "address": { + "state": "Wisconsin", + "city": "Marienthal" + } + }, + { + "id": 6271, + "name": "Ginger Roman", + "gender": "female", + "age": 34, + "address": { + "state": "Utah", + "city": "Coral" + } + }, + { + "id": 6272, + "name": "Butler Holland", + "gender": "male", + "age": 48, + "address": { + "state": "Delaware", + "city": "Maplewood" + } + }, + { + "id": 6273, + "name": "Roach Garza", + "gender": "male", + "age": 44, + "address": { + "state": "Indiana", + "city": "Brantleyville" + } + }, + { + "id": 6274, + "name": "Stone Terry", + "gender": "male", + "age": 21, + "address": { + "state": "Mississippi", + "city": "Dupuyer" + } + }, + { + "id": 6275, + "name": "Hope Eaton", + "gender": "female", + "age": 50, + "address": { + "state": "North Dakota", + "city": "Greenock" + } + }, + { + "id": 6276, + "name": "Mcneil Everett", + "gender": "male", + "age": 71, + "address": { + "state": "Maine", + "city": "Springhill" + } + }, + { + "id": 6277, + "name": "Allyson Stephens", + "gender": "female", + "age": 26, + "address": { + "state": "Colorado", + "city": "Caspar" + } + }, + { + "id": 6278, + "name": "Ollie Lawrence", + "gender": "female", + "age": 23, + "address": { + "state": "New Mexico", + "city": "Brutus" + } + }, + { + "id": 6279, + "name": "Nola Johns", + "gender": "female", + "age": 22, + "address": { + "state": "Oregon", + "city": "Gibsonia" + } + }, + { + "id": 6280, + "name": "Caroline Colon", + "gender": "female", + "age": 56, + "address": { + "state": "Utah", + "city": "Dargan" + } + }, + { + "id": 6281, + "name": "Denise Bowen", + "gender": "female", + "age": 45, + "address": { + "state": "Kansas", + "city": "Loma" + } + }, + { + "id": 6282, + "name": "Pierce Rogers", + "gender": "male", + "age": 80, + "address": { + "state": "New Hampshire", + "city": "Warsaw" + } + }, + { + "id": 6283, + "name": "Bertie Rodgers", + "gender": "female", + "age": 35, + "address": { + "state": "Michigan", + "city": "Disautel" + } + }, + { + "id": 6284, + "name": "Helen Marquez", + "gender": "female", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Witmer" + } + }, + { + "id": 6285, + "name": "Carmela Sheppard", + "gender": "female", + "age": 69, + "address": { + "state": "Nebraska", + "city": "Valmy" + } + }, + { + "id": 6286, + "name": "Mcdonald Knight", + "gender": "male", + "age": 70, + "address": { + "state": "South Dakota", + "city": "Faywood" + } + }, + { + "id": 6287, + "name": "Crystal King", + "gender": "female", + "age": 77, + "address": { + "state": "Rhode Island", + "city": "Stockwell" + } + }, + { + "id": 6288, + "name": "Sylvia Livingston", + "gender": "female", + "age": 71, + "address": { + "state": "Louisiana", + "city": "Interlochen" + } + }, + { + "id": 6289, + "name": "Villarreal Hester", + "gender": "male", + "age": 28, + "address": { + "state": "Missouri", + "city": "Rockhill" + } + }, + { + "id": 6290, + "name": "Michael Castro", + "gender": "male", + "age": 32, + "address": { + "state": "Washington", + "city": "Graniteville" + } + }, + { + "id": 6291, + "name": "Jacquelyn Keith", + "gender": "female", + "age": 31, + "address": { + "state": "Arizona", + "city": "Concho" + } + }, + { + "id": 6292, + "name": "Hale Hunt", + "gender": "male", + "age": 61, + "address": { + "state": "West Virginia", + "city": "Fresno" + } + }, + { + "id": 6293, + "name": "Blackburn Ortiz", + "gender": "male", + "age": 79, + "address": { + "state": "Idaho", + "city": "Wiscon" + } + }, + { + "id": 6294, + "name": "Koch Lindsay", + "gender": "male", + "age": 23, + "address": { + "state": "Vermont", + "city": "Clara" + } + }, + { + "id": 6295, + "name": "Juana Becker", + "gender": "female", + "age": 20, + "address": { + "state": "South Carolina", + "city": "Gallina" + } + }, + { + "id": 6296, + "name": "Petersen Hicks", + "gender": "male", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Holcombe" + } + }, + { + "id": 6297, + "name": "Rivers Carson", + "gender": "male", + "age": 38, + "address": { + "state": "Massachusetts", + "city": "Seymour" + } + }, + { + "id": 6298, + "name": "Fischer Bradshaw", + "gender": "male", + "age": 55, + "address": { + "state": "New Jersey", + "city": "Garnet" + } + }, + { + "id": 6299, + "name": "Knapp Mclaughlin", + "gender": "male", + "age": 79, + "address": { + "state": "Maryland", + "city": "Chesapeake" + } + }, + { + "id": 6300, + "name": "Rice Gardner", + "gender": "male", + "age": 39, + "address": { + "state": "Illinois", + "city": "Loomis" + } + }, + { + "id": 6301, + "name": "Bates Baird", + "gender": "male", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Crumpler" + } + }, + { + "id": 6302, + "name": "Bryant Lott", + "gender": "male", + "age": 35, + "address": { + "state": "Wyoming", + "city": "Brandermill" + } + }, + { + "id": 6303, + "name": "Alice Tyson", + "gender": "female", + "age": 27, + "address": { + "state": "Arkansas", + "city": "Robinson" + } + }, + { + "id": 6304, + "name": "Virginia Bryan", + "gender": "female", + "age": 61, + "address": { + "state": "Alaska", + "city": "Yettem" + } + }, + { + "id": 6305, + "name": "Tyson Lester", + "gender": "male", + "age": 55, + "address": { + "state": "Florida", + "city": "Bordelonville" + } + }, + { + "id": 6306, + "name": "Armstrong Evans", + "gender": "male", + "age": 28, + "address": { + "state": "Tennessee", + "city": "Fontanelle" + } + }, + { + "id": 6307, + "name": "Lakeisha Barber", + "gender": "female", + "age": 31, + "address": { + "state": "Iowa", + "city": "Romeville" + } + }, + { + "id": 6308, + "name": "Letitia Mathews", + "gender": "female", + "age": 50, + "address": { + "state": "New York", + "city": "Omar" + } + }, + { + "id": 6309, + "name": "Sonja Hardy", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Harviell" + } + }, + { + "id": 6310, + "name": "Kathie Holt", + "gender": "female", + "age": 79, + "address": { + "state": "Georgia", + "city": "Sunriver" + } + }, + { + "id": 6311, + "name": "Lara Shepard", + "gender": "female", + "age": 32, + "address": { + "state": "Texas", + "city": "Williams" + } + }, + { + "id": 6312, + "name": "John David", + "gender": "female", + "age": 78, + "address": { + "state": "Nevada", + "city": "Kennedyville" + } + }, + { + "id": 6313, + "name": "Savage Hampton", + "gender": "male", + "age": 26, + "address": { + "state": "California", + "city": "Wescosville" + } + }, + { + "id": 6314, + "name": "Sanchez Carver", + "gender": "male", + "age": 22, + "address": { + "state": "Alabama", + "city": "Lutsen" + } + }, + { + "id": 6315, + "name": "Nolan Dalton", + "gender": "male", + "age": 79, + "address": { + "state": "Connecticut", + "city": "Castleton" + } + }, + { + "id": 6316, + "name": "Paulette Sellers", + "gender": "female", + "age": 54, + "address": { + "state": "Kentucky", + "city": "Glidden" + } + }, + { + "id": 6317, + "name": "Craig Sexton", + "gender": "male", + "age": 69, + "address": { + "state": "Wisconsin", + "city": "Southmont" + } + }, + { + "id": 6318, + "name": "Lee Greene", + "gender": "female", + "age": 51, + "address": { + "state": "Ohio", + "city": "Bentley" + } + }, + { + "id": 6319, + "name": "Constance Dixon", + "gender": "female", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Savage" + } + }, + { + "id": 6320, + "name": "Erna Brewer", + "gender": "female", + "age": 46, + "address": { + "state": "Montana", + "city": "Gwynn" + } + }, + { + "id": 6321, + "name": "Oliver Church", + "gender": "male", + "age": 74, + "address": { + "state": "Nebraska", + "city": "Jacksonwald" + } + }, + { + "id": 6322, + "name": "Barnett Mercer", + "gender": "male", + "age": 27, + "address": { + "state": "North Dakota", + "city": "Wadsworth" + } + }, + { + "id": 6323, + "name": "Ines Harper", + "gender": "female", + "age": 23, + "address": { + "state": "Wisconsin", + "city": "Fairforest" + } + }, + { + "id": 6324, + "name": "Foley Wheeler", + "gender": "male", + "age": 22, + "address": { + "state": "Oregon", + "city": "Lowgap" + } + }, + { + "id": 6325, + "name": "Durham Cortez", + "gender": "male", + "age": 49, + "address": { + "state": "Michigan", + "city": "Dundee" + } + }, + { + "id": 6326, + "name": "Leah Williamson", + "gender": "female", + "age": 28, + "address": { + "state": "Indiana", + "city": "Terlingua" + } + }, + { + "id": 6327, + "name": "Barton Mcmahon", + "gender": "male", + "age": 79, + "address": { + "state": "Nevada", + "city": "Edenburg" + } + }, + { + "id": 6328, + "name": "Bertie Garza", + "gender": "female", + "age": 65, + "address": { + "state": "West Virginia", + "city": "Woodburn" + } + }, + { + "id": 6329, + "name": "Lesa Mullen", + "gender": "female", + "age": 25, + "address": { + "state": "Massachusetts", + "city": "Ola" + } + }, + { + "id": 6330, + "name": "Decker Welch", + "gender": "male", + "age": 29, + "address": { + "state": "Kansas", + "city": "Tuskahoma" + } + }, + { + "id": 6331, + "name": "Hess Lindsay", + "gender": "male", + "age": 44, + "address": { + "state": "Virginia", + "city": "Manitou" + } + }, + { + "id": 6332, + "name": "Malinda Hess", + "gender": "female", + "age": 72, + "address": { + "state": "Montana", + "city": "Gambrills" + } + }, + { + "id": 6333, + "name": "Hallie Langley", + "gender": "female", + "age": 46, + "address": { + "state": "Oklahoma", + "city": "Templeton" + } + }, + { + "id": 6334, + "name": "Silva Stafford", + "gender": "male", + "age": 53, + "address": { + "state": "Rhode Island", + "city": "Wheatfields" + } + }, + { + "id": 6335, + "name": "Dianna Suarez", + "gender": "female", + "age": 56, + "address": { + "state": "New Jersey", + "city": "Lowell" + } + }, + { + "id": 6336, + "name": "Berger Rice", + "gender": "male", + "age": 27, + "address": { + "state": "New York", + "city": "Mathews" + } + }, + { + "id": 6337, + "name": "Eloise Mccray", + "gender": "female", + "age": 24, + "address": { + "state": "Kentucky", + "city": "Sabillasville" + } + }, + { + "id": 6338, + "name": "Barbara Lindsey", + "gender": "female", + "age": 73, + "address": { + "state": "Washington", + "city": "Osage" + } + }, + { + "id": 6339, + "name": "Doris Weeks", + "gender": "female", + "age": 47, + "address": { + "state": "Utah", + "city": "Venice" + } + }, + { + "id": 6340, + "name": "Betty Christian", + "gender": "female", + "age": 68, + "address": { + "state": "Colorado", + "city": "Trona" + } + }, + { + "id": 6341, + "name": "Erin Shannon", + "gender": "female", + "age": 34, + "address": { + "state": "Alabama", + "city": "Ruckersville" + } + }, + { + "id": 6342, + "name": "Jenny Horn", + "gender": "female", + "age": 23, + "address": { + "state": "Delaware", + "city": "Walker" + } + }, + { + "id": 6343, + "name": "Hurley Trevino", + "gender": "male", + "age": 45, + "address": { + "state": "Mississippi", + "city": "Lumberton" + } + }, + { + "id": 6344, + "name": "Cherry Holmes", + "gender": "male", + "age": 25, + "address": { + "state": "Pennsylvania", + "city": "Bend" + } + }, + { + "id": 6345, + "name": "Marissa Williams", + "gender": "female", + "age": 79, + "address": { + "state": "Tennessee", + "city": "Norvelt" + } + }, + { + "id": 6346, + "name": "Addie Osborne", + "gender": "female", + "age": 17, + "address": { + "state": "Texas", + "city": "Alamo" + } + }, + { + "id": 6347, + "name": "Key Navarro", + "gender": "male", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Hall" + } + }, + { + "id": 6348, + "name": "Jeannie Pruitt", + "gender": "female", + "age": 76, + "address": { + "state": "Illinois", + "city": "Hardyville" + } + }, + { + "id": 6349, + "name": "Dominguez Bolton", + "gender": "male", + "age": 20, + "address": { + "state": "South Dakota", + "city": "Belfair" + } + }, + { + "id": 6350, + "name": "Imelda Lara", + "gender": "female", + "age": 63, + "address": { + "state": "Georgia", + "city": "Newcastle" + } + }, + { + "id": 6351, + "name": "Delacruz Middleton", + "gender": "male", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Coventry" + } + }, + { + "id": 6352, + "name": "Espinoza Rojas", + "gender": "male", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Foxworth" + } + }, + { + "id": 6353, + "name": "Charlotte Hays", + "gender": "female", + "age": 55, + "address": { + "state": "Vermont", + "city": "Hegins" + } + }, + { + "id": 6354, + "name": "Laura Goff", + "gender": "female", + "age": 34, + "address": { + "state": "Maine", + "city": "Manila" + } + }, + { + "id": 6355, + "name": "England Huffman", + "gender": "male", + "age": 46, + "address": { + "state": "Idaho", + "city": "Chumuckla" + } + }, + { + "id": 6356, + "name": "Neva Calderon", + "gender": "female", + "age": 50, + "address": { + "state": "North Carolina", + "city": "Marienthal" + } + }, + { + "id": 6357, + "name": "Moses Mccullough", + "gender": "male", + "age": 46, + "address": { + "state": "Hawaii", + "city": "Bethpage" + } + }, + { + "id": 6358, + "name": "Shari Reese", + "gender": "female", + "age": 39, + "address": { + "state": "Florida", + "city": "Ogema" + } + }, + { + "id": 6359, + "name": "Weeks White", + "gender": "male", + "age": 76, + "address": { + "state": "Maryland", + "city": "Hondah" + } + }, + { + "id": 6360, + "name": "Cabrera Kennedy", + "gender": "male", + "age": 75, + "address": { + "state": "California", + "city": "Virgie" + } + }, + { + "id": 6361, + "name": "Cardenas Holt", + "gender": "male", + "age": 74, + "address": { + "state": "Wyoming", + "city": "Sardis" + } + }, + { + "id": 6362, + "name": "Jimmie Stanton", + "gender": "female", + "age": 17, + "address": { + "state": "South Carolina", + "city": "Beechmont" + } + }, + { + "id": 6363, + "name": "Noreen Allen", + "gender": "female", + "age": 40, + "address": { + "state": "Arkansas", + "city": "Moquino" + } + }, + { + "id": 6364, + "name": "Carr Payne", + "gender": "male", + "age": 33, + "address": { + "state": "Minnesota", + "city": "Duryea" + } + }, + { + "id": 6365, + "name": "Sandra Pena", + "gender": "female", + "age": 19, + "address": { + "state": "Arizona", + "city": "Marysville" + } + }, + { + "id": 6366, + "name": "Hahn Lamb", + "gender": "male", + "age": 70, + "address": { + "state": "New Mexico", + "city": "Wacissa" + } + }, + { + "id": 6367, + "name": "Irma Berg", + "gender": "female", + "age": 78, + "address": { + "state": "Alaska", + "city": "Wilmington" + } + }, + { + "id": 6368, + "name": "Beard Preston", + "gender": "male", + "age": 27, + "address": { + "state": "Missouri", + "city": "Summerfield" + } + }, + { + "id": 6369, + "name": "Keri Harding", + "gender": "female", + "age": 40, + "address": { + "state": "Iowa", + "city": "Kennedyville" + } + }, + { + "id": 6370, + "name": "Leanna Mclaughlin", + "gender": "female", + "age": 24, + "address": { + "state": "New Jersey", + "city": "Urie" + } + }, + { + "id": 6371, + "name": "Sharp Jimenez", + "gender": "male", + "age": 77, + "address": { + "state": "Utah", + "city": "Manila" + } + }, + { + "id": 6372, + "name": "Juanita Henry", + "gender": "female", + "age": 17, + "address": { + "state": "Minnesota", + "city": "Craig" + } + }, + { + "id": 6373, + "name": "Marie Simpson", + "gender": "female", + "age": 32, + "address": { + "state": "Nebraska", + "city": "Abiquiu" + } + }, + { + "id": 6374, + "name": "Francesca Livingston", + "gender": "female", + "age": 28, + "address": { + "state": "Rhode Island", + "city": "Barrelville" + } + }, + { + "id": 6375, + "name": "Lori Salas", + "gender": "female", + "age": 46, + "address": { + "state": "Nevada", + "city": "Sharon" + } + }, + { + "id": 6376, + "name": "Rodriquez Lawson", + "gender": "male", + "age": 79, + "address": { + "state": "Virginia", + "city": "Helen" + } + }, + { + "id": 6377, + "name": "Jamie Jenkins", + "gender": "female", + "age": 44, + "address": { + "state": "Florida", + "city": "Clarksburg" + } + }, + { + "id": 6378, + "name": "Edwards Duffy", + "gender": "male", + "age": 59, + "address": { + "state": "Michigan", + "city": "Kohatk" + } + }, + { + "id": 6379, + "name": "Roberta Hodge", + "gender": "female", + "age": 26, + "address": { + "state": "Georgia", + "city": "Evergreen" + } + }, + { + "id": 6380, + "name": "Dominguez Mcgee", + "gender": "male", + "age": 65, + "address": { + "state": "New York", + "city": "Thornport" + } + }, + { + "id": 6381, + "name": "Alvarado Burton", + "gender": "male", + "age": 42, + "address": { + "state": "Arkansas", + "city": "Kenmar" + } + }, + { + "id": 6382, + "name": "Randi Mendoza", + "gender": "female", + "age": 51, + "address": { + "state": "Tennessee", + "city": "Hiwasse" + } + }, + { + "id": 6383, + "name": "Macias Scott", + "gender": "male", + "age": 19, + "address": { + "state": "Vermont", + "city": "Drytown" + } + }, + { + "id": 6384, + "name": "Iris King", + "gender": "female", + "age": 68, + "address": { + "state": "New Hampshire", + "city": "Ribera" + } + }, + { + "id": 6385, + "name": "Sharpe Nieves", + "gender": "male", + "age": 33, + "address": { + "state": "Iowa", + "city": "Durham" + } + }, + { + "id": 6386, + "name": "Hatfield Keith", + "gender": "male", + "age": 41, + "address": { + "state": "Washington", + "city": "Stevens" + } + }, + { + "id": 6387, + "name": "Maureen Kline", + "gender": "female", + "age": 26, + "address": { + "state": "Delaware", + "city": "Imperial" + } + }, + { + "id": 6388, + "name": "Esperanza Albert", + "gender": "female", + "age": 29, + "address": { + "state": "South Dakota", + "city": "Cumberland" + } + }, + { + "id": 6389, + "name": "Andrea Cooley", + "gender": "female", + "age": 57, + "address": { + "state": "Wisconsin", + "city": "Hall" + } + }, + { + "id": 6390, + "name": "Krista Valentine", + "gender": "female", + "age": 22, + "address": { + "state": "Ohio", + "city": "Hartsville/Hartley" + } + }, + { + "id": 6391, + "name": "Tillman Dunn", + "gender": "male", + "age": 55, + "address": { + "state": "Mississippi", + "city": "Grahamtown" + } + }, + { + "id": 6392, + "name": "Christine Johnston", + "gender": "female", + "age": 50, + "address": { + "state": "Texas", + "city": "Beechmont" + } + }, + { + "id": 6393, + "name": "Potts Conley", + "gender": "male", + "age": 64, + "address": { + "state": "California", + "city": "Laurelton" + } + }, + { + "id": 6394, + "name": "Maggie Stout", + "gender": "female", + "age": 36, + "address": { + "state": "South Carolina", + "city": "Disautel" + } + }, + { + "id": 6395, + "name": "Goodman Blackwell", + "gender": "male", + "age": 50, + "address": { + "state": "Indiana", + "city": "Lowgap" + } + }, + { + "id": 6396, + "name": "Stacy Contreras", + "gender": "female", + "age": 49, + "address": { + "state": "Oklahoma", + "city": "Slovan" + } + }, + { + "id": 6397, + "name": "Carmela Wiggins", + "gender": "female", + "age": 40, + "address": { + "state": "Hawaii", + "city": "Cade" + } + }, + { + "id": 6398, + "name": "Joseph Powell", + "gender": "male", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Allamuchy" + } + }, + { + "id": 6399, + "name": "Crawford Guerrero", + "gender": "male", + "age": 79, + "address": { + "state": "Missouri", + "city": "Bison" + } + }, + { + "id": 6400, + "name": "Moran Talley", + "gender": "male", + "age": 19, + "address": { + "state": "Alabama", + "city": "Esmont" + } + }, + { + "id": 6401, + "name": "Lowe Fields", + "gender": "male", + "age": 53, + "address": { + "state": "Kansas", + "city": "Bethany" + } + }, + { + "id": 6402, + "name": "Audra Ramirez", + "gender": "female", + "age": 63, + "address": { + "state": "Kentucky", + "city": "Grapeview" + } + }, + { + "id": 6403, + "name": "Ophelia Bartlett", + "gender": "female", + "age": 77, + "address": { + "state": "Maryland", + "city": "Tonopah" + } + }, + { + "id": 6404, + "name": "Haley Buckley", + "gender": "male", + "age": 65, + "address": { + "state": "Pennsylvania", + "city": "Templeton" + } + }, + { + "id": 6405, + "name": "Guy Hart", + "gender": "male", + "age": 34, + "address": { + "state": "Wyoming", + "city": "Eureka" + } + }, + { + "id": 6406, + "name": "Twila Howard", + "gender": "female", + "age": 38, + "address": { + "state": "North Dakota", + "city": "Idledale" + } + }, + { + "id": 6407, + "name": "Ellis Strickland", + "gender": "male", + "age": 72, + "address": { + "state": "Alaska", + "city": "Machias" + } + }, + { + "id": 6408, + "name": "Christi Page", + "gender": "female", + "age": 72, + "address": { + "state": "Massachusetts", + "city": "Courtland" + } + }, + { + "id": 6409, + "name": "Schwartz Cole", + "gender": "male", + "age": 79, + "address": { + "state": "Louisiana", + "city": "Comptche" + } + }, + { + "id": 6410, + "name": "Marks Walter", + "gender": "male", + "age": 53, + "address": { + "state": "Maine", + "city": "Rockingham" + } + }, + { + "id": 6411, + "name": "Oneil Sutton", + "gender": "male", + "age": 33, + "address": { + "state": "Arizona", + "city": "Steinhatchee" + } + }, + { + "id": 6412, + "name": "Cochran Robbins", + "gender": "male", + "age": 72, + "address": { + "state": "Idaho", + "city": "Malott" + } + }, + { + "id": 6413, + "name": "Alston Mercer", + "gender": "male", + "age": 28, + "address": { + "state": "Illinois", + "city": "Bancroft" + } + }, + { + "id": 6414, + "name": "Woods Coffey", + "gender": "male", + "age": 34, + "address": { + "state": "Connecticut", + "city": "Kieler" + } + }, + { + "id": 6415, + "name": "Gates Burgess", + "gender": "male", + "age": 75, + "address": { + "state": "West Virginia", + "city": "Delco" + } + }, + { + "id": 6416, + "name": "Mae Carson", + "gender": "female", + "age": 74, + "address": { + "state": "Montana", + "city": "Jacumba" + } + }, + { + "id": 6417, + "name": "Estella French", + "gender": "female", + "age": 17, + "address": { + "state": "New Mexico", + "city": "Yorklyn" + } + }, + { + "id": 6418, + "name": "Kim Marquez", + "gender": "female", + "age": 56, + "address": { + "state": "Colorado", + "city": "Gloucester" + } + }, + { + "id": 6419, + "name": "Angeline Allison", + "gender": "female", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Cliff" + } + }, + { + "id": 6420, + "name": "Rogers Bradley", + "gender": "male", + "age": 77, + "address": { + "state": "Wisconsin", + "city": "Taft" + } + }, + { + "id": 6421, + "name": "Jeri Calderon", + "gender": "female", + "age": 56, + "address": { + "state": "Iowa", + "city": "Enoree" + } + }, + { + "id": 6422, + "name": "Mcfarland Allison", + "gender": "male", + "age": 25, + "address": { + "state": "West Virginia", + "city": "Hilltop" + } + }, + { + "id": 6423, + "name": "Shelton Douglas", + "gender": "male", + "age": 26, + "address": { + "state": "Wyoming", + "city": "Cresaptown" + } + }, + { + "id": 6424, + "name": "Melba Poole", + "gender": "female", + "age": 32, + "address": { + "state": "Maryland", + "city": "Norfolk" + } + }, + { + "id": 6425, + "name": "Mcclure Cook", + "gender": "male", + "age": 28, + "address": { + "state": "South Carolina", + "city": "Hollins" + } + }, + { + "id": 6426, + "name": "Nanette Horne", + "gender": "female", + "age": 70, + "address": { + "state": "Idaho", + "city": "Itmann" + } + }, + { + "id": 6427, + "name": "Nettie Clements", + "gender": "female", + "age": 73, + "address": { + "state": "Hawaii", + "city": "Gardners" + } + }, + { + "id": 6428, + "name": "Dillard Foster", + "gender": "male", + "age": 38, + "address": { + "state": "Colorado", + "city": "Wright" + } + }, + { + "id": 6429, + "name": "Conway Grant", + "gender": "male", + "age": 63, + "address": { + "state": "California", + "city": "Lindisfarne" + } + }, + { + "id": 6430, + "name": "Kerri Cherry", + "gender": "female", + "age": 81, + "address": { + "state": "New Hampshire", + "city": "Fillmore" + } + }, + { + "id": 6431, + "name": "Cleo Hood", + "gender": "female", + "age": 80, + "address": { + "state": "Illinois", + "city": "Kerby" + } + }, + { + "id": 6432, + "name": "Flores Conway", + "gender": "male", + "age": 29, + "address": { + "state": "Virginia", + "city": "Nescatunga" + } + }, + { + "id": 6433, + "name": "Briggs Buchanan", + "gender": "male", + "age": 21, + "address": { + "state": "Montana", + "city": "Garfield" + } + }, + { + "id": 6434, + "name": "Manuela Rutledge", + "gender": "female", + "age": 32, + "address": { + "state": "North Carolina", + "city": "Wyoming" + } + }, + { + "id": 6435, + "name": "Curtis Bartlett", + "gender": "male", + "age": 55, + "address": { + "state": "North Dakota", + "city": "Beechmont" + } + }, + { + "id": 6436, + "name": "Mallory Richard", + "gender": "female", + "age": 82, + "address": { + "state": "New Mexico", + "city": "Mulberry" + } + }, + { + "id": 6437, + "name": "Malinda Church", + "gender": "female", + "age": 81, + "address": { + "state": "Ohio", + "city": "Oceola" + } + }, + { + "id": 6438, + "name": "David Mitchell", + "gender": "male", + "age": 40, + "address": { + "state": "Connecticut", + "city": "Gorst" + } + }, + { + "id": 6439, + "name": "Katherine Flowers", + "gender": "female", + "age": 69, + "address": { + "state": "Massachusetts", + "city": "Kirk" + } + }, + { + "id": 6440, + "name": "Becker Marsh", + "gender": "male", + "age": 52, + "address": { + "state": "South Dakota", + "city": "Saticoy" + } + }, + { + "id": 6441, + "name": "Dona Battle", + "gender": "female", + "age": 70, + "address": { + "state": "Washington", + "city": "Groton" + } + }, + { + "id": 6442, + "name": "Hardy Mills", + "gender": "male", + "age": 28, + "address": { + "state": "Missouri", + "city": "Tibbie" + } + }, + { + "id": 6443, + "name": "Katrina Nichols", + "gender": "female", + "age": 48, + "address": { + "state": "Nevada", + "city": "Westboro" + } + }, + { + "id": 6444, + "name": "Preston Herring", + "gender": "male", + "age": 19, + "address": { + "state": "Oklahoma", + "city": "Caln" + } + }, + { + "id": 6445, + "name": "Annabelle Gillespie", + "gender": "female", + "age": 66, + "address": { + "state": "Kentucky", + "city": "Brazos" + } + }, + { + "id": 6446, + "name": "Valarie Lewis", + "gender": "female", + "age": 42, + "address": { + "state": "Utah", + "city": "Delshire" + } + }, + { + "id": 6447, + "name": "Wilder Phillips", + "gender": "male", + "age": 64, + "address": { + "state": "Arkansas", + "city": "Hamilton" + } + }, + { + "id": 6448, + "name": "Althea Hopkins", + "gender": "female", + "age": 47, + "address": { + "state": "Maine", + "city": "Jackpot" + } + }, + { + "id": 6449, + "name": "Shaw Booker", + "gender": "male", + "age": 23, + "address": { + "state": "Minnesota", + "city": "Belmont" + } + }, + { + "id": 6450, + "name": "Waller Melton", + "gender": "male", + "age": 65, + "address": { + "state": "Indiana", + "city": "Tuskahoma" + } + }, + { + "id": 6451, + "name": "Trisha Carson", + "gender": "female", + "age": 53, + "address": { + "state": "Nebraska", + "city": "Nogal" + } + }, + { + "id": 6452, + "name": "Skinner Franco", + "gender": "male", + "age": 26, + "address": { + "state": "Michigan", + "city": "Why" + } + }, + { + "id": 6453, + "name": "Leila Mcneil", + "gender": "female", + "age": 32, + "address": { + "state": "Florida", + "city": "Cherokee" + } + }, + { + "id": 6454, + "name": "Carolyn Clark", + "gender": "female", + "age": 29, + "address": { + "state": "New York", + "city": "Concho" + } + }, + { + "id": 6455, + "name": "Parker Mcguire", + "gender": "male", + "age": 43, + "address": { + "state": "Alabama", + "city": "Walton" + } + }, + { + "id": 6456, + "name": "Jacquelyn Garner", + "gender": "female", + "age": 40, + "address": { + "state": "Delaware", + "city": "Stonybrook" + } + }, + { + "id": 6457, + "name": "Aileen Webb", + "gender": "female", + "age": 64, + "address": { + "state": "Arizona", + "city": "Tyhee" + } + }, + { + "id": 6458, + "name": "Spence Odonnell", + "gender": "male", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Rockingham" + } + }, + { + "id": 6459, + "name": "Claudette Avila", + "gender": "female", + "age": 26, + "address": { + "state": "Oregon", + "city": "Sandston" + } + }, + { + "id": 6460, + "name": "Alston Bird", + "gender": "male", + "age": 73, + "address": { + "state": "Tennessee", + "city": "Wells" + } + }, + { + "id": 6461, + "name": "Sophia Fuentes", + "gender": "female", + "age": 82, + "address": { + "state": "Rhode Island", + "city": "Chesapeake" + } + }, + { + "id": 6462, + "name": "Riley Richards", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Suitland" + } + }, + { + "id": 6463, + "name": "Lamb Taylor", + "gender": "male", + "age": 32, + "address": { + "state": "Alaska", + "city": "Cleary" + } + }, + { + "id": 6464, + "name": "Whitney Hooper", + "gender": "female", + "age": 68, + "address": { + "state": "Texas", + "city": "Konterra" + } + }, + { + "id": 6465, + "name": "Blanche Moody", + "gender": "female", + "age": 49, + "address": { + "state": "Georgia", + "city": "Allison" + } + }, + { + "id": 6466, + "name": "Little Bauer", + "gender": "male", + "age": 53, + "address": { + "state": "Kansas", + "city": "Shaft" + } + }, + { + "id": 6467, + "name": "Beasley Bass", + "gender": "male", + "age": 26, + "address": { + "state": "Vermont", + "city": "Carlton" + } + }, + { + "id": 6468, + "name": "Dejesus Roach", + "gender": "male", + "age": 39, + "address": { + "state": "Illinois", + "city": "Centerville" + } + }, + { + "id": 6469, + "name": "Ernestine Rasmussen", + "gender": "female", + "age": 30, + "address": { + "state": "Vermont", + "city": "Lumberton" + } + }, + { + "id": 6470, + "name": "Salazar Justice", + "gender": "male", + "age": 47, + "address": { + "state": "Iowa", + "city": "Ruckersville" + } + }, + { + "id": 6471, + "name": "Jessie Short", + "gender": "female", + "age": 56, + "address": { + "state": "Kansas", + "city": "Guthrie" + } + }, + { + "id": 6472, + "name": "Massey Lambert", + "gender": "male", + "age": 59, + "address": { + "state": "Louisiana", + "city": "Gadsden" + } + }, + { + "id": 6473, + "name": "Kelsey Valdez", + "gender": "female", + "age": 64, + "address": { + "state": "North Carolina", + "city": "Skyland" + } + }, + { + "id": 6474, + "name": "Lindsay Burns", + "gender": "female", + "age": 70, + "address": { + "state": "New Jersey", + "city": "Smock" + } + }, + { + "id": 6475, + "name": "Haley Foreman", + "gender": "female", + "age": 74, + "address": { + "state": "Connecticut", + "city": "Soudan" + } + }, + { + "id": 6476, + "name": "Aida Fischer", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Navarre" + } + }, + { + "id": 6477, + "name": "Ratliff Oliver", + "gender": "male", + "age": 65, + "address": { + "state": "West Virginia", + "city": "Macdona" + } + }, + { + "id": 6478, + "name": "Florence Rutledge", + "gender": "female", + "age": 55, + "address": { + "state": "Wisconsin", + "city": "Chloride" + } + }, + { + "id": 6479, + "name": "Neva Trujillo", + "gender": "female", + "age": 49, + "address": { + "state": "Idaho", + "city": "Strong" + } + }, + { + "id": 6480, + "name": "Gilmore Sosa", + "gender": "male", + "age": 61, + "address": { + "state": "Minnesota", + "city": "Holcombe" + } + }, + { + "id": 6481, + "name": "Austin Duffy", + "gender": "male", + "age": 59, + "address": { + "state": "Colorado", + "city": "Orovada" + } + }, + { + "id": 6482, + "name": "Kelley Booker", + "gender": "female", + "age": 17, + "address": { + "state": "Kentucky", + "city": "Edneyville" + } + }, + { + "id": 6483, + "name": "Heath Reilly", + "gender": "male", + "age": 68, + "address": { + "state": "Pennsylvania", + "city": "Walland" + } + }, + { + "id": 6484, + "name": "Beard Perez", + "gender": "male", + "age": 54, + "address": { + "state": "Indiana", + "city": "Vicksburg" + } + }, + { + "id": 6485, + "name": "Carpenter Jacobson", + "gender": "male", + "age": 76, + "address": { + "state": "Maryland", + "city": "Tuskahoma" + } + }, + { + "id": 6486, + "name": "Shirley Rodriguez", + "gender": "female", + "age": 64, + "address": { + "state": "Tennessee", + "city": "Snyderville" + } + }, + { + "id": 6487, + "name": "Gaines Monroe", + "gender": "male", + "age": 58, + "address": { + "state": "Delaware", + "city": "Suitland" + } + }, + { + "id": 6488, + "name": "Kemp Morris", + "gender": "male", + "age": 53, + "address": { + "state": "Utah", + "city": "Grimsley" + } + }, + { + "id": 6489, + "name": "Dudley Baxter", + "gender": "male", + "age": 32, + "address": { + "state": "California", + "city": "Vincent" + } + }, + { + "id": 6490, + "name": "Hendricks House", + "gender": "male", + "age": 79, + "address": { + "state": "New Hampshire", + "city": "Lutsen" + } + }, + { + "id": 6491, + "name": "Cote Henderson", + "gender": "male", + "age": 64, + "address": { + "state": "Oregon", + "city": "Hachita" + } + }, + { + "id": 6492, + "name": "Ellison Crosby", + "gender": "male", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Rehrersburg" + } + }, + { + "id": 6493, + "name": "Morton Lancaster", + "gender": "male", + "age": 63, + "address": { + "state": "Missouri", + "city": "Turah" + } + }, + { + "id": 6494, + "name": "Hernandez Hudson", + "gender": "male", + "age": 49, + "address": { + "state": "Michigan", + "city": "Thornport" + } + }, + { + "id": 6495, + "name": "Manuela Kelly", + "gender": "female", + "age": 58, + "address": { + "state": "Virginia", + "city": "Robinson" + } + }, + { + "id": 6496, + "name": "Georgia Soto", + "gender": "female", + "age": 37, + "address": { + "state": "Florida", + "city": "Galesville" + } + }, + { + "id": 6497, + "name": "Malinda Flores", + "gender": "female", + "age": 27, + "address": { + "state": "Rhode Island", + "city": "Beason" + } + }, + { + "id": 6498, + "name": "Lisa Craft", + "gender": "female", + "age": 31, + "address": { + "state": "Texas", + "city": "Mulino" + } + }, + { + "id": 6499, + "name": "Ferguson Gilliam", + "gender": "male", + "age": 31, + "address": { + "state": "Mississippi", + "city": "Allamuchy" + } + }, + { + "id": 6500, + "name": "House Dixon", + "gender": "male", + "age": 27, + "address": { + "state": "Arkansas", + "city": "Charco" + } + }, + { + "id": 6501, + "name": "Franklin Barron", + "gender": "male", + "age": 21, + "address": { + "state": "Montana", + "city": "Caspar" + } + }, + { + "id": 6502, + "name": "Wilson Harrington", + "gender": "male", + "age": 79, + "address": { + "state": "South Dakota", + "city": "Groton" + } + }, + { + "id": 6503, + "name": "Esmeralda Moses", + "gender": "female", + "age": 27, + "address": { + "state": "Massachusetts", + "city": "Movico" + } + }, + { + "id": 6504, + "name": "Deena Carroll", + "gender": "female", + "age": 58, + "address": { + "state": "Georgia", + "city": "Sperryville" + } + }, + { + "id": 6505, + "name": "Dorothea Gonzales", + "gender": "female", + "age": 44, + "address": { + "state": "Alaska", + "city": "Boykin" + } + }, + { + "id": 6506, + "name": "Eaton Pruitt", + "gender": "male", + "age": 49, + "address": { + "state": "Nevada", + "city": "Leland" + } + }, + { + "id": 6507, + "name": "Tammi Rivera", + "gender": "female", + "age": 23, + "address": { + "state": "Wyoming", + "city": "Dennard" + } + }, + { + "id": 6508, + "name": "Darcy Rojas", + "gender": "female", + "age": 74, + "address": { + "state": "Oklahoma", + "city": "Sultana" + } + }, + { + "id": 6509, + "name": "Bauer Copeland", + "gender": "male", + "age": 21, + "address": { + "state": "Maine", + "city": "Chesterfield" + } + }, + { + "id": 6510, + "name": "Mcmillan Taylor", + "gender": "male", + "age": 49, + "address": { + "state": "Alabama", + "city": "Rockingham" + } + }, + { + "id": 6511, + "name": "Abigail Langley", + "gender": "female", + "age": 26, + "address": { + "state": "Ohio", + "city": "Siglerville" + } + }, + { + "id": 6512, + "name": "Oconnor Mejia", + "gender": "male", + "age": 43, + "address": { + "state": "North Dakota", + "city": "Elrama" + } + }, + { + "id": 6513, + "name": "Claire Estes", + "gender": "female", + "age": 33, + "address": { + "state": "South Carolina", + "city": "Waiohinu" + } + }, + { + "id": 6514, + "name": "Steele Ashley", + "gender": "male", + "age": 73, + "address": { + "state": "Arizona", + "city": "Yonah" + } + }, + { + "id": 6515, + "name": "Carson England", + "gender": "male", + "age": 17, + "address": { + "state": "New York", + "city": "Lupton" + } + }, + { + "id": 6516, + "name": "Inez Munoz", + "gender": "female", + "age": 64, + "address": { + "state": "Washington", + "city": "Eastmont" + } + }, + { + "id": 6517, + "name": "Ola Robbins", + "gender": "female", + "age": 80, + "address": { + "state": "New Jersey", + "city": "Fresno" + } + }, + { + "id": 6518, + "name": "Delores Gross", + "gender": "female", + "age": 69, + "address": { + "state": "California", + "city": "Devon" + } + }, + { + "id": 6519, + "name": "Julianne Henson", + "gender": "female", + "age": 26, + "address": { + "state": "New Hampshire", + "city": "Sparkill" + } + }, + { + "id": 6520, + "name": "Frederick Levine", + "gender": "male", + "age": 24, + "address": { + "state": "Oregon", + "city": "Freeburn" + } + }, + { + "id": 6521, + "name": "Teresa Whitfield", + "gender": "female", + "age": 72, + "address": { + "state": "New Mexico", + "city": "Holtville" + } + }, + { + "id": 6522, + "name": "Tamara Waller", + "gender": "female", + "age": 51, + "address": { + "state": "Louisiana", + "city": "Cartwright" + } + }, + { + "id": 6523, + "name": "Obrien Baldwin", + "gender": "male", + "age": 80, + "address": { + "state": "Florida", + "city": "Bath" + } + }, + { + "id": 6524, + "name": "Leola Maynard", + "gender": "female", + "age": 50, + "address": { + "state": "Maine", + "city": "Singer" + } + }, + { + "id": 6525, + "name": "Holland Spears", + "gender": "male", + "age": 54, + "address": { + "state": "Kansas", + "city": "Hiseville" + } + }, + { + "id": 6526, + "name": "Browning Cline", + "gender": "male", + "age": 48, + "address": { + "state": "Connecticut", + "city": "Marshall" + } + }, + { + "id": 6527, + "name": "Margery Stephens", + "gender": "female", + "age": 70, + "address": { + "state": "Virginia", + "city": "Clarktown" + } + }, + { + "id": 6528, + "name": "Charmaine Donovan", + "gender": "female", + "age": 57, + "address": { + "state": "Utah", + "city": "Warsaw" + } + }, + { + "id": 6529, + "name": "Clarice Stephenson", + "gender": "female", + "age": 54, + "address": { + "state": "North Carolina", + "city": "Herald" + } + }, + { + "id": 6530, + "name": "Amanda Sutton", + "gender": "female", + "age": 61, + "address": { + "state": "Missouri", + "city": "Hannasville" + } + }, + { + "id": 6531, + "name": "Heather Stone", + "gender": "female", + "age": 65, + "address": { + "state": "Illinois", + "city": "Bellfountain" + } + }, + { + "id": 6532, + "name": "Sharp Hughes", + "gender": "male", + "age": 40, + "address": { + "state": "Alaska", + "city": "Moraida" + } + }, + { + "id": 6533, + "name": "Dixon Burns", + "gender": "male", + "age": 19, + "address": { + "state": "North Dakota", + "city": "Foxworth" + } + }, + { + "id": 6534, + "name": "Meadows Daniels", + "gender": "male", + "age": 48, + "address": { + "state": "Washington", + "city": "Torboy" + } + }, + { + "id": 6535, + "name": "Sharpe Price", + "gender": "male", + "age": 58, + "address": { + "state": "Michigan", + "city": "Terlingua" + } + }, + { + "id": 6536, + "name": "Becky Pena", + "gender": "female", + "age": 39, + "address": { + "state": "Minnesota", + "city": "Saticoy" + } + }, + { + "id": 6537, + "name": "Orr Newton", + "gender": "male", + "age": 47, + "address": { + "state": "Alabama", + "city": "Shawmut" + } + }, + { + "id": 6538, + "name": "Erma Smith", + "gender": "female", + "age": 28, + "address": { + "state": "Texas", + "city": "Cochranville" + } + }, + { + "id": 6539, + "name": "Rodgers Travis", + "gender": "male", + "age": 44, + "address": { + "state": "Arizona", + "city": "Durham" + } + }, + { + "id": 6540, + "name": "Mari Eaton", + "gender": "female", + "age": 51, + "address": { + "state": "Iowa", + "city": "Greenwich" + } + }, + { + "id": 6541, + "name": "Ingram Glass", + "gender": "male", + "age": 80, + "address": { + "state": "Oklahoma", + "city": "Utting" + } + }, + { + "id": 6542, + "name": "Margaret Peck", + "gender": "female", + "age": 29, + "address": { + "state": "South Dakota", + "city": "Hayden" + } + }, + { + "id": 6543, + "name": "Michael Riddle", + "gender": "male", + "age": 46, + "address": { + "state": "Nevada", + "city": "Choctaw" + } + }, + { + "id": 6544, + "name": "Randolph Aguilar", + "gender": "male", + "age": 49, + "address": { + "state": "Wisconsin", + "city": "Mapletown" + } + }, + { + "id": 6545, + "name": "Nell Turner", + "gender": "female", + "age": 64, + "address": { + "state": "Tennessee", + "city": "Shaft" + } + }, + { + "id": 6546, + "name": "Vincent Fowler", + "gender": "male", + "age": 44, + "address": { + "state": "Idaho", + "city": "Onton" + } + }, + { + "id": 6547, + "name": "Lane Cooke", + "gender": "male", + "age": 27, + "address": { + "state": "Indiana", + "city": "Dola" + } + }, + { + "id": 6548, + "name": "Amparo Hodges", + "gender": "female", + "age": 33, + "address": { + "state": "Rhode Island", + "city": "Byrnedale" + } + }, + { + "id": 6549, + "name": "Inez Kerr", + "gender": "female", + "age": 39, + "address": { + "state": "Maryland", + "city": "Northchase" + } + }, + { + "id": 6550, + "name": "Mcmahon Castillo", + "gender": "male", + "age": 23, + "address": { + "state": "West Virginia", + "city": "Olney" + } + }, + { + "id": 6551, + "name": "Brittany Branch", + "gender": "female", + "age": 62, + "address": { + "state": "Wyoming", + "city": "Sheatown" + } + }, + { + "id": 6552, + "name": "Mollie Barnett", + "gender": "female", + "age": 54, + "address": { + "state": "Montana", + "city": "Corinne" + } + }, + { + "id": 6553, + "name": "White Carrillo", + "gender": "male", + "age": 46, + "address": { + "state": "Colorado", + "city": "Forbestown" + } + }, + { + "id": 6554, + "name": "Yang Moore", + "gender": "male", + "age": 50, + "address": { + "state": "Pennsylvania", + "city": "Hollymead" + } + }, + { + "id": 6555, + "name": "Katharine Calhoun", + "gender": "female", + "age": 82, + "address": { + "state": "Nebraska", + "city": "Jeff" + } + }, + { + "id": 6556, + "name": "Olive Oliver", + "gender": "female", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Jennings" + } + }, + { + "id": 6557, + "name": "Mendoza Swanson", + "gender": "male", + "age": 38, + "address": { + "state": "New York", + "city": "Orin" + } + }, + { + "id": 6558, + "name": "Jewell Baker", + "gender": "female", + "age": 79, + "address": { + "state": "Hawaii", + "city": "Fidelis" + } + }, + { + "id": 6559, + "name": "Clemons Knox", + "gender": "male", + "age": 43, + "address": { + "state": "Georgia", + "city": "Idamay" + } + }, + { + "id": 6560, + "name": "Kris Kemp", + "gender": "female", + "age": 17, + "address": { + "state": "Kentucky", + "city": "Shrewsbury" + } + }, + { + "id": 6561, + "name": "Alexander Dillon", + "gender": "male", + "age": 68, + "address": { + "state": "Delaware", + "city": "Coldiron" + } + }, + { + "id": 6562, + "name": "Kramer Galloway", + "gender": "male", + "age": 70, + "address": { + "state": "South Carolina", + "city": "Statenville" + } + }, + { + "id": 6563, + "name": "Long Garrett", + "gender": "male", + "age": 26, + "address": { + "state": "Arkansas", + "city": "Lindisfarne" + } + }, + { + "id": 6564, + "name": "Marissa Sloan", + "gender": "female", + "age": 63, + "address": { + "state": "Mississippi", + "city": "Blanco" + } + }, + { + "id": 6565, + "name": "Miller Horn", + "gender": "male", + "age": 37, + "address": { + "state": "Vermont", + "city": "Townsend" + } + }, + { + "id": 6566, + "name": "Erika Logan", + "gender": "female", + "age": 67, + "address": { + "state": "South Carolina", + "city": "Wescosville" + } + }, + { + "id": 6567, + "name": "Beulah Hendrix", + "gender": "female", + "age": 80, + "address": { + "state": "New Mexico", + "city": "Wright" + } + }, + { + "id": 6568, + "name": "Nielsen Hahn", + "gender": "male", + "age": 81, + "address": { + "state": "Wyoming", + "city": "Elliston" + } + }, + { + "id": 6569, + "name": "Aguirre Young", + "gender": "male", + "age": 46, + "address": { + "state": "North Carolina", + "city": "Elfrida" + } + }, + { + "id": 6570, + "name": "Hattie Tillman", + "gender": "female", + "age": 44, + "address": { + "state": "New Jersey", + "city": "Greensburg" + } + }, + { + "id": 6571, + "name": "David Frye", + "gender": "male", + "age": 82, + "address": { + "state": "Missouri", + "city": "Blanco" + } + }, + { + "id": 6572, + "name": "Maldonado Alexander", + "gender": "male", + "age": 67, + "address": { + "state": "Washington", + "city": "Baden" + } + }, + { + "id": 6573, + "name": "John Wilson", + "gender": "female", + "age": 55, + "address": { + "state": "Rhode Island", + "city": "Summertown" + } + }, + { + "id": 6574, + "name": "Merritt Villarreal", + "gender": "male", + "age": 37, + "address": { + "state": "Alaska", + "city": "Efland" + } + }, + { + "id": 6575, + "name": "Pate Sawyer", + "gender": "male", + "age": 57, + "address": { + "state": "Illinois", + "city": "Martell" + } + }, + { + "id": 6576, + "name": "Brittney Burch", + "gender": "female", + "age": 60, + "address": { + "state": "Indiana", + "city": "Dowling" + } + }, + { + "id": 6577, + "name": "Johanna Fry", + "gender": "female", + "age": 39, + "address": { + "state": "Texas", + "city": "Brecon" + } + }, + { + "id": 6578, + "name": "Rodgers Patel", + "gender": "male", + "age": 80, + "address": { + "state": "Nebraska", + "city": "Idledale" + } + }, + { + "id": 6579, + "name": "Margarita Ayala", + "gender": "female", + "age": 67, + "address": { + "state": "Virginia", + "city": "Clara" + } + }, + { + "id": 6580, + "name": "Briana Wagner", + "gender": "female", + "age": 62, + "address": { + "state": "Montana", + "city": "Westwood" + } + }, + { + "id": 6581, + "name": "Church Velez", + "gender": "male", + "age": 20, + "address": { + "state": "Mississippi", + "city": "Levant" + } + }, + { + "id": 6582, + "name": "Lorena Peters", + "gender": "female", + "age": 26, + "address": { + "state": "California", + "city": "Carbonville" + } + }, + { + "id": 6583, + "name": "Mcknight Hood", + "gender": "male", + "age": 47, + "address": { + "state": "Idaho", + "city": "Lemoyne" + } + }, + { + "id": 6584, + "name": "Hewitt Tran", + "gender": "male", + "age": 60, + "address": { + "state": "Michigan", + "city": "Wacissa" + } + }, + { + "id": 6585, + "name": "Stanton Wall", + "gender": "male", + "age": 56, + "address": { + "state": "Florida", + "city": "Carlton" + } + }, + { + "id": 6586, + "name": "Iva Boyer", + "gender": "female", + "age": 27, + "address": { + "state": "Utah", + "city": "Canoochee" + } + }, + { + "id": 6587, + "name": "Cara Dixon", + "gender": "female", + "age": 66, + "address": { + "state": "West Virginia", + "city": "Edneyville" + } + }, + { + "id": 6588, + "name": "Kelley Strong", + "gender": "female", + "age": 30, + "address": { + "state": "Minnesota", + "city": "Kimmell" + } + }, + { + "id": 6589, + "name": "Krystal Reese", + "gender": "female", + "age": 59, + "address": { + "state": "South Dakota", + "city": "Bowie" + } + }, + { + "id": 6590, + "name": "Webster Stone", + "gender": "male", + "age": 63, + "address": { + "state": "Tennessee", + "city": "Wyano" + } + }, + { + "id": 6591, + "name": "Letha Espinoza", + "gender": "female", + "age": 36, + "address": { + "state": "Nevada", + "city": "Beyerville" + } + }, + { + "id": 6592, + "name": "Gail Joseph", + "gender": "female", + "age": 79, + "address": { + "state": "Maryland", + "city": "Juarez" + } + }, + { + "id": 6593, + "name": "Mable Wells", + "gender": "female", + "age": 42, + "address": { + "state": "Ohio", + "city": "Benson" + } + }, + { + "id": 6594, + "name": "Lawrence Bird", + "gender": "male", + "age": 66, + "address": { + "state": "Arkansas", + "city": "Homestead" + } + }, + { + "id": 6595, + "name": "Bonnie Gould", + "gender": "female", + "age": 36, + "address": { + "state": "Arizona", + "city": "Frank" + } + }, + { + "id": 6596, + "name": "Albert Bentley", + "gender": "male", + "age": 45, + "address": { + "state": "Pennsylvania", + "city": "Broadlands" + } + }, + { + "id": 6597, + "name": "Owen Chambers", + "gender": "male", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Floris" + } + }, + { + "id": 6598, + "name": "Massey Parks", + "gender": "male", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Boykin" + } + }, + { + "id": 6599, + "name": "Robles Everett", + "gender": "male", + "age": 61, + "address": { + "state": "Massachusetts", + "city": "Dunnavant" + } + }, + { + "id": 6600, + "name": "Colon Rojas", + "gender": "male", + "age": 72, + "address": { + "state": "Iowa", + "city": "Volta" + } + }, + { + "id": 6601, + "name": "Atkins Duffy", + "gender": "male", + "age": 49, + "address": { + "state": "Oregon", + "city": "Chaparrito" + } + }, + { + "id": 6602, + "name": "Ilene Farrell", + "gender": "female", + "age": 50, + "address": { + "state": "Georgia", + "city": "Waverly" + } + }, + { + "id": 6603, + "name": "Cameron Newman", + "gender": "male", + "age": 41, + "address": { + "state": "Vermont", + "city": "Grapeview" + } + }, + { + "id": 6604, + "name": "Petersen Bender", + "gender": "male", + "age": 41, + "address": { + "state": "Alabama", + "city": "Emison" + } + }, + { + "id": 6605, + "name": "Julie Whitaker", + "gender": "female", + "age": 62, + "address": { + "state": "Kansas", + "city": "Hasty" + } + }, + { + "id": 6606, + "name": "Bernadine Ross", + "gender": "female", + "age": 40, + "address": { + "state": "Delaware", + "city": "Waumandee" + } + }, + { + "id": 6607, + "name": "Heidi Welch", + "gender": "female", + "age": 44, + "address": { + "state": "New York", + "city": "Wattsville" + } + }, + { + "id": 6608, + "name": "Jordan Bray", + "gender": "female", + "age": 35, + "address": { + "state": "North Dakota", + "city": "Tecolotito" + } + }, + { + "id": 6609, + "name": "Weaver Schwartz", + "gender": "male", + "age": 21, + "address": { + "state": "Connecticut", + "city": "Warren" + } + }, + { + "id": 6610, + "name": "Elise Pugh", + "gender": "female", + "age": 82, + "address": { + "state": "Colorado", + "city": "Kingstowne" + } + }, + { + "id": 6611, + "name": "Marquita Stevenson", + "gender": "female", + "age": 35, + "address": { + "state": "Kentucky", + "city": "Itmann" + } + }, + { + "id": 6612, + "name": "Rene Daniels", + "gender": "female", + "age": 56, + "address": { + "state": "Oklahoma", + "city": "Chesterfield" + } + }, + { + "id": 6613, + "name": "Edwards Ferrell", + "gender": "male", + "age": 63, + "address": { + "state": "Hawaii", + "city": "Worton" + } + }, + { + "id": 6614, + "name": "Brooks Roach", + "gender": "male", + "age": 77, + "address": { + "state": "Louisiana", + "city": "Wanship" + } + }, + { + "id": 6615, + "name": "Alvarez Langley", + "gender": "male", + "age": 48, + "address": { + "state": "South Carolina", + "city": "Connerton" + } + }, + { + "id": 6616, + "name": "Maude Carpenter", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Villarreal" + } + }, + { + "id": 6617, + "name": "Andrea Chambers", + "gender": "female", + "age": 37, + "address": { + "state": "Delaware", + "city": "Riverton" + } + }, + { + "id": 6618, + "name": "Smith Booth", + "gender": "male", + "age": 44, + "address": { + "state": "Wyoming", + "city": "Columbus" + } + }, + { + "id": 6619, + "name": "Vivian Watkins", + "gender": "female", + "age": 80, + "address": { + "state": "New Hampshire", + "city": "Brooktrails" + } + }, + { + "id": 6620, + "name": "Sweeney Brock", + "gender": "male", + "age": 53, + "address": { + "state": "Virginia", + "city": "Germanton" + } + }, + { + "id": 6621, + "name": "Suzanne Massey", + "gender": "female", + "age": 65, + "address": { + "state": "New Jersey", + "city": "Barstow" + } + }, + { + "id": 6622, + "name": "Pamela Foster", + "gender": "female", + "age": 57, + "address": { + "state": "Alaska", + "city": "Wawona" + } + }, + { + "id": 6623, + "name": "Katrina Sutton", + "gender": "female", + "age": 55, + "address": { + "state": "Minnesota", + "city": "Freeburn" + } + }, + { + "id": 6624, + "name": "Summer Patton", + "gender": "female", + "age": 46, + "address": { + "state": "Idaho", + "city": "Lafferty" + } + }, + { + "id": 6625, + "name": "Terri Gray", + "gender": "female", + "age": 49, + "address": { + "state": "Kansas", + "city": "Axis" + } + }, + { + "id": 6626, + "name": "Kathrine Anthony", + "gender": "female", + "age": 19, + "address": { + "state": "Colorado", + "city": "Kenwood" + } + }, + { + "id": 6627, + "name": "Witt Steele", + "gender": "male", + "age": 54, + "address": { + "state": "Illinois", + "city": "Newcastle" + } + }, + { + "id": 6628, + "name": "Ola Roberson", + "gender": "female", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Deercroft" + } + }, + { + "id": 6629, + "name": "Agnes Turner", + "gender": "female", + "age": 57, + "address": { + "state": "North Carolina", + "city": "Bluetown" + } + }, + { + "id": 6630, + "name": "Irma Chaney", + "gender": "female", + "age": 56, + "address": { + "state": "Indiana", + "city": "Alderpoint" + } + }, + { + "id": 6631, + "name": "Patricia Ray", + "gender": "female", + "age": 73, + "address": { + "state": "New York", + "city": "Imperial" + } + }, + { + "id": 6632, + "name": "Carlene Spears", + "gender": "female", + "age": 26, + "address": { + "state": "Maryland", + "city": "Hoagland" + } + }, + { + "id": 6633, + "name": "Bonita Wright", + "gender": "female", + "age": 28, + "address": { + "state": "Arizona", + "city": "Warsaw" + } + }, + { + "id": 6634, + "name": "Toni Reed", + "gender": "female", + "age": 38, + "address": { + "state": "Iowa", + "city": "Frizzleburg" + } + }, + { + "id": 6635, + "name": "Joyce Santiago", + "gender": "female", + "age": 42, + "address": { + "state": "Ohio", + "city": "Watchtower" + } + }, + { + "id": 6636, + "name": "Minnie Olsen", + "gender": "female", + "age": 25, + "address": { + "state": "Louisiana", + "city": "Odessa" + } + }, + { + "id": 6637, + "name": "William Baldwin", + "gender": "male", + "age": 29, + "address": { + "state": "North Dakota", + "city": "Foxworth" + } + }, + { + "id": 6638, + "name": "Florine Pearson", + "gender": "female", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Cloverdale" + } + }, + { + "id": 6639, + "name": "Cardenas Reyes", + "gender": "male", + "age": 55, + "address": { + "state": "Mississippi", + "city": "Baden" + } + }, + { + "id": 6640, + "name": "Benson Mcneil", + "gender": "male", + "age": 38, + "address": { + "state": "Hawaii", + "city": "Roberts" + } + }, + { + "id": 6641, + "name": "Ramona Fowler", + "gender": "female", + "age": 39, + "address": { + "state": "Vermont", + "city": "Salvo" + } + }, + { + "id": 6642, + "name": "Blake Rowe", + "gender": "male", + "age": 24, + "address": { + "state": "Texas", + "city": "Englevale" + } + }, + { + "id": 6643, + "name": "Gamble Moore", + "gender": "male", + "age": 53, + "address": { + "state": "Pennsylvania", + "city": "Westmoreland" + } + }, + { + "id": 6644, + "name": "Ericka Burris", + "gender": "female", + "age": 27, + "address": { + "state": "South Dakota", + "city": "Edgewater" + } + }, + { + "id": 6645, + "name": "Megan Pope", + "gender": "female", + "age": 80, + "address": { + "state": "Oregon", + "city": "Newkirk" + } + }, + { + "id": 6646, + "name": "Garrison Kline", + "gender": "male", + "age": 72, + "address": { + "state": "Kentucky", + "city": "Whitestone" + } + }, + { + "id": 6647, + "name": "Wilkinson Erickson", + "gender": "male", + "age": 40, + "address": { + "state": "Maine", + "city": "Woodruff" + } + }, + { + "id": 6648, + "name": "Munoz Petersen", + "gender": "male", + "age": 82, + "address": { + "state": "Tennessee", + "city": "Wanamie" + } + }, + { + "id": 6649, + "name": "Angelia Middleton", + "gender": "female", + "age": 81, + "address": { + "state": "Washington", + "city": "Hanover" + } + }, + { + "id": 6650, + "name": "Griffin Avery", + "gender": "male", + "age": 80, + "address": { + "state": "Utah", + "city": "Wyano" + } + }, + { + "id": 6651, + "name": "Meghan Winters", + "gender": "female", + "age": 40, + "address": { + "state": "Florida", + "city": "Albrightsville" + } + }, + { + "id": 6652, + "name": "Trudy Meyer", + "gender": "female", + "age": 50, + "address": { + "state": "Wisconsin", + "city": "Freelandville" + } + }, + { + "id": 6653, + "name": "Peterson Patrick", + "gender": "male", + "age": 48, + "address": { + "state": "Nebraska", + "city": "Herlong" + } + }, + { + "id": 6654, + "name": "Alma Mcconnell", + "gender": "female", + "age": 49, + "address": { + "state": "New Mexico", + "city": "Yogaville" + } + }, + { + "id": 6655, + "name": "Christina Rosa", + "gender": "female", + "age": 73, + "address": { + "state": "Arkansas", + "city": "Shawmut" + } + }, + { + "id": 6656, + "name": "Malinda Gordon", + "gender": "female", + "age": 53, + "address": { + "state": "West Virginia", + "city": "Terlingua" + } + }, + { + "id": 6657, + "name": "Tamra Roth", + "gender": "female", + "age": 57, + "address": { + "state": "Montana", + "city": "Summerset" + } + }, + { + "id": 6658, + "name": "Kathy Dickson", + "gender": "female", + "age": 23, + "address": { + "state": "Missouri", + "city": "Bowie" + } + }, + { + "id": 6659, + "name": "Perry Powers", + "gender": "male", + "age": 17, + "address": { + "state": "Alabama", + "city": "Sunwest" + } + }, + { + "id": 6660, + "name": "Hudson Blankenship", + "gender": "male", + "age": 69, + "address": { + "state": "Connecticut", + "city": "Fairacres" + } + }, + { + "id": 6661, + "name": "Leigh Hewitt", + "gender": "female", + "age": 30, + "address": { + "state": "Rhode Island", + "city": "Lydia" + } + }, + { + "id": 6662, + "name": "Evangeline Morin", + "gender": "female", + "age": 48, + "address": { + "state": "Georgia", + "city": "Swartzville" + } + }, + { + "id": 6663, + "name": "Orr Snow", + "gender": "male", + "age": 21, + "address": { + "state": "Michigan", + "city": "Croom" + } + }, + { + "id": 6664, + "name": "Heather Stein", + "gender": "female", + "age": 24, + "address": { + "state": "Colorado", + "city": "Zeba" + } + }, + { + "id": 6665, + "name": "Gabriela Hicks", + "gender": "female", + "age": 78, + "address": { + "state": "Massachusetts", + "city": "Marshall" + } + }, + { + "id": 6666, + "name": "Constance Santana", + "gender": "female", + "age": 47, + "address": { + "state": "California", + "city": "Smeltertown" + } + }, + { + "id": 6667, + "name": "Huffman Holmes", + "gender": "male", + "age": 71, + "address": { + "state": "Maryland", + "city": "Durham" + } + }, + { + "id": 6668, + "name": "Allie Blair", + "gender": "female", + "age": 46, + "address": { + "state": "Delaware", + "city": "Chalfant" + } + }, + { + "id": 6669, + "name": "Becky Mack", + "gender": "female", + "age": 40, + "address": { + "state": "Mississippi", + "city": "Shawmut" + } + }, + { + "id": 6670, + "name": "Parks Mcfadden", + "gender": "male", + "age": 36, + "address": { + "state": "Connecticut", + "city": "Needmore" + } + }, + { + "id": 6671, + "name": "Lawrence Padilla", + "gender": "male", + "age": 68, + "address": { + "state": "Florida", + "city": "Sandston" + } + }, + { + "id": 6672, + "name": "Nina Gill", + "gender": "female", + "age": 52, + "address": { + "state": "Alaska", + "city": "Kanauga" + } + }, + { + "id": 6673, + "name": "Helene Kirby", + "gender": "female", + "age": 63, + "address": { + "state": "Minnesota", + "city": "Russellville" + } + }, + { + "id": 6674, + "name": "Lang Austin", + "gender": "male", + "age": 28, + "address": { + "state": "Kentucky", + "city": "Coleville" + } + }, + { + "id": 6675, + "name": "Victoria Valdez", + "gender": "female", + "age": 81, + "address": { + "state": "Oregon", + "city": "Wakarusa" + } + }, + { + "id": 6676, + "name": "Duke Mccarthy", + "gender": "male", + "age": 18, + "address": { + "state": "Montana", + "city": "Trexlertown" + } + }, + { + "id": 6677, + "name": "Bullock Obrien", + "gender": "male", + "age": 33, + "address": { + "state": "West Virginia", + "city": "Idledale" + } + }, + { + "id": 6678, + "name": "Jessie Vang", + "gender": "female", + "age": 80, + "address": { + "state": "Nevada", + "city": "Allison" + } + }, + { + "id": 6679, + "name": "Claudette Daniels", + "gender": "female", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Twilight" + } + }, + { + "id": 6680, + "name": "Warner Elliott", + "gender": "male", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Itmann" + } + }, + { + "id": 6681, + "name": "Simmons Maynard", + "gender": "male", + "age": 35, + "address": { + "state": "Oklahoma", + "city": "Saranap" + } + }, + { + "id": 6682, + "name": "Kerri Erickson", + "gender": "female", + "age": 80, + "address": { + "state": "New Mexico", + "city": "Chapin" + } + }, + { + "id": 6683, + "name": "Hines Blankenship", + "gender": "male", + "age": 44, + "address": { + "state": "Texas", + "city": "Bowden" + } + }, + { + "id": 6684, + "name": "Ann Cantu", + "gender": "female", + "age": 35, + "address": { + "state": "Idaho", + "city": "Fruitdale" + } + }, + { + "id": 6685, + "name": "Carol Johnson", + "gender": "female", + "age": 26, + "address": { + "state": "South Carolina", + "city": "Caln" + } + }, + { + "id": 6686, + "name": "Annette Howe", + "gender": "female", + "age": 44, + "address": { + "state": "Illinois", + "city": "Chase" + } + }, + { + "id": 6687, + "name": "Coleen Mueller", + "gender": "female", + "age": 72, + "address": { + "state": "Alabama", + "city": "Vale" + } + }, + { + "id": 6688, + "name": "Sasha Snider", + "gender": "female", + "age": 54, + "address": { + "state": "Nebraska", + "city": "Chelsea" + } + }, + { + "id": 6689, + "name": "Reese Alvarado", + "gender": "male", + "age": 65, + "address": { + "state": "Rhode Island", + "city": "Hoehne" + } + }, + { + "id": 6690, + "name": "Chrystal Stout", + "gender": "female", + "age": 72, + "address": { + "state": "Iowa", + "city": "Disautel" + } + }, + { + "id": 6691, + "name": "Marcella Bridges", + "gender": "female", + "age": 26, + "address": { + "state": "Indiana", + "city": "Welch" + } + }, + { + "id": 6692, + "name": "Ellis Hoffman", + "gender": "male", + "age": 66, + "address": { + "state": "South Dakota", + "city": "Ogema" + } + }, + { + "id": 6693, + "name": "Dolly Mcclure", + "gender": "female", + "age": 43, + "address": { + "state": "Utah", + "city": "Chesapeake" + } + }, + { + "id": 6694, + "name": "Melinda Swanson", + "gender": "female", + "age": 46, + "address": { + "state": "Hawaii", + "city": "Brule" + } + }, + { + "id": 6695, + "name": "Nikki Barron", + "gender": "female", + "age": 34, + "address": { + "state": "Pennsylvania", + "city": "Cataract" + } + }, + { + "id": 6696, + "name": "Boyd Carrillo", + "gender": "male", + "age": 57, + "address": { + "state": "North Dakota", + "city": "Morriston" + } + }, + { + "id": 6697, + "name": "Clare Foley", + "gender": "female", + "age": 45, + "address": { + "state": "New Hampshire", + "city": "Logan" + } + }, + { + "id": 6698, + "name": "Church Cobb", + "gender": "male", + "age": 43, + "address": { + "state": "Wisconsin", + "city": "Forbestown" + } + }, + { + "id": 6699, + "name": "Wyatt Mcknight", + "gender": "male", + "age": 63, + "address": { + "state": "Missouri", + "city": "Statenville" + } + }, + { + "id": 6700, + "name": "Leonard Cameron", + "gender": "male", + "age": 75, + "address": { + "state": "Arkansas", + "city": "Colton" + } + }, + { + "id": 6701, + "name": "Hamilton Bell", + "gender": "male", + "age": 64, + "address": { + "state": "Kansas", + "city": "Churchill" + } + }, + { + "id": 6702, + "name": "Mcdaniel Welch", + "gender": "male", + "age": 81, + "address": { + "state": "New York", + "city": "Crawfordsville" + } + }, + { + "id": 6703, + "name": "Schultz Carter", + "gender": "male", + "age": 52, + "address": { + "state": "Vermont", + "city": "Emory" + } + }, + { + "id": 6704, + "name": "Corina Manning", + "gender": "female", + "age": 59, + "address": { + "state": "Tennessee", + "city": "Longoria" + } + }, + { + "id": 6705, + "name": "Lillian Bishop", + "gender": "female", + "age": 21, + "address": { + "state": "Louisiana", + "city": "Salvo" + } + }, + { + "id": 6706, + "name": "Laurie Burns", + "gender": "female", + "age": 71, + "address": { + "state": "Wyoming", + "city": "Berlin" + } + }, + { + "id": 6707, + "name": "Sonja Strickland", + "gender": "female", + "age": 76, + "address": { + "state": "Arizona", + "city": "Ypsilanti" + } + }, + { + "id": 6708, + "name": "Lorraine Aguilar", + "gender": "female", + "age": 68, + "address": { + "state": "Georgia", + "city": "Broadlands" + } + }, + { + "id": 6709, + "name": "Bradshaw Charles", + "gender": "male", + "age": 34, + "address": { + "state": "Washington", + "city": "Darlington" + } + }, + { + "id": 6710, + "name": "Patricia Lester", + "gender": "female", + "age": 53, + "address": { + "state": "Maine", + "city": "Gilmore" + } + }, + { + "id": 6711, + "name": "Myra Miranda", + "gender": "female", + "age": 23, + "address": { + "state": "Michigan", + "city": "Independence" + } + }, + { + "id": 6712, + "name": "Russell Reilly", + "gender": "male", + "age": 68, + "address": { + "state": "Virginia", + "city": "Spelter" + } + }, + { + "id": 6713, + "name": "Mann Baldwin", + "gender": "male", + "age": 26, + "address": { + "state": "Washington", + "city": "Interlochen" + } + }, + { + "id": 6714, + "name": "Jewel Williams", + "gender": "female", + "age": 61, + "address": { + "state": "Missouri", + "city": "Herlong" + } + }, + { + "id": 6715, + "name": "Howell Bruce", + "gender": "male", + "age": 77, + "address": { + "state": "Iowa", + "city": "Haring" + } + }, + { + "id": 6716, + "name": "Nieves Foreman", + "gender": "male", + "age": 64, + "address": { + "state": "North Dakota", + "city": "Aguila" + } + }, + { + "id": 6717, + "name": "Le Langley", + "gender": "male", + "age": 71, + "address": { + "state": "Rhode Island", + "city": "Cuylerville" + } + }, + { + "id": 6718, + "name": "Valdez Hurst", + "gender": "male", + "age": 33, + "address": { + "state": "California", + "city": "Hayes" + } + }, + { + "id": 6719, + "name": "Clarice Figueroa", + "gender": "female", + "age": 48, + "address": { + "state": "Kentucky", + "city": "Springhill" + } + }, + { + "id": 6720, + "name": "Lydia Patton", + "gender": "female", + "age": 71, + "address": { + "state": "New Jersey", + "city": "Alafaya" + } + }, + { + "id": 6721, + "name": "Weeks Lucas", + "gender": "male", + "age": 49, + "address": { + "state": "Alabama", + "city": "Haena" + } + }, + { + "id": 6722, + "name": "Little Glover", + "gender": "male", + "age": 17, + "address": { + "state": "Kansas", + "city": "Advance" + } + }, + { + "id": 6723, + "name": "Yvette Mcdonald", + "gender": "female", + "age": 34, + "address": { + "state": "Colorado", + "city": "Carrizo" + } + }, + { + "id": 6724, + "name": "Osborn Giles", + "gender": "male", + "age": 67, + "address": { + "state": "Oregon", + "city": "Nanafalia" + } + }, + { + "id": 6725, + "name": "Deidre Kelly", + "gender": "female", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Fivepointville" + } + }, + { + "id": 6726, + "name": "Bullock Petty", + "gender": "male", + "age": 43, + "address": { + "state": "Indiana", + "city": "Camptown" + } + }, + { + "id": 6727, + "name": "Abbott Kaufman", + "gender": "male", + "age": 44, + "address": { + "state": "Mississippi", + "city": "Bynum" + } + }, + { + "id": 6728, + "name": "Wilder Collier", + "gender": "male", + "age": 21, + "address": { + "state": "Michigan", + "city": "Ferney" + } + }, + { + "id": 6729, + "name": "Gwendolyn Holden", + "gender": "female", + "age": 43, + "address": { + "state": "Wyoming", + "city": "Winfred" + } + }, + { + "id": 6730, + "name": "Rhonda Mayer", + "gender": "female", + "age": 21, + "address": { + "state": "Delaware", + "city": "Vicksburg" + } + }, + { + "id": 6731, + "name": "Imelda Aguirre", + "gender": "female", + "age": 78, + "address": { + "state": "Virginia", + "city": "Rosine" + } + }, + { + "id": 6732, + "name": "Stacie Winters", + "gender": "female", + "age": 76, + "address": { + "state": "Vermont", + "city": "Alfarata" + } + }, + { + "id": 6733, + "name": "Talley Carney", + "gender": "male", + "age": 68, + "address": { + "state": "Illinois", + "city": "Deputy" + } + }, + { + "id": 6734, + "name": "Conrad Richmond", + "gender": "male", + "age": 30, + "address": { + "state": "Nevada", + "city": "Cannondale" + } + }, + { + "id": 6735, + "name": "Jimenez Fletcher", + "gender": "male", + "age": 25, + "address": { + "state": "Idaho", + "city": "Nutrioso" + } + }, + { + "id": 6736, + "name": "Lottie Hartman", + "gender": "female", + "age": 27, + "address": { + "state": "Connecticut", + "city": "Foxworth" + } + }, + { + "id": 6737, + "name": "Shannon Maldonado", + "gender": "male", + "age": 34, + "address": { + "state": "New Mexico", + "city": "Cashtown" + } + }, + { + "id": 6738, + "name": "Lloyd Goodman", + "gender": "male", + "age": 27, + "address": { + "state": "Florida", + "city": "Cucumber" + } + }, + { + "id": 6739, + "name": "Marshall Gay", + "gender": "male", + "age": 63, + "address": { + "state": "Pennsylvania", + "city": "Loomis" + } + }, + { + "id": 6740, + "name": "Nichols Chen", + "gender": "male", + "age": 40, + "address": { + "state": "Maryland", + "city": "Eastvale" + } + }, + { + "id": 6741, + "name": "Mooney Walters", + "gender": "male", + "age": 59, + "address": { + "state": "Alaska", + "city": "Dixonville" + } + }, + { + "id": 6742, + "name": "Irma Foley", + "gender": "female", + "age": 47, + "address": { + "state": "Utah", + "city": "Gardiner" + } + }, + { + "id": 6743, + "name": "Alicia Burns", + "gender": "female", + "age": 42, + "address": { + "state": "South Dakota", + "city": "Gilmore" + } + }, + { + "id": 6744, + "name": "Emilia Beard", + "gender": "female", + "age": 73, + "address": { + "state": "Texas", + "city": "Coultervillle" + } + }, + { + "id": 6745, + "name": "Hahn Sloan", + "gender": "male", + "age": 72, + "address": { + "state": "Ohio", + "city": "Richford" + } + }, + { + "id": 6746, + "name": "Candy Rasmussen", + "gender": "female", + "age": 34, + "address": { + "state": "North Carolina", + "city": "Glendale" + } + }, + { + "id": 6747, + "name": "Neva Mullins", + "gender": "female", + "age": 31, + "address": { + "state": "South Carolina", + "city": "Ronco" + } + }, + { + "id": 6748, + "name": "Diann Justice", + "gender": "female", + "age": 36, + "address": { + "state": "Massachusetts", + "city": "Stouchsburg" + } + }, + { + "id": 6749, + "name": "Casey Stephenson", + "gender": "male", + "age": 57, + "address": { + "state": "New York", + "city": "Gila" + } + }, + { + "id": 6750, + "name": "Laurel Wade", + "gender": "female", + "age": 82, + "address": { + "state": "Arizona", + "city": "Chapin" + } + }, + { + "id": 6751, + "name": "Dominguez Hinton", + "gender": "male", + "age": 39, + "address": { + "state": "Arkansas", + "city": "Vallonia" + } + }, + { + "id": 6752, + "name": "Meghan Browning", + "gender": "female", + "age": 61, + "address": { + "state": "Wisconsin", + "city": "Homestead" + } + }, + { + "id": 6753, + "name": "Walters Clark", + "gender": "male", + "age": 30, + "address": { + "state": "Maine", + "city": "Beechmont" + } + }, + { + "id": 6754, + "name": "Bradley Prince", + "gender": "male", + "age": 64, + "address": { + "state": "Montana", + "city": "Chilton" + } + }, + { + "id": 6755, + "name": "Franco Dudley", + "gender": "male", + "age": 45, + "address": { + "state": "Nebraska", + "city": "Bourg" + } + }, + { + "id": 6756, + "name": "Elma Drake", + "gender": "female", + "age": 77, + "address": { + "state": "Minnesota", + "city": "Alden" + } + }, + { + "id": 6757, + "name": "Tucker Guerrero", + "gender": "male", + "age": 81, + "address": { + "state": "Oklahoma", + "city": "Malo" + } + }, + { + "id": 6758, + "name": "Sandy Griffith", + "gender": "female", + "age": 43, + "address": { + "state": "Louisiana", + "city": "Trinway" + } + }, + { + "id": 6759, + "name": "Helena Nicholson", + "gender": "female", + "age": 38, + "address": { + "state": "Georgia", + "city": "Greensburg" + } + }, + { + "id": 6760, + "name": "Henry Peterson", + "gender": "male", + "age": 52, + "address": { + "state": "Tennessee", + "city": "Ebro" + } + }, + { + "id": 6761, + "name": "Mercer Sawyer", + "gender": "male", + "age": 37, + "address": { + "state": "New Hampshire", + "city": "Soudan" + } + }, + { + "id": 6762, + "name": "Briggs Knox", + "gender": "male", + "age": 19, + "address": { + "state": "Washington", + "city": "Hall" + } + }, + { + "id": 6763, + "name": "Jordan Yates", + "gender": "male", + "age": 45, + "address": { + "state": "Indiana", + "city": "Rote" + } + }, + { + "id": 6764, + "name": "Tanisha Page", + "gender": "female", + "age": 70, + "address": { + "state": "California", + "city": "Vienna" + } + }, + { + "id": 6765, + "name": "Deana Norris", + "gender": "female", + "age": 82, + "address": { + "state": "Texas", + "city": "Skyland" + } + }, + { + "id": 6766, + "name": "Dianna Hyde", + "gender": "female", + "age": 45, + "address": { + "state": "Minnesota", + "city": "Graniteville" + } + }, + { + "id": 6767, + "name": "Lola Morse", + "gender": "female", + "age": 49, + "address": { + "state": "Virginia", + "city": "Wilmington" + } + }, + { + "id": 6768, + "name": "Caldwell Garner", + "gender": "male", + "age": 51, + "address": { + "state": "New Jersey", + "city": "Alleghenyville" + } + }, + { + "id": 6769, + "name": "Jacklyn Knapp", + "gender": "female", + "age": 27, + "address": { + "state": "New York", + "city": "Croom" + } + }, + { + "id": 6770, + "name": "York Guzman", + "gender": "male", + "age": 40, + "address": { + "state": "Iowa", + "city": "Temperanceville" + } + }, + { + "id": 6771, + "name": "Jeannette Padilla", + "gender": "female", + "age": 73, + "address": { + "state": "Arizona", + "city": "Masthope" + } + }, + { + "id": 6772, + "name": "Liza Singleton", + "gender": "female", + "age": 79, + "address": { + "state": "Utah", + "city": "Silkworth" + } + }, + { + "id": 6773, + "name": "Herman Riley", + "gender": "male", + "age": 42, + "address": { + "state": "New Mexico", + "city": "Lloyd" + } + }, + { + "id": 6774, + "name": "Reyna Burch", + "gender": "female", + "age": 33, + "address": { + "state": "Rhode Island", + "city": "Lavalette" + } + }, + { + "id": 6775, + "name": "Mona Hart", + "gender": "female", + "age": 28, + "address": { + "state": "North Carolina", + "city": "Newcastle" + } + }, + { + "id": 6776, + "name": "Tracey Ellison", + "gender": "female", + "age": 54, + "address": { + "state": "Tennessee", + "city": "Greenfields" + } + }, + { + "id": 6777, + "name": "Coleman Albert", + "gender": "male", + "age": 45, + "address": { + "state": "Montana", + "city": "Edenburg" + } + }, + { + "id": 6778, + "name": "Clarke Oneil", + "gender": "male", + "age": 74, + "address": { + "state": "Nebraska", + "city": "Lopezo" + } + }, + { + "id": 6779, + "name": "Gillespie Berger", + "gender": "male", + "age": 63, + "address": { + "state": "South Carolina", + "city": "Selma" + } + }, + { + "id": 6780, + "name": "Boyd Cook", + "gender": "male", + "age": 29, + "address": { + "state": "Oklahoma", + "city": "Hartsville/Hartley" + } + }, + { + "id": 6781, + "name": "May Phillips", + "gender": "female", + "age": 81, + "address": { + "state": "Kentucky", + "city": "Lindisfarne" + } + }, + { + "id": 6782, + "name": "Weeks Chase", + "gender": "male", + "age": 29, + "address": { + "state": "Vermont", + "city": "Fontanelle" + } + }, + { + "id": 6783, + "name": "Barrera Spears", + "gender": "male", + "age": 82, + "address": { + "state": "West Virginia", + "city": "Grazierville" + } + }, + { + "id": 6784, + "name": "Hopper Travis", + "gender": "male", + "age": 78, + "address": { + "state": "Colorado", + "city": "Mahtowa" + } + }, + { + "id": 6785, + "name": "Reynolds Stephenson", + "gender": "male", + "age": 50, + "address": { + "state": "Idaho", + "city": "Bagtown" + } + }, + { + "id": 6786, + "name": "Jenifer Brady", + "gender": "female", + "age": 51, + "address": { + "state": "Mississippi", + "city": "Groton" + } + }, + { + "id": 6787, + "name": "Catherine Erickson", + "gender": "female", + "age": 46, + "address": { + "state": "Wyoming", + "city": "Tuttle" + } + }, + { + "id": 6788, + "name": "Margie Golden", + "gender": "female", + "age": 47, + "address": { + "state": "Kansas", + "city": "Springdale" + } + }, + { + "id": 6789, + "name": "Esther Hopkins", + "gender": "female", + "age": 68, + "address": { + "state": "Maine", + "city": "Fruitdale" + } + }, + { + "id": 6790, + "name": "Collins Moreno", + "gender": "male", + "age": 29, + "address": { + "state": "Michigan", + "city": "Eggertsville" + } + }, + { + "id": 6791, + "name": "Claudia Glass", + "gender": "female", + "age": 72, + "address": { + "state": "Alabama", + "city": "Brecon" + } + }, + { + "id": 6792, + "name": "Jennifer Vega", + "gender": "female", + "age": 21, + "address": { + "state": "Wisconsin", + "city": "Rivereno" + } + }, + { + "id": 6793, + "name": "Koch Leon", + "gender": "male", + "age": 79, + "address": { + "state": "Alaska", + "city": "Grandview" + } + }, + { + "id": 6794, + "name": "Jane Hubbard", + "gender": "female", + "age": 60, + "address": { + "state": "Nevada", + "city": "Riverton" + } + }, + { + "id": 6795, + "name": "Paula Gregory", + "gender": "female", + "age": 32, + "address": { + "state": "South Dakota", + "city": "Teasdale" + } + }, + { + "id": 6796, + "name": "Sarah Burris", + "gender": "female", + "age": 35, + "address": { + "state": "Illinois", + "city": "Terlingua" + } + }, + { + "id": 6797, + "name": "Livingston Anthony", + "gender": "male", + "age": 36, + "address": { + "state": "Pennsylvania", + "city": "Tilleda" + } + }, + { + "id": 6798, + "name": "Santana Tran", + "gender": "male", + "age": 80, + "address": { + "state": "Louisiana", + "city": "Carlos" + } + }, + { + "id": 6799, + "name": "Celina Kane", + "gender": "female", + "age": 73, + "address": { + "state": "Delaware", + "city": "Ruffin" + } + }, + { + "id": 6800, + "name": "Wilkinson Neal", + "gender": "male", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Waiohinu" + } + }, + { + "id": 6801, + "name": "Rhoda Donovan", + "gender": "female", + "age": 71, + "address": { + "state": "North Dakota", + "city": "Germanton" + } + }, + { + "id": 6802, + "name": "Lavonne Avery", + "gender": "female", + "age": 25, + "address": { + "state": "New Hampshire", + "city": "Glasgow" + } + }, + { + "id": 6803, + "name": "Dominguez Morgan", + "gender": "male", + "age": 19, + "address": { + "state": "Missouri", + "city": "Emory" + } + }, + { + "id": 6804, + "name": "Stafford Mckenzie", + "gender": "male", + "age": 19, + "address": { + "state": "Oregon", + "city": "Hoagland" + } + }, + { + "id": 6805, + "name": "Ora Klein", + "gender": "female", + "age": 50, + "address": { + "state": "Maryland", + "city": "Williamson" + } + }, + { + "id": 6806, + "name": "Elliott Tyler", + "gender": "male", + "age": 25, + "address": { + "state": "Massachusetts", + "city": "Forestburg" + } + }, + { + "id": 6807, + "name": "Earline Velez", + "gender": "female", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Laurelton" + } + }, + { + "id": 6808, + "name": "Brigitte Parsons", + "gender": "female", + "age": 52, + "address": { + "state": "Georgia", + "city": "Fresno" + } + }, + { + "id": 6809, + "name": "Miles Graham", + "gender": "male", + "age": 73, + "address": { + "state": "Arkansas", + "city": "Avalon" + } + }, + { + "id": 6810, + "name": "Maryellen Mendoza", + "gender": "female", + "age": 27, + "address": { + "state": "Florida", + "city": "Savannah" + } + }, + { + "id": 6811, + "name": "Ericka Chan", + "gender": "female", + "age": 60, + "address": { + "state": "Florida", + "city": "Frierson" + } + }, + { + "id": 6812, + "name": "Luna Daugherty", + "gender": "male", + "age": 57, + "address": { + "state": "North Carolina", + "city": "Kanauga" + } + }, + { + "id": 6813, + "name": "Lynn Greer", + "gender": "male", + "age": 70, + "address": { + "state": "Utah", + "city": "Watrous" + } + }, + { + "id": 6814, + "name": "Francine Mccarty", + "gender": "female", + "age": 62, + "address": { + "state": "Alaska", + "city": "Virgie" + } + }, + { + "id": 6815, + "name": "Meghan Gonzales", + "gender": "female", + "age": 30, + "address": { + "state": "Montana", + "city": "Foxworth" + } + }, + { + "id": 6816, + "name": "Ross Roy", + "gender": "male", + "age": 64, + "address": { + "state": "California", + "city": "Winesburg" + } + }, + { + "id": 6817, + "name": "Hart Gamble", + "gender": "male", + "age": 22, + "address": { + "state": "Ohio", + "city": "Bloomington" + } + }, + { + "id": 6818, + "name": "Riggs Lynch", + "gender": "male", + "age": 42, + "address": { + "state": "Wyoming", + "city": "Williston" + } + }, + { + "id": 6819, + "name": "Lana Bridges", + "gender": "female", + "age": 67, + "address": { + "state": "Colorado", + "city": "Weedville" + } + }, + { + "id": 6820, + "name": "Sullivan Gibson", + "gender": "male", + "age": 40, + "address": { + "state": "Michigan", + "city": "Lowgap" + } + }, + { + "id": 6821, + "name": "Christine Carter", + "gender": "female", + "age": 53, + "address": { + "state": "Alabama", + "city": "Baden" + } + }, + { + "id": 6822, + "name": "Johns Sargent", + "gender": "male", + "age": 32, + "address": { + "state": "Tennessee", + "city": "Roulette" + } + }, + { + "id": 6823, + "name": "Villarreal Simmons", + "gender": "male", + "age": 26, + "address": { + "state": "Vermont", + "city": "Tolu" + } + }, + { + "id": 6824, + "name": "Margie Giles", + "gender": "female", + "age": 76, + "address": { + "state": "New Jersey", + "city": "Emerald" + } + }, + { + "id": 6825, + "name": "Mitchell Bartlett", + "gender": "male", + "age": 68, + "address": { + "state": "Virginia", + "city": "Wakulla" + } + }, + { + "id": 6826, + "name": "Krista Wiley", + "gender": "female", + "age": 31, + "address": { + "state": "Massachusetts", + "city": "Kersey" + } + }, + { + "id": 6827, + "name": "Lucile Jones", + "gender": "female", + "age": 38, + "address": { + "state": "South Carolina", + "city": "Fedora" + } + }, + { + "id": 6828, + "name": "Bishop Hensley", + "gender": "male", + "age": 46, + "address": { + "state": "Illinois", + "city": "Orovada" + } + }, + { + "id": 6829, + "name": "Cherry Joyce", + "gender": "female", + "age": 54, + "address": { + "state": "Indiana", + "city": "Tonopah" + } + }, + { + "id": 6830, + "name": "Tisha Glenn", + "gender": "female", + "age": 76, + "address": { + "state": "Louisiana", + "city": "Downsville" + } + }, + { + "id": 6831, + "name": "Annette Church", + "gender": "female", + "age": 39, + "address": { + "state": "Arkansas", + "city": "Sexton" + } + }, + { + "id": 6832, + "name": "Laura Frederick", + "gender": "female", + "age": 81, + "address": { + "state": "Connecticut", + "city": "Marne" + } + }, + { + "id": 6833, + "name": "Lester Wyatt", + "gender": "male", + "age": 22, + "address": { + "state": "Delaware", + "city": "Waterloo" + } + }, + { + "id": 6834, + "name": "Maddox Padilla", + "gender": "male", + "age": 28, + "address": { + "state": "Nevada", + "city": "Valle" + } + }, + { + "id": 6835, + "name": "Ester Simpson", + "gender": "female", + "age": 35, + "address": { + "state": "Maryland", + "city": "Harborton" + } + }, + { + "id": 6836, + "name": "Julianne Mays", + "gender": "female", + "age": 54, + "address": { + "state": "Oregon", + "city": "Tuttle" + } + }, + { + "id": 6837, + "name": "Beck Pacheco", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Rivereno" + } + }, + { + "id": 6838, + "name": "Vonda Solomon", + "gender": "female", + "age": 37, + "address": { + "state": "New Hampshire", + "city": "Taycheedah" + } + }, + { + "id": 6839, + "name": "Charmaine Pickett", + "gender": "female", + "age": 32, + "address": { + "state": "Mississippi", + "city": "Grazierville" + } + }, + { + "id": 6840, + "name": "Cox Holman", + "gender": "male", + "age": 19, + "address": { + "state": "Kansas", + "city": "Manila" + } + }, + { + "id": 6841, + "name": "Walker Buckner", + "gender": "male", + "age": 27, + "address": { + "state": "Hawaii", + "city": "Alafaya" + } + }, + { + "id": 6842, + "name": "Freda Ochoa", + "gender": "female", + "age": 62, + "address": { + "state": "Maine", + "city": "Coaldale" + } + }, + { + "id": 6843, + "name": "Kent Waller", + "gender": "male", + "age": 17, + "address": { + "state": "Rhode Island", + "city": "Craig" + } + }, + { + "id": 6844, + "name": "Snider Schultz", + "gender": "male", + "age": 68, + "address": { + "state": "Oklahoma", + "city": "Bainbridge" + } + }, + { + "id": 6845, + "name": "Megan Erickson", + "gender": "female", + "age": 67, + "address": { + "state": "South Dakota", + "city": "Como" + } + }, + { + "id": 6846, + "name": "Spence Tucker", + "gender": "male", + "age": 27, + "address": { + "state": "Texas", + "city": "Trail" + } + }, + { + "id": 6847, + "name": "Ora Cline", + "gender": "female", + "age": 67, + "address": { + "state": "North Dakota", + "city": "Kenmar" + } + }, + { + "id": 6848, + "name": "Crosby Rodgers", + "gender": "male", + "age": 40, + "address": { + "state": "Iowa", + "city": "Elbert" + } + }, + { + "id": 6849, + "name": "Ramos Quinn", + "gender": "male", + "age": 26, + "address": { + "state": "Idaho", + "city": "Cataract" + } + }, + { + "id": 6850, + "name": "Stuart Kelley", + "gender": "male", + "age": 51, + "address": { + "state": "Georgia", + "city": "Jugtown" + } + }, + { + "id": 6851, + "name": "Dolores Faulkner", + "gender": "female", + "age": 20, + "address": { + "state": "Kentucky", + "city": "Barclay" + } + }, + { + "id": 6852, + "name": "Latisha Fletcher", + "gender": "female", + "age": 44, + "address": { + "state": "Missouri", + "city": "Ripley" + } + }, + { + "id": 6853, + "name": "Betsy Vaughan", + "gender": "female", + "age": 33, + "address": { + "state": "Nebraska", + "city": "Iberia" + } + }, + { + "id": 6854, + "name": "Strickland Ramsey", + "gender": "male", + "age": 26, + "address": { + "state": "New York", + "city": "Ezel" + } + }, + { + "id": 6855, + "name": "Gabrielle Mayer", + "gender": "female", + "age": 42, + "address": { + "state": "West Virginia", + "city": "Dorneyville" + } + }, + { + "id": 6856, + "name": "Valdez Decker", + "gender": "male", + "age": 73, + "address": { + "state": "New Mexico", + "city": "Blanco" + } + }, + { + "id": 6857, + "name": "Henry Barlow", + "gender": "male", + "age": 19, + "address": { + "state": "Arizona", + "city": "Rockingham" + } + }, + { + "id": 6858, + "name": "Rodriguez Short", + "gender": "male", + "age": 31, + "address": { + "state": "Minnesota", + "city": "Malott" + } + }, + { + "id": 6859, + "name": "Tabitha Campbell", + "gender": "female", + "age": 29, + "address": { + "state": "Washington", + "city": "Walker" + } + }, + { + "id": 6860, + "name": "Tania Burke", + "gender": "female", + "age": 20, + "address": { + "state": "Kentucky", + "city": "Macdona" + } + }, + { + "id": 6861, + "name": "Silva Lang", + "gender": "male", + "age": 59, + "address": { + "state": "Tennessee", + "city": "Bladensburg" + } + }, + { + "id": 6862, + "name": "Walls Knox", + "gender": "male", + "age": 72, + "address": { + "state": "Illinois", + "city": "Inkerman" + } + }, + { + "id": 6863, + "name": "Leblanc Daniel", + "gender": "male", + "age": 62, + "address": { + "state": "Washington", + "city": "Tampico" + } + }, + { + "id": 6864, + "name": "Earnestine Fletcher", + "gender": "female", + "age": 76, + "address": { + "state": "Nevada", + "city": "Newcastle" + } + }, + { + "id": 6865, + "name": "Henderson Warren", + "gender": "male", + "age": 62, + "address": { + "state": "New Jersey", + "city": "Eastmont" + } + }, + { + "id": 6866, + "name": "Andrea Wiley", + "gender": "female", + "age": 42, + "address": { + "state": "Alabama", + "city": "Roy" + } + }, + { + "id": 6867, + "name": "Bentley Houston", + "gender": "male", + "age": 38, + "address": { + "state": "Florida", + "city": "Hasty" + } + }, + { + "id": 6868, + "name": "Charlotte Warner", + "gender": "female", + "age": 49, + "address": { + "state": "Maryland", + "city": "Interlochen" + } + }, + { + "id": 6869, + "name": "Huff Gregory", + "gender": "male", + "age": 53, + "address": { + "state": "Ohio", + "city": "Stonybrook" + } + }, + { + "id": 6870, + "name": "Carter May", + "gender": "male", + "age": 21, + "address": { + "state": "Hawaii", + "city": "Bethany" + } + }, + { + "id": 6871, + "name": "Regina Valencia", + "gender": "female", + "age": 76, + "address": { + "state": "Nebraska", + "city": "Lund" + } + }, + { + "id": 6872, + "name": "Maricela Casey", + "gender": "female", + "age": 43, + "address": { + "state": "Iowa", + "city": "Moraida" + } + }, + { + "id": 6873, + "name": "Todd Rice", + "gender": "male", + "age": 22, + "address": { + "state": "Kansas", + "city": "Stouchsburg" + } + }, + { + "id": 6874, + "name": "Collins Acevedo", + "gender": "male", + "age": 71, + "address": { + "state": "Delaware", + "city": "Dubois" + } + }, + { + "id": 6875, + "name": "Conrad Stephenson", + "gender": "male", + "age": 24, + "address": { + "state": "Mississippi", + "city": "Chemung" + } + }, + { + "id": 6876, + "name": "Fitzpatrick Gibson", + "gender": "male", + "age": 80, + "address": { + "state": "Idaho", + "city": "Slovan" + } + }, + { + "id": 6877, + "name": "Saundra Murray", + "gender": "female", + "age": 58, + "address": { + "state": "Maine", + "city": "Hebron" + } + }, + { + "id": 6878, + "name": "Lorrie Howell", + "gender": "female", + "age": 40, + "address": { + "state": "Indiana", + "city": "Stevens" + } + }, + { + "id": 6879, + "name": "Blake Thornton", + "gender": "male", + "age": 59, + "address": { + "state": "Massachusetts", + "city": "Efland" + } + }, + { + "id": 6880, + "name": "Milagros Burt", + "gender": "female", + "age": 30, + "address": { + "state": "Rhode Island", + "city": "Cliff" + } + }, + { + "id": 6881, + "name": "Watson Robbins", + "gender": "male", + "age": 33, + "address": { + "state": "Vermont", + "city": "Mayfair" + } + }, + { + "id": 6882, + "name": "Lamb Hayden", + "gender": "male", + "age": 29, + "address": { + "state": "Missouri", + "city": "Osage" + } + }, + { + "id": 6883, + "name": "Carla Stout", + "gender": "female", + "age": 56, + "address": { + "state": "North Carolina", + "city": "Sparkill" + } + }, + { + "id": 6884, + "name": "Ruth Neal", + "gender": "female", + "age": 79, + "address": { + "state": "Oregon", + "city": "Robinette" + } + }, + { + "id": 6885, + "name": "Angelina Flowers", + "gender": "female", + "age": 44, + "address": { + "state": "Colorado", + "city": "Bodega" + } + }, + { + "id": 6886, + "name": "Boyd Lowery", + "gender": "male", + "age": 44, + "address": { + "state": "Utah", + "city": "Reinerton" + } + }, + { + "id": 6887, + "name": "Stout Hensley", + "gender": "male", + "age": 31, + "address": { + "state": "North Dakota", + "city": "Gracey" + } + }, + { + "id": 6888, + "name": "Murphy Oneill", + "gender": "male", + "age": 73, + "address": { + "state": "South Carolina", + "city": "Gardners" + } + }, + { + "id": 6889, + "name": "May Richard", + "gender": "female", + "age": 62, + "address": { + "state": "Wisconsin", + "city": "Iberia" + } + }, + { + "id": 6890, + "name": "Marina Compton", + "gender": "female", + "age": 74, + "address": { + "state": "Wyoming", + "city": "Duryea" + } + }, + { + "id": 6891, + "name": "Lawanda Decker", + "gender": "female", + "age": 48, + "address": { + "state": "Connecticut", + "city": "Elliott" + } + }, + { + "id": 6892, + "name": "Velma Stevens", + "gender": "female", + "age": 36, + "address": { + "state": "Minnesota", + "city": "Comptche" + } + }, + { + "id": 6893, + "name": "Arnold Rojas", + "gender": "male", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Utting" + } + }, + { + "id": 6894, + "name": "Barrett Frost", + "gender": "male", + "age": 58, + "address": { + "state": "Texas", + "city": "Gambrills" + } + }, + { + "id": 6895, + "name": "Hughes Cotton", + "gender": "male", + "age": 81, + "address": { + "state": "Michigan", + "city": "Oceola" + } + }, + { + "id": 6896, + "name": "Nichole Prince", + "gender": "female", + "age": 28, + "address": { + "state": "New Hampshire", + "city": "Lynn" + } + }, + { + "id": 6897, + "name": "Deleon Rivers", + "gender": "male", + "age": 38, + "address": { + "state": "Alaska", + "city": "Chilton" + } + }, + { + "id": 6898, + "name": "Jennie Richardson", + "gender": "female", + "age": 73, + "address": { + "state": "Louisiana", + "city": "Accoville" + } + }, + { + "id": 6899, + "name": "Edna Holloway", + "gender": "female", + "age": 67, + "address": { + "state": "Virginia", + "city": "Wollochet" + } + }, + { + "id": 6900, + "name": "Jannie Mcdaniel", + "gender": "female", + "age": 77, + "address": { + "state": "Oklahoma", + "city": "Thermal" + } + }, + { + "id": 6901, + "name": "Renee Barrera", + "gender": "female", + "age": 67, + "address": { + "state": "West Virginia", + "city": "Maplewood" + } + }, + { + "id": 6902, + "name": "Dorsey Hurst", + "gender": "male", + "age": 33, + "address": { + "state": "Montana", + "city": "Lithium" + } + }, + { + "id": 6903, + "name": "Karen Shelton", + "gender": "female", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Murillo" + } + }, + { + "id": 6904, + "name": "Teri Baker", + "gender": "female", + "age": 71, + "address": { + "state": "Pennsylvania", + "city": "Kenmar" + } + }, + { + "id": 6905, + "name": "Penelope Cole", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Westmoreland" + } + }, + { + "id": 6906, + "name": "Shields Weeks", + "gender": "male", + "age": 74, + "address": { + "state": "New York", + "city": "Strong" + } + }, + { + "id": 6907, + "name": "Mathews Schwartz", + "gender": "male", + "age": 25, + "address": { + "state": "California", + "city": "Greer" + } + }, + { + "id": 6908, + "name": "Pruitt Ashley", + "gender": "male", + "age": 34, + "address": { + "state": "Arizona", + "city": "Kenvil" + } + }, + { + "id": 6909, + "name": "Adrienne Bradshaw", + "gender": "female", + "age": 29, + "address": { + "state": "Mississippi", + "city": "Comptche" + } + }, + { + "id": 6910, + "name": "Kerry Melton", + "gender": "female", + "age": 56, + "address": { + "state": "Minnesota", + "city": "Rivera" + } + }, + { + "id": 6911, + "name": "Matthews Wooten", + "gender": "male", + "age": 22, + "address": { + "state": "Kentucky", + "city": "Valmy" + } + }, + { + "id": 6912, + "name": "Laverne Howe", + "gender": "female", + "age": 60, + "address": { + "state": "Massachusetts", + "city": "Singer" + } + }, + { + "id": 6913, + "name": "Aisha Castillo", + "gender": "female", + "age": 17, + "address": { + "state": "Michigan", + "city": "Troy" + } + }, + { + "id": 6914, + "name": "Alexis Huber", + "gender": "female", + "age": 62, + "address": { + "state": "Missouri", + "city": "Newry" + } + }, + { + "id": 6915, + "name": "Bernadine Woodward", + "gender": "female", + "age": 49, + "address": { + "state": "Wyoming", + "city": "Stewartville" + } + }, + { + "id": 6916, + "name": "Terrie Owen", + "gender": "female", + "age": 39, + "address": { + "state": "Georgia", + "city": "Ivanhoe" + } + }, + { + "id": 6917, + "name": "Daniel Sanford", + "gender": "male", + "age": 65, + "address": { + "state": "Colorado", + "city": "Kingstowne" + } + }, + { + "id": 6918, + "name": "Bethany Terrell", + "gender": "female", + "age": 81, + "address": { + "state": "Idaho", + "city": "Carrsville" + } + }, + { + "id": 6919, + "name": "Constance Higgins", + "gender": "female", + "age": 36, + "address": { + "state": "Montana", + "city": "Bartonsville" + } + }, + { + "id": 6920, + "name": "Corinne Hood", + "gender": "female", + "age": 48, + "address": { + "state": "Kansas", + "city": "Hebron" + } + }, + { + "id": 6921, + "name": "Margarita Ballard", + "gender": "female", + "age": 19, + "address": { + "state": "Nebraska", + "city": "Buxton" + } + }, + { + "id": 6922, + "name": "Neva Bradshaw", + "gender": "female", + "age": 48, + "address": { + "state": "Vermont", + "city": "Jacksonburg" + } + }, + { + "id": 6923, + "name": "Betty Morrow", + "gender": "female", + "age": 63, + "address": { + "state": "Nevada", + "city": "Juntura" + } + }, + { + "id": 6924, + "name": "Goodman Dyer", + "gender": "male", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Kenvil" + } + }, + { + "id": 6925, + "name": "Patrick Woodard", + "gender": "male", + "age": 78, + "address": { + "state": "California", + "city": "Sterling" + } + }, + { + "id": 6926, + "name": "Kaye Cannon", + "gender": "female", + "age": 36, + "address": { + "state": "South Dakota", + "city": "Babb" + } + }, + { + "id": 6927, + "name": "Kidd Mckenzie", + "gender": "male", + "age": 53, + "address": { + "state": "Pennsylvania", + "city": "Brookfield" + } + }, + { + "id": 6928, + "name": "Velma Harvey", + "gender": "female", + "age": 58, + "address": { + "state": "Virginia", + "city": "Edenburg" + } + }, + { + "id": 6929, + "name": "Terri Holloway", + "gender": "female", + "age": 23, + "address": { + "state": "Oklahoma", + "city": "Blairstown" + } + }, + { + "id": 6930, + "name": "Ray Everett", + "gender": "male", + "age": 71, + "address": { + "state": "South Carolina", + "city": "Chical" + } + }, + { + "id": 6931, + "name": "Eve Weaver", + "gender": "female", + "age": 71, + "address": { + "state": "Hawaii", + "city": "Curtice" + } + }, + { + "id": 6932, + "name": "Madelyn Justice", + "gender": "female", + "age": 73, + "address": { + "state": "Illinois", + "city": "Winesburg" + } + }, + { + "id": 6933, + "name": "Aguirre Mathis", + "gender": "male", + "age": 69, + "address": { + "state": "Texas", + "city": "Libertytown" + } + }, + { + "id": 6934, + "name": "Gay Conrad", + "gender": "female", + "age": 42, + "address": { + "state": "Alaska", + "city": "Freelandville" + } + }, + { + "id": 6935, + "name": "Dianna Alston", + "gender": "female", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Coldiron" + } + }, + { + "id": 6936, + "name": "Gilliam Hunt", + "gender": "male", + "age": 50, + "address": { + "state": "Delaware", + "city": "Laurelton" + } + }, + { + "id": 6937, + "name": "Etta Yates", + "gender": "female", + "age": 52, + "address": { + "state": "Alabama", + "city": "Homeworth" + } + }, + { + "id": 6938, + "name": "Terry Leach", + "gender": "female", + "age": 55, + "address": { + "state": "Iowa", + "city": "Strong" + } + }, + { + "id": 6939, + "name": "Kate Simon", + "gender": "female", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Coleville" + } + }, + { + "id": 6940, + "name": "Savage Callahan", + "gender": "male", + "age": 37, + "address": { + "state": "Indiana", + "city": "Templeton" + } + }, + { + "id": 6941, + "name": "Dollie Martin", + "gender": "female", + "age": 23, + "address": { + "state": "Maine", + "city": "Macdona" + } + }, + { + "id": 6942, + "name": "Woods Pruitt", + "gender": "male", + "age": 24, + "address": { + "state": "New Jersey", + "city": "Crucible" + } + }, + { + "id": 6943, + "name": "Frank Garrett", + "gender": "male", + "age": 58, + "address": { + "state": "Rhode Island", + "city": "Forestburg" + } + }, + { + "id": 6944, + "name": "Holman Richardson", + "gender": "male", + "age": 58, + "address": { + "state": "New Hampshire", + "city": "Thatcher" + } + }, + { + "id": 6945, + "name": "Soto Wiley", + "gender": "male", + "age": 57, + "address": { + "state": "Tennessee", + "city": "Vowinckel" + } + }, + { + "id": 6946, + "name": "Chris Rich", + "gender": "female", + "age": 18, + "address": { + "state": "Oregon", + "city": "Eagleville" + } + }, + { + "id": 6947, + "name": "Hodges Morris", + "gender": "male", + "age": 53, + "address": { + "state": "West Virginia", + "city": "Darrtown" + } + }, + { + "id": 6948, + "name": "Ramona Meadows", + "gender": "female", + "age": 29, + "address": { + "state": "Washington", + "city": "Sisquoc" + } + }, + { + "id": 6949, + "name": "Hays Parsons", + "gender": "male", + "age": 25, + "address": { + "state": "Utah", + "city": "Manchester" + } + }, + { + "id": 6950, + "name": "Rosales Giles", + "gender": "male", + "age": 70, + "address": { + "state": "Florida", + "city": "Biddle" + } + }, + { + "id": 6951, + "name": "Jeannette Young", + "gender": "female", + "age": 47, + "address": { + "state": "Ohio", + "city": "Why" + } + }, + { + "id": 6952, + "name": "Manning Mcleod", + "gender": "male", + "age": 27, + "address": { + "state": "Wisconsin", + "city": "Conestoga" + } + }, + { + "id": 6953, + "name": "Bridges Riggs", + "gender": "male", + "age": 71, + "address": { + "state": "Arizona", + "city": "Blanford" + } + }, + { + "id": 6954, + "name": "Clarissa Nelson", + "gender": "female", + "age": 17, + "address": { + "state": "New York", + "city": "Rose" + } + }, + { + "id": 6955, + "name": "May Burnett", + "gender": "male", + "age": 21, + "address": { + "state": "New Mexico", + "city": "Defiance" + } + }, + { + "id": 6956, + "name": "Frances Vazquez", + "gender": "female", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Delshire" + } + }, + { + "id": 6957, + "name": "Holder Flynn", + "gender": "male", + "age": 29, + "address": { + "state": "North Dakota", + "city": "Darlington" + } + }, + { + "id": 6958, + "name": "Norton Guerra", + "gender": "male", + "age": 56, + "address": { + "state": "Missouri", + "city": "Rowe" + } + }, + { + "id": 6959, + "name": "Debora Robles", + "gender": "female", + "age": 22, + "address": { + "state": "Pennsylvania", + "city": "Bellamy" + } + }, + { + "id": 6960, + "name": "Tania Rivas", + "gender": "female", + "age": 67, + "address": { + "state": "Minnesota", + "city": "Elwood" + } + }, + { + "id": 6961, + "name": "Marcella Case", + "gender": "female", + "age": 59, + "address": { + "state": "Ohio", + "city": "Basye" + } + }, + { + "id": 6962, + "name": "Frye Harrison", + "gender": "male", + "age": 53, + "address": { + "state": "South Dakota", + "city": "Chemung" + } + }, + { + "id": 6963, + "name": "Cara Hess", + "gender": "female", + "age": 79, + "address": { + "state": "Mississippi", + "city": "Hiwasse" + } + }, + { + "id": 6964, + "name": "Gloria Mcgee", + "gender": "female", + "age": 80, + "address": { + "state": "Oklahoma", + "city": "Bend" + } + }, + { + "id": 6965, + "name": "Jana Charles", + "gender": "female", + "age": 22, + "address": { + "state": "South Carolina", + "city": "Drytown" + } + }, + { + "id": 6966, + "name": "Lottie Stafford", + "gender": "female", + "age": 55, + "address": { + "state": "Hawaii", + "city": "Fulford" + } + }, + { + "id": 6967, + "name": "Angela Henderson", + "gender": "female", + "age": 26, + "address": { + "state": "North Dakota", + "city": "Durham" + } + }, + { + "id": 6968, + "name": "Stephenson Duncan", + "gender": "male", + "age": 81, + "address": { + "state": "Kansas", + "city": "Cochranville" + } + }, + { + "id": 6969, + "name": "Edith Donovan", + "gender": "female", + "age": 56, + "address": { + "state": "Arkansas", + "city": "Summerset" + } + }, + { + "id": 6970, + "name": "Howard Guy", + "gender": "male", + "age": 19, + "address": { + "state": "Wisconsin", + "city": "Beason" + } + }, + { + "id": 6971, + "name": "Kristine Nixon", + "gender": "female", + "age": 46, + "address": { + "state": "Louisiana", + "city": "Gardners" + } + }, + { + "id": 6972, + "name": "Steele Carson", + "gender": "male", + "age": 67, + "address": { + "state": "Tennessee", + "city": "Maplewood" + } + }, + { + "id": 6973, + "name": "Barbra Woodard", + "gender": "female", + "age": 47, + "address": { + "state": "Florida", + "city": "Whitewater" + } + }, + { + "id": 6974, + "name": "Janelle Odom", + "gender": "female", + "age": 52, + "address": { + "state": "Nevada", + "city": "Day" + } + }, + { + "id": 6975, + "name": "Lakeisha Pierce", + "gender": "female", + "age": 60, + "address": { + "state": "New York", + "city": "Hasty" + } + }, + { + "id": 6976, + "name": "Galloway Chang", + "gender": "male", + "age": 35, + "address": { + "state": "Kentucky", + "city": "Alafaya" + } + }, + { + "id": 6977, + "name": "Viola Berry", + "gender": "female", + "age": 39, + "address": { + "state": "Alabama", + "city": "Allensworth" + } + }, + { + "id": 6978, + "name": "Bean Durham", + "gender": "male", + "age": 22, + "address": { + "state": "Montana", + "city": "Wheatfields" + } + }, + { + "id": 6979, + "name": "Lynnette Martinez", + "gender": "female", + "age": 61, + "address": { + "state": "Virginia", + "city": "Stockwell" + } + }, + { + "id": 6980, + "name": "Holt Miller", + "gender": "male", + "age": 64, + "address": { + "state": "New Mexico", + "city": "Rutherford" + } + }, + { + "id": 6981, + "name": "Woods Jarvis", + "gender": "male", + "age": 38, + "address": { + "state": "North Carolina", + "city": "Lumberton" + } + }, + { + "id": 6982, + "name": "Kristy Bennett", + "gender": "female", + "age": 50, + "address": { + "state": "Alaska", + "city": "Kieler" + } + }, + { + "id": 6983, + "name": "Bowen Calhoun", + "gender": "male", + "age": 37, + "address": { + "state": "Connecticut", + "city": "Craig" + } + }, + { + "id": 6984, + "name": "Klein Prince", + "gender": "male", + "age": 64, + "address": { + "state": "Massachusetts", + "city": "Mulberry" + } + }, + { + "id": 6985, + "name": "Lidia Raymond", + "gender": "female", + "age": 24, + "address": { + "state": "Washington", + "city": "Bendon" + } + }, + { + "id": 6986, + "name": "Rosales Justice", + "gender": "male", + "age": 23, + "address": { + "state": "Maryland", + "city": "Holcombe" + } + }, + { + "id": 6987, + "name": "Schroeder Vazquez", + "gender": "male", + "age": 50, + "address": { + "state": "California", + "city": "Malo" + } + }, + { + "id": 6988, + "name": "Martina Hull", + "gender": "female", + "age": 23, + "address": { + "state": "Idaho", + "city": "Hachita" + } + }, + { + "id": 6989, + "name": "Flynn Berg", + "gender": "male", + "age": 26, + "address": { + "state": "Illinois", + "city": "Cherokee" + } + }, + { + "id": 6990, + "name": "Hollie Noble", + "gender": "female", + "age": 70, + "address": { + "state": "Nebraska", + "city": "Jeff" + } + }, + { + "id": 6991, + "name": "Alejandra Cannon", + "gender": "female", + "age": 57, + "address": { + "state": "Oregon", + "city": "Shrewsbury" + } + }, + { + "id": 6992, + "name": "Maura Holcomb", + "gender": "female", + "age": 48, + "address": { + "state": "Georgia", + "city": "Kerby" + } + }, + { + "id": 6993, + "name": "Patty Christian", + "gender": "female", + "age": 37, + "address": { + "state": "Vermont", + "city": "Oasis" + } + }, + { + "id": 6994, + "name": "Dianna Shelton", + "gender": "female", + "age": 55, + "address": { + "state": "Texas", + "city": "Cecilia" + } + }, + { + "id": 6995, + "name": "Nelson George", + "gender": "male", + "age": 38, + "address": { + "state": "Michigan", + "city": "Soham" + } + }, + { + "id": 6996, + "name": "Lang Lott", + "gender": "male", + "age": 45, + "address": { + "state": "New Hampshire", + "city": "Corinne" + } + }, + { + "id": 6997, + "name": "Boone Romero", + "gender": "male", + "age": 33, + "address": { + "state": "Delaware", + "city": "Homeworth" + } + }, + { + "id": 6998, + "name": "Villarreal Richards", + "gender": "male", + "age": 18, + "address": { + "state": "New Jersey", + "city": "Wacissa" + } + }, + { + "id": 6999, + "name": "Thompson Melendez", + "gender": "male", + "age": 73, + "address": { + "state": "Indiana", + "city": "Canby" + } + }, + { + "id": 7000, + "name": "Fuentes Wilkerson", + "gender": "male", + "age": 49, + "address": { + "state": "Colorado", + "city": "Harold" + } + }, + { + "id": 7001, + "name": "Gomez Hubbard", + "gender": "male", + "age": 47, + "address": { + "state": "Arizona", + "city": "Linganore" + } + }, + { + "id": 7002, + "name": "Alvarez Burch", + "gender": "male", + "age": 63, + "address": { + "state": "Wyoming", + "city": "Virgie" + } + }, + { + "id": 7003, + "name": "Bass Davidson", + "gender": "male", + "age": 31, + "address": { + "state": "Iowa", + "city": "Winfred" + } + }, + { + "id": 7004, + "name": "Geneva Contreras", + "gender": "female", + "age": 41, + "address": { + "state": "Maine", + "city": "Bonanza" + } + }, + { + "id": 7005, + "name": "Aimee Russell", + "gender": "female", + "age": 44, + "address": { + "state": "Utah", + "city": "Richmond" + } + }, + { + "id": 7006, + "name": "Susan Watts", + "gender": "female", + "age": 59, + "address": { + "state": "Rhode Island", + "city": "Unionville" + } + }, + { + "id": 7007, + "name": "Farmer Bradford", + "gender": "male", + "age": 33, + "address": { + "state": "Utah", + "city": "Lutsen" + } + }, + { + "id": 7008, + "name": "Taylor Hawkins", + "gender": "male", + "age": 74, + "address": { + "state": "Texas", + "city": "Riegelwood" + } + }, + { + "id": 7009, + "name": "Watts Frederick", + "gender": "male", + "age": 81, + "address": { + "state": "New York", + "city": "Delco" + } + }, + { + "id": 7010, + "name": "Tina Cantrell", + "gender": "female", + "age": 68, + "address": { + "state": "Michigan", + "city": "Datil" + } + }, + { + "id": 7011, + "name": "Louise Decker", + "gender": "female", + "age": 39, + "address": { + "state": "Wyoming", + "city": "Gwynn" + } + }, + { + "id": 7012, + "name": "Corina Spencer", + "gender": "female", + "age": 26, + "address": { + "state": "Rhode Island", + "city": "Felt" + } + }, + { + "id": 7013, + "name": "Zelma Mcknight", + "gender": "female", + "age": 61, + "address": { + "state": "Ohio", + "city": "Mayfair" + } + }, + { + "id": 7014, + "name": "Lucile Clark", + "gender": "female", + "age": 63, + "address": { + "state": "North Dakota", + "city": "Oceola" + } + }, + { + "id": 7015, + "name": "Sheri Dunn", + "gender": "female", + "age": 60, + "address": { + "state": "Vermont", + "city": "Loma" + } + }, + { + "id": 7016, + "name": "York Zimmerman", + "gender": "male", + "age": 35, + "address": { + "state": "California", + "city": "Herlong" + } + }, + { + "id": 7017, + "name": "Berry Lott", + "gender": "male", + "age": 71, + "address": { + "state": "Kentucky", + "city": "Cherokee" + } + }, + { + "id": 7018, + "name": "Kim Atkins", + "gender": "male", + "age": 41, + "address": { + "state": "West Virginia", + "city": "Hasty" + } + }, + { + "id": 7019, + "name": "Toni Young", + "gender": "female", + "age": 29, + "address": { + "state": "South Dakota", + "city": "Dorneyville" + } + }, + { + "id": 7020, + "name": "Robles Simpson", + "gender": "male", + "age": 53, + "address": { + "state": "Wisconsin", + "city": "Glenbrook" + } + }, + { + "id": 7021, + "name": "Mallory Francis", + "gender": "female", + "age": 32, + "address": { + "state": "Montana", + "city": "Robinette" + } + }, + { + "id": 7022, + "name": "Miranda Jennings", + "gender": "male", + "age": 80, + "address": { + "state": "Massachusetts", + "city": "Hickory" + } + }, + { + "id": 7023, + "name": "Diaz Rollins", + "gender": "male", + "age": 17, + "address": { + "state": "Florida", + "city": "Disautel" + } + }, + { + "id": 7024, + "name": "Hardy Lamb", + "gender": "male", + "age": 53, + "address": { + "state": "Tennessee", + "city": "Fidelis" + } + }, + { + "id": 7025, + "name": "Lamb Gibbs", + "gender": "male", + "age": 18, + "address": { + "state": "Iowa", + "city": "Dexter" + } + }, + { + "id": 7026, + "name": "Bonnie Leonard", + "gender": "female", + "age": 34, + "address": { + "state": "New Jersey", + "city": "Moraida" + } + }, + { + "id": 7027, + "name": "Janelle Dalton", + "gender": "female", + "age": 55, + "address": { + "state": "South Carolina", + "city": "Hayden" + } + }, + { + "id": 7028, + "name": "Bryan Workman", + "gender": "male", + "age": 43, + "address": { + "state": "Colorado", + "city": "Cade" + } + }, + { + "id": 7029, + "name": "Glenn Carrillo", + "gender": "male", + "age": 25, + "address": { + "state": "Maine", + "city": "Bridgetown" + } + }, + { + "id": 7030, + "name": "Greta Cash", + "gender": "female", + "age": 17, + "address": { + "state": "Kansas", + "city": "Carlos" + } + }, + { + "id": 7031, + "name": "Tabatha Meadows", + "gender": "female", + "age": 20, + "address": { + "state": "Louisiana", + "city": "Vallonia" + } + }, + { + "id": 7032, + "name": "Hays Moran", + "gender": "male", + "age": 34, + "address": { + "state": "Oklahoma", + "city": "Cotopaxi" + } + }, + { + "id": 7033, + "name": "Cantu Graves", + "gender": "male", + "age": 23, + "address": { + "state": "Minnesota", + "city": "Tyhee" + } + }, + { + "id": 7034, + "name": "Lara Mueller", + "gender": "male", + "age": 67, + "address": { + "state": "Georgia", + "city": "Chamberino" + } + }, + { + "id": 7035, + "name": "Lesley Harmon", + "gender": "female", + "age": 53, + "address": { + "state": "Alaska", + "city": "Noblestown" + } + }, + { + "id": 7036, + "name": "Combs Kidd", + "gender": "male", + "age": 80, + "address": { + "state": "New Hampshire", + "city": "Oley" + } + }, + { + "id": 7037, + "name": "Jacqueline Weber", + "gender": "female", + "age": 71, + "address": { + "state": "Hawaii", + "city": "Grazierville" + } + }, + { + "id": 7038, + "name": "Hatfield Davis", + "gender": "male", + "age": 38, + "address": { + "state": "Nebraska", + "city": "Edgar" + } + }, + { + "id": 7039, + "name": "Reyes Lopez", + "gender": "male", + "age": 37, + "address": { + "state": "New Mexico", + "city": "Florence" + } + }, + { + "id": 7040, + "name": "Savannah Rios", + "gender": "female", + "age": 27, + "address": { + "state": "Arizona", + "city": "Gracey" + } + }, + { + "id": 7041, + "name": "Vaughn Webb", + "gender": "male", + "age": 80, + "address": { + "state": "Maryland", + "city": "Flintville" + } + }, + { + "id": 7042, + "name": "Ollie Dominguez", + "gender": "female", + "age": 72, + "address": { + "state": "Missouri", + "city": "Dalton" + } + }, + { + "id": 7043, + "name": "Augusta Hurley", + "gender": "female", + "age": 55, + "address": { + "state": "Mississippi", + "city": "Lumberton" + } + }, + { + "id": 7044, + "name": "Gallagher Russell", + "gender": "male", + "age": 60, + "address": { + "state": "Connecticut", + "city": "Bluffview" + } + }, + { + "id": 7045, + "name": "Gonzalez Baxter", + "gender": "male", + "age": 44, + "address": { + "state": "North Carolina", + "city": "Orason" + } + }, + { + "id": 7046, + "name": "Shannon Odom", + "gender": "male", + "age": 33, + "address": { + "state": "Pennsylvania", + "city": "Convent" + } + }, + { + "id": 7047, + "name": "Ashley Paul", + "gender": "male", + "age": 43, + "address": { + "state": "Arkansas", + "city": "Valle" + } + }, + { + "id": 7048, + "name": "Olson Curry", + "gender": "male", + "age": 19, + "address": { + "state": "Washington", + "city": "Kirk" + } + }, + { + "id": 7049, + "name": "Minerva Benton", + "gender": "female", + "age": 39, + "address": { + "state": "Alabama", + "city": "Moscow" + } + }, + { + "id": 7050, + "name": "Landry Ellis", + "gender": "male", + "age": 70, + "address": { + "state": "Indiana", + "city": "Manitou" + } + }, + { + "id": 7051, + "name": "Gilbert Bush", + "gender": "male", + "age": 73, + "address": { + "state": "Delaware", + "city": "Dahlen" + } + }, + { + "id": 7052, + "name": "Enid Hodges", + "gender": "female", + "age": 17, + "address": { + "state": "Nevada", + "city": "Brandermill" + } + }, + { + "id": 7053, + "name": "Sylvia Harper", + "gender": "female", + "age": 18, + "address": { + "state": "Illinois", + "city": "Alamo" + } + }, + { + "id": 7054, + "name": "Wolfe Branch", + "gender": "male", + "age": 37, + "address": { + "state": "Oregon", + "city": "Keyport" + } + }, + { + "id": 7055, + "name": "Tanner Larsen", + "gender": "male", + "age": 76, + "address": { + "state": "Virginia", + "city": "Barrelville" + } + }, + { + "id": 7056, + "name": "Cervantes Pearson", + "gender": "male", + "age": 38, + "address": { + "state": "Alaska", + "city": "Allison" + } + }, + { + "id": 7057, + "name": "English Morin", + "gender": "male", + "age": 73, + "address": { + "state": "California", + "city": "Sidman" + } + }, + { + "id": 7058, + "name": "Goodwin Roach", + "gender": "male", + "age": 45, + "address": { + "state": "Idaho", + "city": "Camas" + } + }, + { + "id": 7059, + "name": "Diann Pennington", + "gender": "female", + "age": 58, + "address": { + "state": "Kansas", + "city": "Reinerton" + } + }, + { + "id": 7060, + "name": "Eileen Shepherd", + "gender": "female", + "age": 28, + "address": { + "state": "Maryland", + "city": "Matheny" + } + }, + { + "id": 7061, + "name": "Marsha Roberts", + "gender": "female", + "age": 44, + "address": { + "state": "New Jersey", + "city": "Gardners" + } + }, + { + "id": 7062, + "name": "Sheryl Reeves", + "gender": "female", + "age": 47, + "address": { + "state": "Colorado", + "city": "Rivera" + } + }, + { + "id": 7063, + "name": "Katy Brewer", + "gender": "female", + "age": 57, + "address": { + "state": "Arizona", + "city": "Cetronia" + } + }, + { + "id": 7064, + "name": "Gay Armstrong", + "gender": "female", + "age": 59, + "address": { + "state": "Delaware", + "city": "Kilbourne" + } + }, + { + "id": 7065, + "name": "Pierce Schwartz", + "gender": "male", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Roeville" + } + }, + { + "id": 7066, + "name": "Glenna Vasquez", + "gender": "female", + "age": 72, + "address": { + "state": "Florida", + "city": "Chelsea" + } + }, + { + "id": 7067, + "name": "Bethany Bauer", + "gender": "female", + "age": 51, + "address": { + "state": "South Dakota", + "city": "Chase" + } + }, + { + "id": 7068, + "name": "Natasha Kramer", + "gender": "female", + "age": 34, + "address": { + "state": "Wyoming", + "city": "Independence" + } + }, + { + "id": 7069, + "name": "Church Washington", + "gender": "male", + "age": 28, + "address": { + "state": "Minnesota", + "city": "Caspar" + } + }, + { + "id": 7070, + "name": "Pat Bond", + "gender": "female", + "age": 18, + "address": { + "state": "Oregon", + "city": "Chestnut" + } + }, + { + "id": 7071, + "name": "Charlotte Compton", + "gender": "female", + "age": 65, + "address": { + "state": "Missouri", + "city": "Bainbridge" + } + }, + { + "id": 7072, + "name": "Flynn Haley", + "gender": "male", + "age": 47, + "address": { + "state": "Vermont", + "city": "Churchill" + } + }, + { + "id": 7073, + "name": "Audrey Floyd", + "gender": "female", + "age": 55, + "address": { + "state": "Iowa", + "city": "Aurora" + } + }, + { + "id": 7074, + "name": "Wheeler Rivers", + "gender": "male", + "age": 44, + "address": { + "state": "Utah", + "city": "Oceola" + } + }, + { + "id": 7075, + "name": "Jefferson Mercer", + "gender": "male", + "age": 44, + "address": { + "state": "West Virginia", + "city": "Williamson" + } + }, + { + "id": 7076, + "name": "Booth Hurst", + "gender": "male", + "age": 74, + "address": { + "state": "Arkansas", + "city": "Mansfield" + } + }, + { + "id": 7077, + "name": "Yesenia Huber", + "gender": "female", + "age": 49, + "address": { + "state": "Ohio", + "city": "Davenport" + } + }, + { + "id": 7078, + "name": "Acevedo Robbins", + "gender": "male", + "age": 54, + "address": { + "state": "Nebraska", + "city": "Macdona" + } + }, + { + "id": 7079, + "name": "Peggy Forbes", + "gender": "female", + "age": 74, + "address": { + "state": "Maine", + "city": "Fowlerville" + } + }, + { + "id": 7080, + "name": "Millie Cote", + "gender": "female", + "age": 60, + "address": { + "state": "Rhode Island", + "city": "Montura" + } + }, + { + "id": 7081, + "name": "Duke Joseph", + "gender": "male", + "age": 64, + "address": { + "state": "Kentucky", + "city": "Leola" + } + }, + { + "id": 7082, + "name": "Hoover Mullins", + "gender": "male", + "age": 57, + "address": { + "state": "North Carolina", + "city": "Wells" + } + }, + { + "id": 7083, + "name": "Oliver Park", + "gender": "male", + "age": 28, + "address": { + "state": "New York", + "city": "Gerber" + } + }, + { + "id": 7084, + "name": "Snyder Farley", + "gender": "male", + "age": 28, + "address": { + "state": "Pennsylvania", + "city": "Saddlebrooke" + } + }, + { + "id": 7085, + "name": "Clay Walton", + "gender": "male", + "age": 33, + "address": { + "state": "Alabama", + "city": "Ribera" + } + }, + { + "id": 7086, + "name": "Ebony James", + "gender": "female", + "age": 55, + "address": { + "state": "Nevada", + "city": "Wadsworth" + } + }, + { + "id": 7087, + "name": "Rosalind Hanson", + "gender": "female", + "age": 41, + "address": { + "state": "Mississippi", + "city": "Clayville" + } + }, + { + "id": 7088, + "name": "Brenda Wolfe", + "gender": "female", + "age": 77, + "address": { + "state": "Louisiana", + "city": "Allensworth" + } + }, + { + "id": 7089, + "name": "Shawna Chandler", + "gender": "female", + "age": 59, + "address": { + "state": "Oklahoma", + "city": "Felt" + } + }, + { + "id": 7090, + "name": "Graciela Baird", + "gender": "female", + "age": 31, + "address": { + "state": "Montana", + "city": "Movico" + } + }, + { + "id": 7091, + "name": "Stacie Salazar", + "gender": "female", + "age": 41, + "address": { + "state": "Virginia", + "city": "Sperryville" + } + }, + { + "id": 7092, + "name": "Lang Martinez", + "gender": "male", + "age": 34, + "address": { + "state": "Michigan", + "city": "Inkerman" + } + }, + { + "id": 7093, + "name": "Bobbi Mathews", + "gender": "female", + "age": 70, + "address": { + "state": "Tennessee", + "city": "Crenshaw" + } + }, + { + "id": 7094, + "name": "Beverly Vincent", + "gender": "female", + "age": 42, + "address": { + "state": "Georgia", + "city": "Ebro" + } + }, + { + "id": 7095, + "name": "Autumn Petty", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Beechmont" + } + }, + { + "id": 7096, + "name": "Rachelle Spencer", + "gender": "female", + "age": 75, + "address": { + "state": "Indiana", + "city": "Klondike" + } + }, + { + "id": 7097, + "name": "Beatriz Dillon", + "gender": "female", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Mulberry" + } + }, + { + "id": 7098, + "name": "Luella Cantrell", + "gender": "female", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Hessville" + } + }, + { + "id": 7099, + "name": "Ayers Golden", + "gender": "male", + "age": 65, + "address": { + "state": "New Hampshire", + "city": "Mayfair" + } + }, + { + "id": 7100, + "name": "Webb Frederick", + "gender": "male", + "age": 52, + "address": { + "state": "South Carolina", + "city": "Santel" + } + }, + { + "id": 7101, + "name": "Winifred Sweeney", + "gender": "female", + "age": 35, + "address": { + "state": "Washington", + "city": "Barclay" + } + }, + { + "id": 7102, + "name": "Carney Rodriguez", + "gender": "male", + "age": 27, + "address": { + "state": "Wisconsin", + "city": "Singer" + } + }, + { + "id": 7103, + "name": "Cora Hardin", + "gender": "female", + "age": 82, + "address": { + "state": "Texas", + "city": "Linwood" + } + }, + { + "id": 7104, + "name": "Short Barnes", + "gender": "male", + "age": 80, + "address": { + "state": "North Dakota", + "city": "Broadlands" + } + }, + { + "id": 7105, + "name": "Terry Webb", + "gender": "female", + "age": 59, + "address": { + "state": "Utah", + "city": "Limestone" + } + }, + { + "id": 7106, + "name": "Sasha Howell", + "gender": "female", + "age": 69, + "address": { + "state": "Florida", + "city": "Tilleda" + } + }, + { + "id": 7107, + "name": "Yang Mathews", + "gender": "male", + "age": 45, + "address": { + "state": "Rhode Island", + "city": "Alfarata" + } + }, + { + "id": 7108, + "name": "Valdez Sellers", + "gender": "male", + "age": 24, + "address": { + "state": "Delaware", + "city": "Leland" + } + }, + { + "id": 7109, + "name": "Lolita Wade", + "gender": "female", + "age": 19, + "address": { + "state": "Nebraska", + "city": "Richville" + } + }, + { + "id": 7110, + "name": "Kristine Irwin", + "gender": "female", + "age": 31, + "address": { + "state": "New York", + "city": "Chase" + } + }, + { + "id": 7111, + "name": "Nettie Ellison", + "gender": "female", + "age": 22, + "address": { + "state": "Hawaii", + "city": "Draper" + } + }, + { + "id": 7112, + "name": "Pierce Koch", + "gender": "male", + "age": 48, + "address": { + "state": "Louisiana", + "city": "Cherokee" + } + }, + { + "id": 7113, + "name": "Linda Morrison", + "gender": "female", + "age": 65, + "address": { + "state": "Indiana", + "city": "Caln" + } + }, + { + "id": 7114, + "name": "Thompson Spears", + "gender": "male", + "age": 82, + "address": { + "state": "Maine", + "city": "Coinjock" + } + }, + { + "id": 7115, + "name": "Kristi Phelps", + "gender": "female", + "age": 65, + "address": { + "state": "New Hampshire", + "city": "Garfield" + } + }, + { + "id": 7116, + "name": "Cervantes Copeland", + "gender": "male", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Gerber" + } + }, + { + "id": 7117, + "name": "Leona Griffith", + "gender": "female", + "age": 29, + "address": { + "state": "Idaho", + "city": "Coventry" + } + }, + { + "id": 7118, + "name": "Faulkner Hall", + "gender": "male", + "age": 41, + "address": { + "state": "Arizona", + "city": "Broadlands" + } + }, + { + "id": 7119, + "name": "Sandoval Branch", + "gender": "male", + "age": 55, + "address": { + "state": "South Dakota", + "city": "Colton" + } + }, + { + "id": 7120, + "name": "Vicky Rocha", + "gender": "female", + "age": 40, + "address": { + "state": "Connecticut", + "city": "Wakulla" + } + }, + { + "id": 7121, + "name": "Carla Mcintosh", + "gender": "female", + "age": 58, + "address": { + "state": "Washington", + "city": "Enlow" + } + }, + { + "id": 7122, + "name": "Welch Hodge", + "gender": "male", + "age": 47, + "address": { + "state": "New Jersey", + "city": "Dyckesville" + } + }, + { + "id": 7123, + "name": "York Allen", + "gender": "male", + "age": 37, + "address": { + "state": "South Carolina", + "city": "Bodega" + } + }, + { + "id": 7124, + "name": "Dollie Baldwin", + "gender": "female", + "age": 45, + "address": { + "state": "Minnesota", + "city": "Independence" + } + }, + { + "id": 7125, + "name": "Douglas Duran", + "gender": "male", + "age": 61, + "address": { + "state": "Alaska", + "city": "Wanamie" + } + }, + { + "id": 7126, + "name": "Andrea Davis", + "gender": "female", + "age": 68, + "address": { + "state": "Montana", + "city": "Brenton" + } + }, + { + "id": 7127, + "name": "Mills Cherry", + "gender": "male", + "age": 47, + "address": { + "state": "Illinois", + "city": "Kohatk" + } + }, + { + "id": 7128, + "name": "Victoria Terry", + "gender": "female", + "age": 22, + "address": { + "state": "Maryland", + "city": "Byrnedale" + } + }, + { + "id": 7129, + "name": "Paul Mcleod", + "gender": "male", + "age": 66, + "address": { + "state": "Kentucky", + "city": "Salvo" + } + }, + { + "id": 7130, + "name": "Eleanor Bell", + "gender": "female", + "age": 37, + "address": { + "state": "Mississippi", + "city": "Condon" + } + }, + { + "id": 7131, + "name": "Adriana Bright", + "gender": "female", + "age": 68, + "address": { + "state": "Colorado", + "city": "Trail" + } + }, + { + "id": 7132, + "name": "Mccormick Gallagher", + "gender": "male", + "age": 39, + "address": { + "state": "Michigan", + "city": "Felt" + } + }, + { + "id": 7133, + "name": "Robbie Preston", + "gender": "female", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Alafaya" + } + }, + { + "id": 7134, + "name": "Kathleen Montgomery", + "gender": "female", + "age": 38, + "address": { + "state": "Wisconsin", + "city": "Boling" + } + }, + { + "id": 7135, + "name": "Livingston Mcconnell", + "gender": "male", + "age": 64, + "address": { + "state": "Georgia", + "city": "Churchill" + } + }, + { + "id": 7136, + "name": "Mooney Lindsay", + "gender": "male", + "age": 78, + "address": { + "state": "Ohio", + "city": "Rockhill" + } + }, + { + "id": 7137, + "name": "Darlene Hess", + "gender": "female", + "age": 21, + "address": { + "state": "Iowa", + "city": "Woodlake" + } + }, + { + "id": 7138, + "name": "Compton Albert", + "gender": "male", + "age": 48, + "address": { + "state": "Massachusetts", + "city": "Sanborn" + } + }, + { + "id": 7139, + "name": "Lucy Lowery", + "gender": "female", + "age": 31, + "address": { + "state": "Vermont", + "city": "Grapeview" + } + }, + { + "id": 7140, + "name": "Dorthy Hale", + "gender": "female", + "age": 56, + "address": { + "state": "Alabama", + "city": "Naomi" + } + }, + { + "id": 7141, + "name": "Wyatt Mcgowan", + "gender": "male", + "age": 51, + "address": { + "state": "Virginia", + "city": "Belleview" + } + }, + { + "id": 7142, + "name": "Roy Orr", + "gender": "male", + "age": 78, + "address": { + "state": "Arkansas", + "city": "Allensworth" + } + }, + { + "id": 7143, + "name": "Spence Poole", + "gender": "male", + "age": 75, + "address": { + "state": "North Dakota", + "city": "Murillo" + } + }, + { + "id": 7144, + "name": "Stacie Moreno", + "gender": "female", + "age": 38, + "address": { + "state": "Missouri", + "city": "Fruitdale" + } + }, + { + "id": 7145, + "name": "Perez Serrano", + "gender": "male", + "age": 33, + "address": { + "state": "Oregon", + "city": "Starks" + } + }, + { + "id": 7146, + "name": "Vance Mitchell", + "gender": "male", + "age": 80, + "address": { + "state": "Texas", + "city": "Umapine" + } + }, + { + "id": 7147, + "name": "Stacy Garrett", + "gender": "female", + "age": 78, + "address": { + "state": "California", + "city": "Villarreal" + } + }, + { + "id": 7148, + "name": "Cora Brady", + "gender": "female", + "age": 34, + "address": { + "state": "Oklahoma", + "city": "Madaket" + } + }, + { + "id": 7149, + "name": "Bernard Fowler", + "gender": "male", + "age": 29, + "address": { + "state": "Kansas", + "city": "Foscoe" + } + }, + { + "id": 7150, + "name": "Hickman Alston", + "gender": "male", + "age": 18, + "address": { + "state": "Wyoming", + "city": "Dawn" + } + }, + { + "id": 7151, + "name": "Brady Fulton", + "gender": "male", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Camas" + } + }, + { + "id": 7152, + "name": "Jacqueline Nielsen", + "gender": "female", + "age": 26, + "address": { + "state": "West Virginia", + "city": "Kanauga" + } + }, + { + "id": 7153, + "name": "Phelps Roth", + "gender": "male", + "age": 82, + "address": { + "state": "Tennessee", + "city": "Crucible" + } + }, + { + "id": 7154, + "name": "Adrienne Tyson", + "gender": "female", + "age": 33, + "address": { + "state": "Rhode Island", + "city": "Sanders" + } + }, + { + "id": 7155, + "name": "Hurst Gordon", + "gender": "male", + "age": 79, + "address": { + "state": "Wyoming", + "city": "Idamay" + } + }, + { + "id": 7156, + "name": "Noel Sims", + "gender": "male", + "age": 77, + "address": { + "state": "Colorado", + "city": "Bonanza" + } + }, + { + "id": 7157, + "name": "Janna Estrada", + "gender": "female", + "age": 57, + "address": { + "state": "Arizona", + "city": "Bawcomville" + } + }, + { + "id": 7158, + "name": "Ina Albert", + "gender": "female", + "age": 54, + "address": { + "state": "Nevada", + "city": "Ronco" + } + }, + { + "id": 7159, + "name": "Gale Glenn", + "gender": "female", + "age": 75, + "address": { + "state": "New Jersey", + "city": "Caberfae" + } + }, + { + "id": 7160, + "name": "Nichole Vance", + "gender": "female", + "age": 39, + "address": { + "state": "Missouri", + "city": "Manila" + } + }, + { + "id": 7161, + "name": "Clarice Boone", + "gender": "female", + "age": 65, + "address": { + "state": "Florida", + "city": "Wright" + } + }, + { + "id": 7162, + "name": "Hillary Hull", + "gender": "female", + "age": 34, + "address": { + "state": "Massachusetts", + "city": "Wilsonia" + } + }, + { + "id": 7163, + "name": "Madelyn Barr", + "gender": "female", + "age": 75, + "address": { + "state": "Oklahoma", + "city": "Freelandville" + } + }, + { + "id": 7164, + "name": "Russo Warner", + "gender": "male", + "age": 29, + "address": { + "state": "Vermont", + "city": "Fresno" + } + }, + { + "id": 7165, + "name": "Manuela Duke", + "gender": "female", + "age": 17, + "address": { + "state": "North Dakota", + "city": "Vale" + } + }, + { + "id": 7166, + "name": "Pacheco Ferrell", + "gender": "male", + "age": 51, + "address": { + "state": "Alaska", + "city": "Fairview" + } + }, + { + "id": 7167, + "name": "Foley Tillman", + "gender": "male", + "age": 38, + "address": { + "state": "Louisiana", + "city": "Hondah" + } + }, + { + "id": 7168, + "name": "Keri Jenkins", + "gender": "female", + "age": 74, + "address": { + "state": "Iowa", + "city": "Trucksville" + } + }, + { + "id": 7169, + "name": "Harrington Yang", + "gender": "male", + "age": 64, + "address": { + "state": "Ohio", + "city": "Kanauga" + } + }, + { + "id": 7170, + "name": "Rosalyn Delgado", + "gender": "female", + "age": 60, + "address": { + "state": "Illinois", + "city": "Kylertown" + } + }, + { + "id": 7171, + "name": "Jacquelyn Hoover", + "gender": "female", + "age": 24, + "address": { + "state": "Kentucky", + "city": "Harrison" + } + }, + { + "id": 7172, + "name": "Shaw Daniels", + "gender": "male", + "age": 80, + "address": { + "state": "Washington", + "city": "Blanford" + } + }, + { + "id": 7173, + "name": "Myers Becker", + "gender": "male", + "age": 51, + "address": { + "state": "Kansas", + "city": "Woodlake" + } + }, + { + "id": 7174, + "name": "Yang Neal", + "gender": "male", + "age": 65, + "address": { + "state": "South Dakota", + "city": "Olney" + } + }, + { + "id": 7175, + "name": "Consuelo Malone", + "gender": "female", + "age": 42, + "address": { + "state": "Indiana", + "city": "Conestoga" + } + }, + { + "id": 7176, + "name": "Kaitlin Adams", + "gender": "female", + "age": 74, + "address": { + "state": "Connecticut", + "city": "Rivers" + } + }, + { + "id": 7177, + "name": "Cherry Cooper", + "gender": "male", + "age": 79, + "address": { + "state": "Texas", + "city": "Wheaton" + } + }, + { + "id": 7178, + "name": "Ewing Olsen", + "gender": "male", + "age": 54, + "address": { + "state": "Alabama", + "city": "Freetown" + } + }, + { + "id": 7179, + "name": "Brittney Mclean", + "gender": "female", + "age": 80, + "address": { + "state": "Tennessee", + "city": "Waiohinu" + } + }, + { + "id": 7180, + "name": "Key Duncan", + "gender": "male", + "age": 55, + "address": { + "state": "West Virginia", + "city": "Rivera" + } + }, + { + "id": 7181, + "name": "Charmaine Skinner", + "gender": "female", + "age": 36, + "address": { + "state": "Maryland", + "city": "Trail" + } + }, + { + "id": 7182, + "name": "Deidre Brooks", + "gender": "female", + "age": 73, + "address": { + "state": "Oregon", + "city": "Iola" + } + }, + { + "id": 7183, + "name": "Hanson Raymond", + "gender": "male", + "age": 68, + "address": { + "state": "Delaware", + "city": "Hannasville" + } + }, + { + "id": 7184, + "name": "Jo Hutchinson", + "gender": "female", + "age": 58, + "address": { + "state": "New Mexico", + "city": "Sugartown" + } + }, + { + "id": 7185, + "name": "Madden Cruz", + "gender": "male", + "age": 73, + "address": { + "state": "Virginia", + "city": "Ironton" + } + }, + { + "id": 7186, + "name": "Church Hancock", + "gender": "male", + "age": 82, + "address": { + "state": "New York", + "city": "Neahkahnie" + } + }, + { + "id": 7187, + "name": "Nicholson Sanford", + "gender": "male", + "age": 71, + "address": { + "state": "South Carolina", + "city": "Emerald" + } + }, + { + "id": 7188, + "name": "Fulton Padilla", + "gender": "male", + "age": 47, + "address": { + "state": "Mississippi", + "city": "Gasquet" + } + }, + { + "id": 7189, + "name": "Beverly Fields", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Chilton" + } + }, + { + "id": 7190, + "name": "Ball Blankenship", + "gender": "male", + "age": 34, + "address": { + "state": "Minnesota", + "city": "Haring" + } + }, + { + "id": 7191, + "name": "Penelope Tanner", + "gender": "female", + "age": 37, + "address": { + "state": "Nebraska", + "city": "Caspar" + } + }, + { + "id": 7192, + "name": "Terra Hurley", + "gender": "female", + "age": 33, + "address": { + "state": "North Carolina", + "city": "Gardners" + } + }, + { + "id": 7193, + "name": "Kim Andrews", + "gender": "male", + "age": 71, + "address": { + "state": "Arkansas", + "city": "Alden" + } + }, + { + "id": 7194, + "name": "Cantrell Russell", + "gender": "male", + "age": 71, + "address": { + "state": "New Hampshire", + "city": "Germanton" + } + }, + { + "id": 7195, + "name": "Mejia Booker", + "gender": "male", + "age": 65, + "address": { + "state": "Georgia", + "city": "Fairhaven" + } + }, + { + "id": 7196, + "name": "Violet Norris", + "gender": "female", + "age": 72, + "address": { + "state": "Michigan", + "city": "Chapin" + } + }, + { + "id": 7197, + "name": "Lynda Stone", + "gender": "female", + "age": 82, + "address": { + "state": "California", + "city": "Walker" + } + }, + { + "id": 7198, + "name": "Estrada Cook", + "gender": "male", + "age": 35, + "address": { + "state": "Utah", + "city": "Kidder" + } + }, + { + "id": 7199, + "name": "Cooper Gill", + "gender": "male", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Boykin" + } + }, + { + "id": 7200, + "name": "Owens Ross", + "gender": "male", + "age": 44, + "address": { + "state": "Maine", + "city": "Valle" + } + }, + { + "id": 7201, + "name": "Mason Deleon", + "gender": "male", + "age": 39, + "address": { + "state": "Idaho", + "city": "Enetai" + } + }, + { + "id": 7202, + "name": "Mcclain Butler", + "gender": "male", + "age": 67, + "address": { + "state": "Montana", + "city": "Avalon" + } + }, + { + "id": 7203, + "name": "Britney Macias", + "gender": "female", + "age": 40, + "address": { + "state": "West Virginia", + "city": "Davenport" + } + }, + { + "id": 7204, + "name": "Sandra Bruce", + "gender": "female", + "age": 39, + "address": { + "state": "Ohio", + "city": "Cashtown" + } + }, + { + "id": 7205, + "name": "Wagner Dodson", + "gender": "male", + "age": 40, + "address": { + "state": "Wyoming", + "city": "Barstow" + } + }, + { + "id": 7206, + "name": "Marcie Short", + "gender": "female", + "age": 76, + "address": { + "state": "Pennsylvania", + "city": "Fairview" + } + }, + { + "id": 7207, + "name": "Callie Pitts", + "gender": "female", + "age": 47, + "address": { + "state": "Maryland", + "city": "Crenshaw" + } + }, + { + "id": 7208, + "name": "Ellis Larsen", + "gender": "male", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Macdona" + } + }, + { + "id": 7209, + "name": "Rene Powell", + "gender": "female", + "age": 34, + "address": { + "state": "Oklahoma", + "city": "Trexlertown" + } + }, + { + "id": 7210, + "name": "Salinas Cote", + "gender": "male", + "age": 31, + "address": { + "state": "Texas", + "city": "Weeksville" + } + }, + { + "id": 7211, + "name": "Emma Alexander", + "gender": "female", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Aurora" + } + }, + { + "id": 7212, + "name": "Orr Knapp", + "gender": "male", + "age": 76, + "address": { + "state": "Missouri", + "city": "Jacumba" + } + }, + { + "id": 7213, + "name": "Bullock Gutierrez", + "gender": "male", + "age": 46, + "address": { + "state": "Illinois", + "city": "Rew" + } + }, + { + "id": 7214, + "name": "Ester Horton", + "gender": "female", + "age": 26, + "address": { + "state": "South Carolina", + "city": "Cassel" + } + }, + { + "id": 7215, + "name": "Pena Langley", + "gender": "male", + "age": 38, + "address": { + "state": "California", + "city": "Canterwood" + } + }, + { + "id": 7216, + "name": "Wendi Glover", + "gender": "female", + "age": 66, + "address": { + "state": "Washington", + "city": "Kohatk" + } + }, + { + "id": 7217, + "name": "Meyers Sellers", + "gender": "male", + "age": 65, + "address": { + "state": "Nebraska", + "city": "Cherokee" + } + }, + { + "id": 7218, + "name": "Sherman Carter", + "gender": "male", + "age": 37, + "address": { + "state": "Michigan", + "city": "Strykersville" + } + }, + { + "id": 7219, + "name": "Guthrie Rose", + "gender": "male", + "age": 30, + "address": { + "state": "Utah", + "city": "Dahlen" + } + }, + { + "id": 7220, + "name": "Armstrong Sweet", + "gender": "male", + "age": 72, + "address": { + "state": "New York", + "city": "Wyano" + } + }, + { + "id": 7221, + "name": "Ingrid Madden", + "gender": "female", + "age": 30, + "address": { + "state": "North Carolina", + "city": "Lutsen" + } + }, + { + "id": 7222, + "name": "Cobb Jordan", + "gender": "male", + "age": 79, + "address": { + "state": "Connecticut", + "city": "Gilmore" + } + }, + { + "id": 7223, + "name": "Erin Anthony", + "gender": "female", + "age": 70, + "address": { + "state": "Minnesota", + "city": "Utting" + } + }, + { + "id": 7224, + "name": "Bartlett Harding", + "gender": "male", + "age": 42, + "address": { + "state": "Arkansas", + "city": "Matheny" + } + }, + { + "id": 7225, + "name": "Serena Deleon", + "gender": "female", + "age": 72, + "address": { + "state": "Alaska", + "city": "Murillo" + } + }, + { + "id": 7226, + "name": "Decker Jarvis", + "gender": "male", + "age": 56, + "address": { + "state": "Massachusetts", + "city": "Elbert" + } + }, + { + "id": 7227, + "name": "Hooper Brennan", + "gender": "male", + "age": 17, + "address": { + "state": "Arizona", + "city": "Thatcher" + } + }, + { + "id": 7228, + "name": "Lindsey Sawyer", + "gender": "female", + "age": 28, + "address": { + "state": "Mississippi", + "city": "Eden" + } + }, + { + "id": 7229, + "name": "Glover Lewis", + "gender": "male", + "age": 17, + "address": { + "state": "Delaware", + "city": "Dunnavant" + } + }, + { + "id": 7230, + "name": "Lee Molina", + "gender": "female", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Iberia" + } + }, + { + "id": 7231, + "name": "Sheryl Pope", + "gender": "female", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Toftrees" + } + }, + { + "id": 7232, + "name": "Brennan Case", + "gender": "male", + "age": 43, + "address": { + "state": "Colorado", + "city": "Dargan" + } + }, + { + "id": 7233, + "name": "Dianna Odonnell", + "gender": "female", + "age": 62, + "address": { + "state": "Maine", + "city": "Gerber" + } + }, + { + "id": 7234, + "name": "Cox Serrano", + "gender": "male", + "age": 22, + "address": { + "state": "Indiana", + "city": "Bodega" + } + }, + { + "id": 7235, + "name": "Ivy Nichols", + "gender": "female", + "age": 17, + "address": { + "state": "Idaho", + "city": "Rodanthe" + } + }, + { + "id": 7236, + "name": "Jillian Richards", + "gender": "female", + "age": 52, + "address": { + "state": "Nevada", + "city": "Gibsonia" + } + }, + { + "id": 7237, + "name": "Patsy Barber", + "gender": "female", + "age": 81, + "address": { + "state": "Vermont", + "city": "Coral" + } + }, + { + "id": 7238, + "name": "Tran Woodward", + "gender": "male", + "age": 72, + "address": { + "state": "Kentucky", + "city": "Delwood" + } + }, + { + "id": 7239, + "name": "Abby Chase", + "gender": "female", + "age": 39, + "address": { + "state": "New Jersey", + "city": "Farmers" + } + }, + { + "id": 7240, + "name": "Gracie Riggs", + "gender": "female", + "age": 57, + "address": { + "state": "Florida", + "city": "Garfield" + } + }, + { + "id": 7241, + "name": "Mabel Nguyen", + "gender": "female", + "age": 31, + "address": { + "state": "South Dakota", + "city": "Juarez" + } + }, + { + "id": 7242, + "name": "Erickson Osborne", + "gender": "male", + "age": 74, + "address": { + "state": "Montana", + "city": "Dundee" + } + }, + { + "id": 7243, + "name": "Wooten Wright", + "gender": "male", + "age": 26, + "address": { + "state": "Georgia", + "city": "Bartonsville" + } + }, + { + "id": 7244, + "name": "Edwina Gilmore", + "gender": "female", + "age": 69, + "address": { + "state": "North Dakota", + "city": "Shaft" + } + }, + { + "id": 7245, + "name": "Sabrina Gallagher", + "gender": "female", + "age": 31, + "address": { + "state": "Iowa", + "city": "Fairacres" + } + }, + { + "id": 7246, + "name": "Tonya Booth", + "gender": "female", + "age": 29, + "address": { + "state": "Alabama", + "city": "Abrams" + } + }, + { + "id": 7247, + "name": "May Holcomb", + "gender": "male", + "age": 33, + "address": { + "state": "Hawaii", + "city": "Blackgum" + } + }, + { + "id": 7248, + "name": "Clements Burch", + "gender": "male", + "age": 79, + "address": { + "state": "New Mexico", + "city": "Salix" + } + }, + { + "id": 7249, + "name": "Vivian Barker", + "gender": "female", + "age": 59, + "address": { + "state": "Kansas", + "city": "Verdi" + } + }, + { + "id": 7250, + "name": "Fowler Bass", + "gender": "male", + "age": 56, + "address": { + "state": "Virginia", + "city": "Coloma" + } + }, + { + "id": 7251, + "name": "Buchanan Horn", + "gender": "male", + "age": 24, + "address": { + "state": "Oregon", + "city": "Coleville" + } + }, + { + "id": 7252, + "name": "Delacruz Bradford", + "gender": "male", + "age": 78, + "address": { + "state": "Michigan", + "city": "Ruffin" + } + }, + { + "id": 7253, + "name": "Matthews May", + "gender": "male", + "age": 58, + "address": { + "state": "Rhode Island", + "city": "Tecolotito" + } + }, + { + "id": 7254, + "name": "Evans Hoffman", + "gender": "male", + "age": 25, + "address": { + "state": "Oregon", + "city": "Vienna" + } + }, + { + "id": 7255, + "name": "Flowers Huff", + "gender": "male", + "age": 67, + "address": { + "state": "Illinois", + "city": "Hebron" + } + }, + { + "id": 7256, + "name": "Ellis Turner", + "gender": "male", + "age": 73, + "address": { + "state": "Vermont", + "city": "Aurora" + } + }, + { + "id": 7257, + "name": "Cannon Singleton", + "gender": "male", + "age": 42, + "address": { + "state": "Washington", + "city": "Wattsville" + } + }, + { + "id": 7258, + "name": "Mary Glover", + "gender": "female", + "age": 68, + "address": { + "state": "South Dakota", + "city": "Wawona" + } + }, + { + "id": 7259, + "name": "Johns Carney", + "gender": "male", + "age": 81, + "address": { + "state": "Montana", + "city": "Soham" + } + }, + { + "id": 7260, + "name": "Martina Warren", + "gender": "female", + "age": 20, + "address": { + "state": "Florida", + "city": "Cetronia" + } + }, + { + "id": 7261, + "name": "Shawn Chambers", + "gender": "female", + "age": 19, + "address": { + "state": "Texas", + "city": "Rosine" + } + }, + { + "id": 7262, + "name": "Brandy Suarez", + "gender": "female", + "age": 42, + "address": { + "state": "Kansas", + "city": "Norwood" + } + }, + { + "id": 7263, + "name": "Sharon Villarreal", + "gender": "female", + "age": 26, + "address": { + "state": "Louisiana", + "city": "Sexton" + } + }, + { + "id": 7264, + "name": "Carlene Bennett", + "gender": "female", + "age": 22, + "address": { + "state": "Kentucky", + "city": "Blanford" + } + }, + { + "id": 7265, + "name": "Carey Palmer", + "gender": "female", + "age": 38, + "address": { + "state": "Wyoming", + "city": "Hardyville" + } + }, + { + "id": 7266, + "name": "Bradford Hardy", + "gender": "male", + "age": 77, + "address": { + "state": "Wisconsin", + "city": "Lynn" + } + }, + { + "id": 7267, + "name": "Jennie Rojas", + "gender": "female", + "age": 39, + "address": { + "state": "New Hampshire", + "city": "Kersey" + } + }, + { + "id": 7268, + "name": "Polly Payne", + "gender": "female", + "age": 46, + "address": { + "state": "Indiana", + "city": "Worton" + } + }, + { + "id": 7269, + "name": "Conrad Knowles", + "gender": "male", + "age": 55, + "address": { + "state": "Alabama", + "city": "Dahlen" + } + }, + { + "id": 7270, + "name": "Rebecca Sampson", + "gender": "female", + "age": 63, + "address": { + "state": "South Carolina", + "city": "Woodlands" + } + }, + { + "id": 7271, + "name": "Mcintosh King", + "gender": "male", + "age": 79, + "address": { + "state": "New York", + "city": "Kraemer" + } + }, + { + "id": 7272, + "name": "Pope Hughes", + "gender": "male", + "age": 42, + "address": { + "state": "Hawaii", + "city": "Venice" + } + }, + { + "id": 7273, + "name": "Bridgett Bright", + "gender": "female", + "age": 57, + "address": { + "state": "Maine", + "city": "Edmund" + } + }, + { + "id": 7274, + "name": "Michael Banks", + "gender": "female", + "age": 53, + "address": { + "state": "Virginia", + "city": "Katonah" + } + }, + { + "id": 7275, + "name": "Evangelina Harrison", + "gender": "female", + "age": 76, + "address": { + "state": "Georgia", + "city": "Needmore" + } + }, + { + "id": 7276, + "name": "Mullen Rodgers", + "gender": "male", + "age": 32, + "address": { + "state": "Alaska", + "city": "Snelling" + } + }, + { + "id": 7277, + "name": "Henderson Kemp", + "gender": "male", + "age": 27, + "address": { + "state": "North Carolina", + "city": "Dennard" + } + }, + { + "id": 7278, + "name": "Joyce Meyer", + "gender": "female", + "age": 64, + "address": { + "state": "Iowa", + "city": "Jamestown" + } + }, + { + "id": 7279, + "name": "Corine Nolan", + "gender": "female", + "age": 30, + "address": { + "state": "Pennsylvania", + "city": "Fairmount" + } + }, + { + "id": 7280, + "name": "Petty Macdonald", + "gender": "male", + "age": 56, + "address": { + "state": "Maryland", + "city": "Gardners" + } + }, + { + "id": 7281, + "name": "Workman Bowen", + "gender": "male", + "age": 38, + "address": { + "state": "Missouri", + "city": "Trona" + } + }, + { + "id": 7282, + "name": "Millicent Moses", + "gender": "female", + "age": 21, + "address": { + "state": "Idaho", + "city": "Trexlertown" + } + }, + { + "id": 7283, + "name": "Lang Rush", + "gender": "male", + "age": 66, + "address": { + "state": "Oklahoma", + "city": "Blairstown" + } + }, + { + "id": 7284, + "name": "Olive Foley", + "gender": "female", + "age": 73, + "address": { + "state": "Colorado", + "city": "Riceville" + } + }, + { + "id": 7285, + "name": "Kasey Buckley", + "gender": "female", + "age": 81, + "address": { + "state": "North Dakota", + "city": "Bison" + } + }, + { + "id": 7286, + "name": "Sara Gardner", + "gender": "female", + "age": 59, + "address": { + "state": "New Jersey", + "city": "Deputy" + } + }, + { + "id": 7287, + "name": "Delacruz Wood", + "gender": "male", + "age": 42, + "address": { + "state": "Minnesota", + "city": "Gracey" + } + }, + { + "id": 7288, + "name": "Kristen Duffy", + "gender": "female", + "age": 69, + "address": { + "state": "Connecticut", + "city": "Breinigsville" + } + }, + { + "id": 7289, + "name": "Jamie Mcdonald", + "gender": "female", + "age": 17, + "address": { + "state": "Delaware", + "city": "Caledonia" + } + }, + { + "id": 7290, + "name": "Kelley Whitehead", + "gender": "female", + "age": 57, + "address": { + "state": "New Mexico", + "city": "Hachita" + } + }, + { + "id": 7291, + "name": "Newman Hyde", + "gender": "male", + "age": 33, + "address": { + "state": "Mississippi", + "city": "Curtice" + } + }, + { + "id": 7292, + "name": "Wolf Velasquez", + "gender": "male", + "age": 53, + "address": { + "state": "Arkansas", + "city": "Mansfield" + } + }, + { + "id": 7293, + "name": "Wood Bird", + "gender": "male", + "age": 24, + "address": { + "state": "Ohio", + "city": "Fivepointville" + } + }, + { + "id": 7294, + "name": "Staci Cleveland", + "gender": "female", + "age": 40, + "address": { + "state": "Utah", + "city": "Nanafalia" + } + }, + { + "id": 7295, + "name": "Smith Mcmahon", + "gender": "male", + "age": 30, + "address": { + "state": "West Virginia", + "city": "Watchtower" + } + }, + { + "id": 7296, + "name": "Tanya Kline", + "gender": "female", + "age": 45, + "address": { + "state": "Nevada", + "city": "Efland" + } + }, + { + "id": 7297, + "name": "Andrews Riggs", + "gender": "male", + "age": 41, + "address": { + "state": "Massachusetts", + "city": "Oasis" + } + }, + { + "id": 7298, + "name": "Underwood Aguirre", + "gender": "male", + "age": 82, + "address": { + "state": "Arizona", + "city": "Crayne" + } + }, + { + "id": 7299, + "name": "Macias Alexander", + "gender": "male", + "age": 73, + "address": { + "state": "California", + "city": "Westerville" + } + }, + { + "id": 7300, + "name": "Abby Mccarthy", + "gender": "female", + "age": 24, + "address": { + "state": "Nebraska", + "city": "Cuylerville" + } + }, + { + "id": 7301, + "name": "Leach Huber", + "gender": "male", + "age": 25, + "address": { + "state": "Illinois", + "city": "Fairforest" + } + }, + { + "id": 7302, + "name": "Penny Duffy", + "gender": "female", + "age": 73, + "address": { + "state": "Mississippi", + "city": "Germanton" + } + }, + { + "id": 7303, + "name": "Collins Trujillo", + "gender": "male", + "age": 43, + "address": { + "state": "Oregon", + "city": "Bethpage" + } + }, + { + "id": 7304, + "name": "Ursula Osborne", + "gender": "female", + "age": 67, + "address": { + "state": "Louisiana", + "city": "Ferney" + } + }, + { + "id": 7305, + "name": "Warner Jordan", + "gender": "male", + "age": 23, + "address": { + "state": "Wyoming", + "city": "Blue" + } + }, + { + "id": 7306, + "name": "Becky Randall", + "gender": "female", + "age": 54, + "address": { + "state": "West Virginia", + "city": "Snelling" + } + }, + { + "id": 7307, + "name": "Norma Ortega", + "gender": "female", + "age": 49, + "address": { + "state": "Hawaii", + "city": "Deercroft" + } + }, + { + "id": 7308, + "name": "Donovan Nicholson", + "gender": "male", + "age": 32, + "address": { + "state": "Minnesota", + "city": "Rushford" + } + }, + { + "id": 7309, + "name": "May Tanner", + "gender": "female", + "age": 35, + "address": { + "state": "Missouri", + "city": "Wacissa" + } + }, + { + "id": 7310, + "name": "Pickett Black", + "gender": "male", + "age": 54, + "address": { + "state": "Michigan", + "city": "Thatcher" + } + }, + { + "id": 7311, + "name": "Best Tyson", + "gender": "male", + "age": 51, + "address": { + "state": "Florida", + "city": "Grantville" + } + }, + { + "id": 7312, + "name": "Lewis Talley", + "gender": "male", + "age": 62, + "address": { + "state": "Indiana", + "city": "Grill" + } + }, + { + "id": 7313, + "name": "Araceli Cameron", + "gender": "female", + "age": 45, + "address": { + "state": "Oklahoma", + "city": "Allison" + } + }, + { + "id": 7314, + "name": "Beatriz Potts", + "gender": "female", + "age": 45, + "address": { + "state": "Maine", + "city": "Masthope" + } + }, + { + "id": 7315, + "name": "Lesley Baxter", + "gender": "female", + "age": 44, + "address": { + "state": "North Carolina", + "city": "Muse" + } + }, + { + "id": 7316, + "name": "Roach Dodson", + "gender": "male", + "age": 74, + "address": { + "state": "California", + "city": "Roosevelt" + } + }, + { + "id": 7317, + "name": "Casey Dudley", + "gender": "female", + "age": 55, + "address": { + "state": "New Hampshire", + "city": "Springville" + } + }, + { + "id": 7318, + "name": "Peters Odom", + "gender": "male", + "age": 19, + "address": { + "state": "Colorado", + "city": "Chesapeake" + } + }, + { + "id": 7319, + "name": "Ethel Lyons", + "gender": "female", + "age": 60, + "address": { + "state": "New Jersey", + "city": "Loomis" + } + }, + { + "id": 7320, + "name": "Oneil Christian", + "gender": "male", + "age": 47, + "address": { + "state": "Kentucky", + "city": "Lupton" + } + }, + { + "id": 7321, + "name": "Simon Turner", + "gender": "male", + "age": 40, + "address": { + "state": "Tennessee", + "city": "Snyderville" + } + }, + { + "id": 7322, + "name": "Darla Patterson", + "gender": "female", + "age": 36, + "address": { + "state": "Massachusetts", + "city": "Brooktrails" + } + }, + { + "id": 7323, + "name": "Calderon Morse", + "gender": "male", + "age": 58, + "address": { + "state": "Alaska", + "city": "Fruitdale" + } + }, + { + "id": 7324, + "name": "Harrell George", + "gender": "male", + "age": 60, + "address": { + "state": "North Dakota", + "city": "Ada" + } + }, + { + "id": 7325, + "name": "Jimenez Myers", + "gender": "male", + "age": 61, + "address": { + "state": "Wisconsin", + "city": "Sabillasville" + } + }, + { + "id": 7326, + "name": "Keisha Juarez", + "gender": "female", + "age": 18, + "address": { + "state": "Pennsylvania", + "city": "Lacomb" + } + }, + { + "id": 7327, + "name": "Little Hooper", + "gender": "male", + "age": 29, + "address": { + "state": "Georgia", + "city": "Bagtown" + } + }, + { + "id": 7328, + "name": "Ernestine Short", + "gender": "female", + "age": 25, + "address": { + "state": "Arizona", + "city": "Corinne" + } + }, + { + "id": 7329, + "name": "Rivers Franks", + "gender": "male", + "age": 53, + "address": { + "state": "Washington", + "city": "Glenbrook" + } + }, + { + "id": 7330, + "name": "Carey Vang", + "gender": "female", + "age": 24, + "address": { + "state": "Ohio", + "city": "Romeville" + } + }, + { + "id": 7331, + "name": "Betty Valdez", + "gender": "female", + "age": 57, + "address": { + "state": "New Mexico", + "city": "Gilgo" + } + }, + { + "id": 7332, + "name": "Natasha Stein", + "gender": "female", + "age": 39, + "address": { + "state": "South Carolina", + "city": "Klagetoh" + } + }, + { + "id": 7333, + "name": "Monica Phillips", + "gender": "female", + "age": 54, + "address": { + "state": "Rhode Island", + "city": "Comptche" + } + }, + { + "id": 7334, + "name": "Mollie Bates", + "gender": "female", + "age": 53, + "address": { + "state": "Nebraska", + "city": "Chalfant" + } + }, + { + "id": 7335, + "name": "Dale Pittman", + "gender": "male", + "age": 62, + "address": { + "state": "Idaho", + "city": "Goldfield" + } + }, + { + "id": 7336, + "name": "Karin Shannon", + "gender": "female", + "age": 74, + "address": { + "state": "Montana", + "city": "Bend" + } + }, + { + "id": 7337, + "name": "Wise Carrillo", + "gender": "male", + "age": 46, + "address": { + "state": "Arkansas", + "city": "Wheatfields" + } + }, + { + "id": 7338, + "name": "Aline Little", + "gender": "female", + "age": 22, + "address": { + "state": "Connecticut", + "city": "Whitehaven" + } + }, + { + "id": 7339, + "name": "Adkins Zamora", + "gender": "male", + "age": 49, + "address": { + "state": "Utah", + "city": "Inkerman" + } + }, + { + "id": 7340, + "name": "Sanders Jimenez", + "gender": "male", + "age": 51, + "address": { + "state": "Iowa", + "city": "Singer" + } + }, + { + "id": 7341, + "name": "Sims Francis", + "gender": "male", + "age": 23, + "address": { + "state": "Nevada", + "city": "Yogaville" + } + }, + { + "id": 7342, + "name": "Kemp Morton", + "gender": "male", + "age": 49, + "address": { + "state": "Virginia", + "city": "Bellfountain" + } + }, + { + "id": 7343, + "name": "Gibson Riley", + "gender": "male", + "age": 36, + "address": { + "state": "Maryland", + "city": "Osage" + } + }, + { + "id": 7344, + "name": "Tamera Schultz", + "gender": "female", + "age": 79, + "address": { + "state": "Alabama", + "city": "Mappsville" + } + }, + { + "id": 7345, + "name": "Cortez Hood", + "gender": "male", + "age": 70, + "address": { + "state": "Delaware", + "city": "Indio" + } + }, + { + "id": 7346, + "name": "Bell Pickett", + "gender": "male", + "age": 19, + "address": { + "state": "Kansas", + "city": "Faxon" + } + }, + { + "id": 7347, + "name": "Lawrence Richard", + "gender": "male", + "age": 37, + "address": { + "state": "Texas", + "city": "Bath" + } + }, + { + "id": 7348, + "name": "Corine Pope", + "gender": "female", + "age": 28, + "address": { + "state": "New York", + "city": "Thornport" + } + }, + { + "id": 7349, + "name": "Dorothea Whitaker", + "gender": "female", + "age": 25, + "address": { + "state": "Vermont", + "city": "Deputy" + } + }, + { + "id": 7350, + "name": "Grant Golden", + "gender": "male", + "age": 76, + "address": { + "state": "Montana", + "city": "Baden" + } + }, + { + "id": 7351, + "name": "Norton Contreras", + "gender": "male", + "age": 55, + "address": { + "state": "Nevada", + "city": "Hardyville" + } + }, + { + "id": 7352, + "name": "Bertha House", + "gender": "female", + "age": 77, + "address": { + "state": "Maryland", + "city": "Echo" + } + }, + { + "id": 7353, + "name": "Miranda Ashley", + "gender": "female", + "age": 43, + "address": { + "state": "Arizona", + "city": "Brutus" + } + }, + { + "id": 7354, + "name": "Romero Schultz", + "gender": "male", + "age": 30, + "address": { + "state": "Alaska", + "city": "Wakulla" + } + }, + { + "id": 7355, + "name": "Maude Cole", + "gender": "female", + "age": 36, + "address": { + "state": "Oregon", + "city": "Dalton" + } + }, + { + "id": 7356, + "name": "Rosalinda Moody", + "gender": "female", + "age": 29, + "address": { + "state": "Wisconsin", + "city": "Stevens" + } + }, + { + "id": 7357, + "name": "Alexis Mann", + "gender": "female", + "age": 68, + "address": { + "state": "Nebraska", + "city": "Juntura" + } + }, + { + "id": 7358, + "name": "Alvarado Andrews", + "gender": "male", + "age": 67, + "address": { + "state": "Tennessee", + "city": "Broadlands" + } + }, + { + "id": 7359, + "name": "Isabel Ramos", + "gender": "female", + "age": 19, + "address": { + "state": "Missouri", + "city": "Rockhill" + } + }, + { + "id": 7360, + "name": "Kim Morrow", + "gender": "male", + "age": 78, + "address": { + "state": "Texas", + "city": "Dixie" + } + }, + { + "id": 7361, + "name": "Best May", + "gender": "male", + "age": 39, + "address": { + "state": "New Jersey", + "city": "Denio" + } + }, + { + "id": 7362, + "name": "Duncan Gibbs", + "gender": "male", + "age": 54, + "address": { + "state": "California", + "city": "Dubois" + } + }, + { + "id": 7363, + "name": "Daugherty Kramer", + "gender": "male", + "age": 37, + "address": { + "state": "Pennsylvania", + "city": "Waterloo" + } + }, + { + "id": 7364, + "name": "Wendy Oneal", + "gender": "female", + "age": 29, + "address": { + "state": "Oklahoma", + "city": "Kenvil" + } + }, + { + "id": 7365, + "name": "Brandy Bradford", + "gender": "female", + "age": 35, + "address": { + "state": "Washington", + "city": "Downsville" + } + }, + { + "id": 7366, + "name": "Ava Washington", + "gender": "female", + "age": 18, + "address": { + "state": "South Dakota", + "city": "Floriston" + } + }, + { + "id": 7367, + "name": "Bowers Bright", + "gender": "male", + "age": 29, + "address": { + "state": "Hawaii", + "city": "Delwood" + } + }, + { + "id": 7368, + "name": "Warner Holloway", + "gender": "male", + "age": 58, + "address": { + "state": "New Hampshire", + "city": "Blue" + } + }, + { + "id": 7369, + "name": "Sheppard Strickland", + "gender": "male", + "age": 38, + "address": { + "state": "West Virginia", + "city": "Lodoga" + } + }, + { + "id": 7370, + "name": "Aguilar Leblanc", + "gender": "male", + "age": 57, + "address": { + "state": "Louisiana", + "city": "Cutter" + } + }, + { + "id": 7371, + "name": "Avery Tate", + "gender": "male", + "age": 39, + "address": { + "state": "Colorado", + "city": "Cumminsville" + } + }, + { + "id": 7372, + "name": "Cantu Walsh", + "gender": "male", + "age": 71, + "address": { + "state": "Georgia", + "city": "Martinez" + } + }, + { + "id": 7373, + "name": "Thomas Singleton", + "gender": "male", + "age": 60, + "address": { + "state": "Vermont", + "city": "Linganore" + } + }, + { + "id": 7374, + "name": "Mai Sherman", + "gender": "female", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Chase" + } + }, + { + "id": 7375, + "name": "Twila Mckee", + "gender": "female", + "age": 74, + "address": { + "state": "Alabama", + "city": "Robinette" + } + }, + { + "id": 7376, + "name": "Alyssa Mcmahon", + "gender": "female", + "age": 75, + "address": { + "state": "New Mexico", + "city": "Rose" + } + }, + { + "id": 7377, + "name": "Darla Shields", + "gender": "female", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Harborton" + } + }, + { + "id": 7378, + "name": "Luna Durham", + "gender": "male", + "age": 81, + "address": { + "state": "New York", + "city": "Lindisfarne" + } + }, + { + "id": 7379, + "name": "Katelyn Oneil", + "gender": "female", + "age": 66, + "address": { + "state": "Iowa", + "city": "Carbonville" + } + }, + { + "id": 7380, + "name": "Merrill Flores", + "gender": "male", + "age": 20, + "address": { + "state": "Maine", + "city": "Wiscon" + } + }, + { + "id": 7381, + "name": "Petty Duke", + "gender": "male", + "age": 49, + "address": { + "state": "Arkansas", + "city": "Harviell" + } + }, + { + "id": 7382, + "name": "Trevino Mckay", + "gender": "male", + "age": 40, + "address": { + "state": "Wyoming", + "city": "Benson" + } + }, + { + "id": 7383, + "name": "Sharpe Craig", + "gender": "male", + "age": 67, + "address": { + "state": "Mississippi", + "city": "Bagtown" + } + }, + { + "id": 7384, + "name": "Myers Pollard", + "gender": "male", + "age": 64, + "address": { + "state": "Massachusetts", + "city": "Winston" + } + }, + { + "id": 7385, + "name": "Gena Mcleod", + "gender": "female", + "age": 47, + "address": { + "state": "Connecticut", + "city": "Lavalette" + } + }, + { + "id": 7386, + "name": "Adkins Grant", + "gender": "male", + "age": 73, + "address": { + "state": "Idaho", + "city": "Dale" + } + }, + { + "id": 7387, + "name": "Lara Walton", + "gender": "male", + "age": 46, + "address": { + "state": "Delaware", + "city": "Rew" + } + }, + { + "id": 7388, + "name": "Ferrell Stanley", + "gender": "male", + "age": 59, + "address": { + "state": "Indiana", + "city": "Tioga" + } + }, + { + "id": 7389, + "name": "Eaton Morton", + "gender": "male", + "age": 25, + "address": { + "state": "Ohio", + "city": "Yardville" + } + }, + { + "id": 7390, + "name": "Sonya Rosa", + "gender": "female", + "age": 46, + "address": { + "state": "Utah", + "city": "Vernon" + } + }, + { + "id": 7391, + "name": "Kimberly Cohen", + "gender": "female", + "age": 43, + "address": { + "state": "Michigan", + "city": "Wedgewood" + } + }, + { + "id": 7392, + "name": "May Graham", + "gender": "male", + "age": 17, + "address": { + "state": "South Carolina", + "city": "Sexton" + } + }, + { + "id": 7393, + "name": "Priscilla Lawrence", + "gender": "female", + "age": 54, + "address": { + "state": "Virginia", + "city": "Maury" + } + }, + { + "id": 7394, + "name": "Morse Stafford", + "gender": "male", + "age": 82, + "address": { + "state": "Illinois", + "city": "Williston" + } + }, + { + "id": 7395, + "name": "Scott Santos", + "gender": "male", + "age": 51, + "address": { + "state": "Kentucky", + "city": "Hiwasse" + } + }, + { + "id": 7396, + "name": "Madeleine Moses", + "gender": "female", + "age": 42, + "address": { + "state": "Florida", + "city": "Bentonville" + } + }, + { + "id": 7397, + "name": "Maxine Pope", + "gender": "female", + "age": 66, + "address": { + "state": "North Dakota", + "city": "Dante" + } + }, + { + "id": 7398, + "name": "Alvarez Stout", + "gender": "male", + "age": 61, + "address": { + "state": "Kansas", + "city": "Carrizo" + } + }, + { + "id": 7399, + "name": "Gutierrez Mayo", + "gender": "male", + "age": 30, + "address": { + "state": "Oregon", + "city": "Cecilia" + } + }, + { + "id": 7400, + "name": "Frost Glover", + "gender": "male", + "age": 63, + "address": { + "state": "Idaho", + "city": "Tolu" + } + }, + { + "id": 7401, + "name": "Castro Goodman", + "gender": "male", + "age": 29, + "address": { + "state": "Kentucky", + "city": "Shaft" + } + }, + { + "id": 7402, + "name": "Arline Donovan", + "gender": "female", + "age": 50, + "address": { + "state": "Utah", + "city": "Moraida" + } + }, + { + "id": 7403, + "name": "Lindsay Butler", + "gender": "male", + "age": 70, + "address": { + "state": "New Jersey", + "city": "Temperanceville" + } + }, + { + "id": 7404, + "name": "Sheila King", + "gender": "female", + "age": 71, + "address": { + "state": "Pennsylvania", + "city": "Lawrence" + } + }, + { + "id": 7405, + "name": "Eve Barnett", + "gender": "female", + "age": 80, + "address": { + "state": "Maine", + "city": "Celeryville" + } + }, + { + "id": 7406, + "name": "Benita Brooks", + "gender": "female", + "age": 38, + "address": { + "state": "West Virginia", + "city": "Soham" + } + }, + { + "id": 7407, + "name": "Stafford Church", + "gender": "male", + "age": 41, + "address": { + "state": "Nevada", + "city": "Weeksville" + } + }, + { + "id": 7408, + "name": "Mcfarland Joseph", + "gender": "male", + "age": 46, + "address": { + "state": "Arkansas", + "city": "Maybell" + } + }, + { + "id": 7409, + "name": "Newman Cross", + "gender": "male", + "age": 19, + "address": { + "state": "Missouri", + "city": "Gilmore" + } + }, + { + "id": 7410, + "name": "Calhoun Gomez", + "gender": "male", + "age": 19, + "address": { + "state": "North Carolina", + "city": "Newkirk" + } + }, + { + "id": 7411, + "name": "Marta Chen", + "gender": "female", + "age": 24, + "address": { + "state": "Alaska", + "city": "Lithium" + } + }, + { + "id": 7412, + "name": "Corine Wells", + "gender": "female", + "age": 48, + "address": { + "state": "New Hampshire", + "city": "Ezel" + } + }, + { + "id": 7413, + "name": "Yang Myers", + "gender": "male", + "age": 57, + "address": { + "state": "New York", + "city": "Tooleville" + } + }, + { + "id": 7414, + "name": "Morgan Mccormick", + "gender": "male", + "age": 68, + "address": { + "state": "Ohio", + "city": "Stonybrook" + } + }, + { + "id": 7415, + "name": "Ashlee Thornton", + "gender": "female", + "age": 73, + "address": { + "state": "Wisconsin", + "city": "Richville" + } + }, + { + "id": 7416, + "name": "Carlson Crawford", + "gender": "male", + "age": 19, + "address": { + "state": "Hawaii", + "city": "Lafferty" + } + }, + { + "id": 7417, + "name": "Claudette Schmidt", + "gender": "female", + "age": 38, + "address": { + "state": "Mississippi", + "city": "Baden" + } + }, + { + "id": 7418, + "name": "Mullen Valenzuela", + "gender": "male", + "age": 22, + "address": { + "state": "Michigan", + "city": "Zeba" + } + }, + { + "id": 7419, + "name": "Cervantes Simmons", + "gender": "male", + "age": 24, + "address": { + "state": "Delaware", + "city": "Fulford" + } + }, + { + "id": 7420, + "name": "Naomi Yates", + "gender": "female", + "age": 61, + "address": { + "state": "Washington", + "city": "Chapin" + } + }, + { + "id": 7421, + "name": "Hatfield Woods", + "gender": "male", + "age": 35, + "address": { + "state": "California", + "city": "Highland" + } + }, + { + "id": 7422, + "name": "Duke Wong", + "gender": "male", + "age": 69, + "address": { + "state": "South Dakota", + "city": "Cressey" + } + }, + { + "id": 7423, + "name": "Mills Conway", + "gender": "male", + "age": 61, + "address": { + "state": "New Mexico", + "city": "Crumpler" + } + }, + { + "id": 7424, + "name": "Mcdaniel Hansen", + "gender": "male", + "age": 77, + "address": { + "state": "Florida", + "city": "Crown" + } + }, + { + "id": 7425, + "name": "Maritza Cote", + "gender": "female", + "age": 51, + "address": { + "state": "Rhode Island", + "city": "Sunnyside" + } + }, + { + "id": 7426, + "name": "Aida Mckinney", + "gender": "female", + "age": 56, + "address": { + "state": "Texas", + "city": "Oceola" + } + }, + { + "id": 7427, + "name": "Janie Dunn", + "gender": "female", + "age": 28, + "address": { + "state": "Maryland", + "city": "Naomi" + } + }, + { + "id": 7428, + "name": "Clements Huffman", + "gender": "male", + "age": 55, + "address": { + "state": "Minnesota", + "city": "Lemoyne" + } + }, + { + "id": 7429, + "name": "Irene Riddle", + "gender": "female", + "age": 77, + "address": { + "state": "Virginia", + "city": "Dellview" + } + }, + { + "id": 7430, + "name": "Ashley Meyer", + "gender": "male", + "age": 27, + "address": { + "state": "Georgia", + "city": "Cassel" + } + }, + { + "id": 7431, + "name": "Imogene Joyner", + "gender": "female", + "age": 32, + "address": { + "state": "Connecticut", + "city": "Bannock" + } + }, + { + "id": 7432, + "name": "Leola Prince", + "gender": "female", + "age": 77, + "address": { + "state": "North Dakota", + "city": "Kersey" + } + }, + { + "id": 7433, + "name": "Guzman Mueller", + "gender": "male", + "age": 67, + "address": { + "state": "Oklahoma", + "city": "Moquino" + } + }, + { + "id": 7434, + "name": "Leanne Warren", + "gender": "female", + "age": 60, + "address": { + "state": "Illinois", + "city": "Inkerman" + } + }, + { + "id": 7435, + "name": "Francis Hardy", + "gender": "female", + "age": 40, + "address": { + "state": "South Carolina", + "city": "Beyerville" + } + }, + { + "id": 7436, + "name": "Phillips Savage", + "gender": "male", + "age": 37, + "address": { + "state": "Arizona", + "city": "Gerton" + } + }, + { + "id": 7437, + "name": "Keisha Shaffer", + "gender": "female", + "age": 76, + "address": { + "state": "Montana", + "city": "Haring" + } + }, + { + "id": 7438, + "name": "Wallace Guy", + "gender": "male", + "age": 73, + "address": { + "state": "Wyoming", + "city": "Deseret" + } + }, + { + "id": 7439, + "name": "Meyers Rivers", + "gender": "male", + "age": 42, + "address": { + "state": "Alabama", + "city": "Wheatfields" + } + }, + { + "id": 7440, + "name": "Erna Dennis", + "gender": "female", + "age": 37, + "address": { + "state": "Kansas", + "city": "Enetai" + } + }, + { + "id": 7441, + "name": "Christi Lindsey", + "gender": "female", + "age": 29, + "address": { + "state": "Louisiana", + "city": "Mulberry" + } + }, + { + "id": 7442, + "name": "Peterson Haney", + "gender": "male", + "age": 61, + "address": { + "state": "Indiana", + "city": "Joes" + } + }, + { + "id": 7443, + "name": "Hardy Booker", + "gender": "male", + "age": 49, + "address": { + "state": "Massachusetts", + "city": "Verdi" + } + }, + { + "id": 7444, + "name": "Bowen Harris", + "gender": "male", + "age": 47, + "address": { + "state": "Vermont", + "city": "Davenport" + } + }, + { + "id": 7445, + "name": "Lindsey Duran", + "gender": "male", + "age": 39, + "address": { + "state": "Iowa", + "city": "Fredericktown" + } + }, + { + "id": 7446, + "name": "Horn Daniels", + "gender": "male", + "age": 25, + "address": { + "state": "Colorado", + "city": "Ladera" + } + }, + { + "id": 7447, + "name": "Saunders Harrell", + "gender": "male", + "age": 27, + "address": { + "state": "Tennessee", + "city": "Sexton" + } + }, + { + "id": 7448, + "name": "Lester Beard", + "gender": "male", + "age": 34, + "address": { + "state": "Louisiana", + "city": "Strykersville" + } + }, + { + "id": 7449, + "name": "Eunice Howe", + "gender": "female", + "age": 79, + "address": { + "state": "Iowa", + "city": "Alleghenyville" + } + }, + { + "id": 7450, + "name": "Tamara Mclean", + "gender": "female", + "age": 57, + "address": { + "state": "Hawaii", + "city": "Fowlerville" + } + }, + { + "id": 7451, + "name": "Zelma Cox", + "gender": "female", + "age": 18, + "address": { + "state": "Kentucky", + "city": "Gambrills" + } + }, + { + "id": 7452, + "name": "Maureen Sandoval", + "gender": "female", + "age": 37, + "address": { + "state": "Indiana", + "city": "Hiseville" + } + }, + { + "id": 7453, + "name": "Hester Flores", + "gender": "male", + "age": 81, + "address": { + "state": "North Carolina", + "city": "Tecolotito" + } + }, + { + "id": 7454, + "name": "Buckley Gilbert", + "gender": "male", + "age": 60, + "address": { + "state": "Virginia", + "city": "Newry" + } + }, + { + "id": 7455, + "name": "Amie Meyers", + "gender": "female", + "age": 77, + "address": { + "state": "South Dakota", + "city": "Kimmell" + } + }, + { + "id": 7456, + "name": "Michael Joyce", + "gender": "female", + "age": 33, + "address": { + "state": "Oklahoma", + "city": "Leola" + } + }, + { + "id": 7457, + "name": "Odonnell Adkins", + "gender": "male", + "age": 38, + "address": { + "state": "New Jersey", + "city": "Weeksville" + } + }, + { + "id": 7458, + "name": "Kane Copeland", + "gender": "male", + "age": 43, + "address": { + "state": "North Dakota", + "city": "Wacissa" + } + }, + { + "id": 7459, + "name": "Holcomb Ellis", + "gender": "male", + "age": 45, + "address": { + "state": "Pennsylvania", + "city": "Clarktown" + } + }, + { + "id": 7460, + "name": "Delia Duffy", + "gender": "female", + "age": 44, + "address": { + "state": "Maine", + "city": "Orason" + } + }, + { + "id": 7461, + "name": "Mcknight Ruiz", + "gender": "male", + "age": 66, + "address": { + "state": "Massachusetts", + "city": "Grantville" + } + }, + { + "id": 7462, + "name": "Shaw Mason", + "gender": "male", + "age": 27, + "address": { + "state": "Mississippi", + "city": "Cumberland" + } + }, + { + "id": 7463, + "name": "Blackwell Salazar", + "gender": "male", + "age": 37, + "address": { + "state": "Arizona", + "city": "Barclay" + } + }, + { + "id": 7464, + "name": "Franks Mcintosh", + "gender": "male", + "age": 47, + "address": { + "state": "Nevada", + "city": "Movico" + } + }, + { + "id": 7465, + "name": "Iris Mcguire", + "gender": "female", + "age": 42, + "address": { + "state": "Washington", + "city": "Axis" + } + }, + { + "id": 7466, + "name": "Helga Reynolds", + "gender": "female", + "age": 56, + "address": { + "state": "West Virginia", + "city": "Joes" + } + }, + { + "id": 7467, + "name": "Margarita Wilkinson", + "gender": "female", + "age": 36, + "address": { + "state": "New Hampshire", + "city": "Wollochet" + } + }, + { + "id": 7468, + "name": "Erika Holland", + "gender": "female", + "age": 25, + "address": { + "state": "Wyoming", + "city": "Grapeview" + } + }, + { + "id": 7469, + "name": "Mcguire Bond", + "gender": "male", + "age": 60, + "address": { + "state": "New York", + "city": "Balm" + } + }, + { + "id": 7470, + "name": "Buchanan Hughes", + "gender": "male", + "age": 80, + "address": { + "state": "Wisconsin", + "city": "Tooleville" + } + }, + { + "id": 7471, + "name": "Aguirre Good", + "gender": "male", + "age": 21, + "address": { + "state": "Florida", + "city": "Kidder" + } + }, + { + "id": 7472, + "name": "Joann Bernard", + "gender": "female", + "age": 62, + "address": { + "state": "Rhode Island", + "city": "Brecon" + } + }, + { + "id": 7473, + "name": "Barry Mack", + "gender": "male", + "age": 56, + "address": { + "state": "Utah", + "city": "Nettie" + } + }, + { + "id": 7474, + "name": "Frye Chen", + "gender": "male", + "age": 59, + "address": { + "state": "Minnesota", + "city": "Elizaville" + } + }, + { + "id": 7475, + "name": "Good Stout", + "gender": "male", + "age": 25, + "address": { + "state": "Texas", + "city": "Drummond" + } + }, + { + "id": 7476, + "name": "Michele Baker", + "gender": "female", + "age": 56, + "address": { + "state": "Montana", + "city": "Gouglersville" + } + }, + { + "id": 7477, + "name": "Holland Herrera", + "gender": "male", + "age": 26, + "address": { + "state": "New Mexico", + "city": "Deseret" + } + }, + { + "id": 7478, + "name": "Bean Stark", + "gender": "male", + "age": 30, + "address": { + "state": "Michigan", + "city": "Elwood" + } + }, + { + "id": 7479, + "name": "Elinor Emerson", + "gender": "female", + "age": 28, + "address": { + "state": "Missouri", + "city": "Wildwood" + } + }, + { + "id": 7480, + "name": "Blake Hawkins", + "gender": "male", + "age": 77, + "address": { + "state": "South Carolina", + "city": "Beaulieu" + } + }, + { + "id": 7481, + "name": "Rhea Rogers", + "gender": "female", + "age": 46, + "address": { + "state": "Kansas", + "city": "Alfarata" + } + }, + { + "id": 7482, + "name": "Durham Lamb", + "gender": "male", + "age": 54, + "address": { + "state": "Vermont", + "city": "Oasis" + } + }, + { + "id": 7483, + "name": "Lorie Lara", + "gender": "female", + "age": 53, + "address": { + "state": "Georgia", + "city": "Emerald" + } + }, + { + "id": 7484, + "name": "Randi Suarez", + "gender": "female", + "age": 31, + "address": { + "state": "Delaware", + "city": "Unionville" + } + }, + { + "id": 7485, + "name": "Vang Frost", + "gender": "male", + "age": 34, + "address": { + "state": "Nebraska", + "city": "Gwynn" + } + }, + { + "id": 7486, + "name": "Julianne Ramirez", + "gender": "female", + "age": 32, + "address": { + "state": "Ohio", + "city": "Bladensburg" + } + }, + { + "id": 7487, + "name": "Tammy Walsh", + "gender": "female", + "age": 40, + "address": { + "state": "Arkansas", + "city": "Hamilton" + } + }, + { + "id": 7488, + "name": "Michelle Pollard", + "gender": "female", + "age": 42, + "address": { + "state": "Alabama", + "city": "Homeland" + } + }, + { + "id": 7489, + "name": "Ayers Sweet", + "gender": "male", + "age": 67, + "address": { + "state": "Idaho", + "city": "Riverton" + } + }, + { + "id": 7490, + "name": "Arnold Curtis", + "gender": "male", + "age": 64, + "address": { + "state": "Illinois", + "city": "Crucible" + } + }, + { + "id": 7491, + "name": "Jimmie Robertson", + "gender": "female", + "age": 43, + "address": { + "state": "Tennessee", + "city": "Floriston" + } + }, + { + "id": 7492, + "name": "Sharpe Jackson", + "gender": "male", + "age": 75, + "address": { + "state": "Alaska", + "city": "Mathews" + } + }, + { + "id": 7493, + "name": "Leach Ward", + "gender": "male", + "age": 69, + "address": { + "state": "Oregon", + "city": "Makena" + } + }, + { + "id": 7494, + "name": "Angeline Harris", + "gender": "female", + "age": 43, + "address": { + "state": "Connecticut", + "city": "Smeltertown" + } + }, + { + "id": 7495, + "name": "Langley Reyes", + "gender": "male", + "age": 71, + "address": { + "state": "California", + "city": "Dubois" + } + }, + { + "id": 7496, + "name": "Alejandra Humphrey", + "gender": "female", + "age": 38, + "address": { + "state": "Maryland", + "city": "Mapletown" + } + }, + { + "id": 7497, + "name": "Ray Grant", + "gender": "male", + "age": 44, + "address": { + "state": "Michigan", + "city": "Tilleda" + } + }, + { + "id": 7498, + "name": "Frederick Rojas", + "gender": "male", + "age": 62, + "address": { + "state": "Massachusetts", + "city": "Fresno" + } + }, + { + "id": 7499, + "name": "Ramona Kramer", + "gender": "female", + "age": 47, + "address": { + "state": "Oregon", + "city": "Riverton" + } + }, + { + "id": 7500, + "name": "Juanita Petty", + "gender": "female", + "age": 29, + "address": { + "state": "Missouri", + "city": "Escondida" + } + }, + { + "id": 7501, + "name": "Ochoa Best", + "gender": "male", + "age": 50, + "address": { + "state": "Wyoming", + "city": "Alfarata" + } + }, + { + "id": 7502, + "name": "Audrey Glover", + "gender": "female", + "age": 39, + "address": { + "state": "Louisiana", + "city": "Layhill" + } + }, + { + "id": 7503, + "name": "Small Camacho", + "gender": "male", + "age": 17, + "address": { + "state": "Virginia", + "city": "Falmouth" + } + }, + { + "id": 7504, + "name": "Bridges Holmes", + "gender": "male", + "age": 50, + "address": { + "state": "Washington", + "city": "Fontanelle" + } + }, + { + "id": 7505, + "name": "Hodges Hardy", + "gender": "male", + "age": 42, + "address": { + "state": "Hawaii", + "city": "Bison" + } + }, + { + "id": 7506, + "name": "Avila Wilder", + "gender": "male", + "age": 35, + "address": { + "state": "Connecticut", + "city": "Rutherford" + } + }, + { + "id": 7507, + "name": "Nannie Russell", + "gender": "female", + "age": 24, + "address": { + "state": "New York", + "city": "Churchill" + } + }, + { + "id": 7508, + "name": "Candace Mcgee", + "gender": "female", + "age": 74, + "address": { + "state": "New Jersey", + "city": "Dorneyville" + } + }, + { + "id": 7509, + "name": "Stokes Head", + "gender": "male", + "age": 44, + "address": { + "state": "Florida", + "city": "Kent" + } + }, + { + "id": 7510, + "name": "Fitzgerald Ingram", + "gender": "male", + "age": 18, + "address": { + "state": "North Dakota", + "city": "Golconda" + } + }, + { + "id": 7511, + "name": "Rosie Ortega", + "gender": "female", + "age": 78, + "address": { + "state": "Kentucky", + "city": "Homeland" + } + }, + { + "id": 7512, + "name": "Nieves Sparks", + "gender": "male", + "age": 64, + "address": { + "state": "Oklahoma", + "city": "Edinburg" + } + }, + { + "id": 7513, + "name": "Gena Gillespie", + "gender": "female", + "age": 66, + "address": { + "state": "New Hampshire", + "city": "Winchester" + } + }, + { + "id": 7514, + "name": "Hutchinson Burris", + "gender": "male", + "age": 77, + "address": { + "state": "Indiana", + "city": "Linganore" + } + }, + { + "id": 7515, + "name": "Caroline Fitzgerald", + "gender": "female", + "age": 82, + "address": { + "state": "Alaska", + "city": "Cedarville" + } + }, + { + "id": 7516, + "name": "Ronda Watts", + "gender": "female", + "age": 70, + "address": { + "state": "Ohio", + "city": "Mulberry" + } + }, + { + "id": 7517, + "name": "Oconnor Howard", + "gender": "male", + "age": 27, + "address": { + "state": "California", + "city": "Linwood" + } + }, + { + "id": 7518, + "name": "House Mendoza", + "gender": "male", + "age": 31, + "address": { + "state": "Mississippi", + "city": "Deltaville" + } + }, + { + "id": 7519, + "name": "Queen Robbins", + "gender": "female", + "age": 30, + "address": { + "state": "New Mexico", + "city": "Brecon" + } + }, + { + "id": 7520, + "name": "Margie Guerrero", + "gender": "female", + "age": 49, + "address": { + "state": "South Dakota", + "city": "Ferney" + } + }, + { + "id": 7521, + "name": "Gaines Conner", + "gender": "male", + "age": 38, + "address": { + "state": "Kansas", + "city": "Stonybrook" + } + }, + { + "id": 7522, + "name": "Teresa Dejesus", + "gender": "female", + "age": 45, + "address": { + "state": "Vermont", + "city": "Nutrioso" + } + }, + { + "id": 7523, + "name": "Ebony Mayer", + "gender": "female", + "age": 71, + "address": { + "state": "Illinois", + "city": "Elfrida" + } + }, + { + "id": 7524, + "name": "Johnnie Roy", + "gender": "female", + "age": 24, + "address": { + "state": "Idaho", + "city": "Wilsonia" + } + }, + { + "id": 7525, + "name": "Alyssa Hutchinson", + "gender": "female", + "age": 49, + "address": { + "state": "Tennessee", + "city": "Hegins" + } + }, + { + "id": 7526, + "name": "Minerva Calderon", + "gender": "female", + "age": 80, + "address": { + "state": "Wisconsin", + "city": "Sidman" + } + }, + { + "id": 7527, + "name": "Beard Estes", + "gender": "male", + "age": 31, + "address": { + "state": "North Carolina", + "city": "Ogema" + } + }, + { + "id": 7528, + "name": "Olga Aguilar", + "gender": "female", + "age": 56, + "address": { + "state": "Delaware", + "city": "Chumuckla" + } + }, + { + "id": 7529, + "name": "Melva Fitzpatrick", + "gender": "female", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Wakulla" + } + }, + { + "id": 7530, + "name": "Hebert Mcmahon", + "gender": "male", + "age": 25, + "address": { + "state": "Rhode Island", + "city": "Ellerslie" + } + }, + { + "id": 7531, + "name": "Kate Simon", + "gender": "female", + "age": 74, + "address": { + "state": "Arizona", + "city": "Gerton" + } + }, + { + "id": 7532, + "name": "Fischer Savage", + "gender": "male", + "age": 44, + "address": { + "state": "Minnesota", + "city": "Soudan" + } + }, + { + "id": 7533, + "name": "Eve Mays", + "gender": "female", + "age": 37, + "address": { + "state": "Alabama", + "city": "Imperial" + } + }, + { + "id": 7534, + "name": "Rodriquez Keith", + "gender": "male", + "age": 79, + "address": { + "state": "Texas", + "city": "Durham" + } + }, + { + "id": 7535, + "name": "Ruthie Duran", + "gender": "female", + "age": 33, + "address": { + "state": "Georgia", + "city": "Cuylerville" + } + }, + { + "id": 7536, + "name": "Wood Burke", + "gender": "male", + "age": 48, + "address": { + "state": "Montana", + "city": "Lowgap" + } + }, + { + "id": 7537, + "name": "Guthrie Mcclain", + "gender": "male", + "age": 45, + "address": { + "state": "Colorado", + "city": "Chalfant" + } + }, + { + "id": 7538, + "name": "Travis Carson", + "gender": "male", + "age": 66, + "address": { + "state": "Utah", + "city": "Lisco" + } + }, + { + "id": 7539, + "name": "Liz Bradley", + "gender": "female", + "age": 17, + "address": { + "state": "Arkansas", + "city": "Salix" + } + }, + { + "id": 7540, + "name": "Cleveland Hines", + "gender": "male", + "age": 63, + "address": { + "state": "South Carolina", + "city": "Shawmut" + } + }, + { + "id": 7541, + "name": "Penelope Hays", + "gender": "female", + "age": 68, + "address": { + "state": "Maryland", + "city": "Vowinckel" + } + }, + { + "id": 7542, + "name": "Patti Beck", + "gender": "female", + "age": 60, + "address": { + "state": "Iowa", + "city": "Shindler" + } + }, + { + "id": 7543, + "name": "Peterson Paul", + "gender": "male", + "age": 28, + "address": { + "state": "Pennsylvania", + "city": "Macdona" + } + }, + { + "id": 7544, + "name": "Ruth Mooney", + "gender": "female", + "age": 27, + "address": { + "state": "Maine", + "city": "Shasta" + } + }, + { + "id": 7545, + "name": "Patsy Lyons", + "gender": "female", + "age": 25, + "address": { + "state": "Nevada", + "city": "Summerfield" + } + }, + { + "id": 7546, + "name": "Obrien Robinson", + "gender": "male", + "age": 47, + "address": { + "state": "North Dakota", + "city": "Gambrills" + } + }, + { + "id": 7547, + "name": "Oneil Joyce", + "gender": "male", + "age": 46, + "address": { + "state": "West Virginia", + "city": "Tonopah" + } + }, + { + "id": 7548, + "name": "Emily Everett", + "gender": "female", + "age": 36, + "address": { + "state": "Indiana", + "city": "Cornfields" + } + }, + { + "id": 7549, + "name": "Monique Delgado", + "gender": "female", + "age": 31, + "address": { + "state": "Alaska", + "city": "Rossmore" + } + }, + { + "id": 7550, + "name": "Cabrera Bowers", + "gender": "male", + "age": 26, + "address": { + "state": "Tennessee", + "city": "Olney" + } + }, + { + "id": 7551, + "name": "Davenport Miller", + "gender": "male", + "age": 60, + "address": { + "state": "Oregon", + "city": "Woodburn" + } + }, + { + "id": 7552, + "name": "Ola Kramer", + "gender": "female", + "age": 61, + "address": { + "state": "New York", + "city": "Crisman" + } + }, + { + "id": 7553, + "name": "Vance Shaw", + "gender": "male", + "age": 17, + "address": { + "state": "Washington", + "city": "Esmont" + } + }, + { + "id": 7554, + "name": "Mccarty Guthrie", + "gender": "male", + "age": 54, + "address": { + "state": "Mississippi", + "city": "Echo" + } + }, + { + "id": 7555, + "name": "Irma Berg", + "gender": "female", + "age": 68, + "address": { + "state": "New Hampshire", + "city": "Elbert" + } + }, + { + "id": 7556, + "name": "Tasha Sawyer", + "gender": "female", + "age": 81, + "address": { + "state": "Idaho", + "city": "Darbydale" + } + }, + { + "id": 7557, + "name": "Roslyn Knox", + "gender": "female", + "age": 81, + "address": { + "state": "Nevada", + "city": "Geyserville" + } + }, + { + "id": 7558, + "name": "Sasha Wheeler", + "gender": "female", + "age": 35, + "address": { + "state": "South Carolina", + "city": "Thermal" + } + }, + { + "id": 7559, + "name": "Terrie Waller", + "gender": "female", + "age": 21, + "address": { + "state": "Oklahoma", + "city": "Beaverdale" + } + }, + { + "id": 7560, + "name": "Espinoza Walls", + "gender": "male", + "age": 73, + "address": { + "state": "Minnesota", + "city": "Morningside" + } + }, + { + "id": 7561, + "name": "Carolina Hebert", + "gender": "female", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Whipholt" + } + }, + { + "id": 7562, + "name": "Shaw Ferrell", + "gender": "male", + "age": 63, + "address": { + "state": "North Carolina", + "city": "Elliston" + } + }, + { + "id": 7563, + "name": "Cunningham Gordon", + "gender": "male", + "age": 63, + "address": { + "state": "Rhode Island", + "city": "Gardiner" + } + }, + { + "id": 7564, + "name": "Webster Ortiz", + "gender": "male", + "age": 49, + "address": { + "state": "Texas", + "city": "Waverly" + } + }, + { + "id": 7565, + "name": "Levy Leach", + "gender": "male", + "age": 64, + "address": { + "state": "Michigan", + "city": "Savannah" + } + }, + { + "id": 7566, + "name": "Skinner Greene", + "gender": "male", + "age": 42, + "address": { + "state": "Pennsylvania", + "city": "Tuskahoma" + } + }, + { + "id": 7567, + "name": "Maynard Thompson", + "gender": "male", + "age": 20, + "address": { + "state": "Arkansas", + "city": "Tooleville" + } + }, + { + "id": 7568, + "name": "Brooks Vang", + "gender": "male", + "age": 36, + "address": { + "state": "Maryland", + "city": "Nadine" + } + }, + { + "id": 7569, + "name": "Davidson Barber", + "gender": "male", + "age": 23, + "address": { + "state": "Kansas", + "city": "Cloverdale" + } + }, + { + "id": 7570, + "name": "Lily Powers", + "gender": "female", + "age": 42, + "address": { + "state": "Arizona", + "city": "Connerton" + } + }, + { + "id": 7571, + "name": "Paula Francis", + "gender": "female", + "age": 37, + "address": { + "state": "Kentucky", + "city": "Chical" + } + }, + { + "id": 7572, + "name": "Antoinette Buchanan", + "gender": "female", + "age": 35, + "address": { + "state": "Alabama", + "city": "Vallonia" + } + }, + { + "id": 7573, + "name": "Verna Mcmahon", + "gender": "female", + "age": 21, + "address": { + "state": "Illinois", + "city": "Boykin" + } + }, + { + "id": 7574, + "name": "Saunders Vaughan", + "gender": "male", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Caledonia" + } + }, + { + "id": 7575, + "name": "Lucile Slater", + "gender": "female", + "age": 30, + "address": { + "state": "Connecticut", + "city": "Homeworth" + } + }, + { + "id": 7576, + "name": "Spencer Ramos", + "gender": "male", + "age": 21, + "address": { + "state": "Wyoming", + "city": "Mapletown" + } + }, + { + "id": 7577, + "name": "Klein Gill", + "gender": "male", + "age": 54, + "address": { + "state": "Georgia", + "city": "Conway" + } + }, + { + "id": 7578, + "name": "Hendricks Hodge", + "gender": "male", + "age": 70, + "address": { + "state": "Vermont", + "city": "Freetown" + } + }, + { + "id": 7579, + "name": "Katrina Acosta", + "gender": "female", + "age": 42, + "address": { + "state": "California", + "city": "Weedville" + } + }, + { + "id": 7580, + "name": "Michelle Bowen", + "gender": "female", + "age": 40, + "address": { + "state": "Colorado", + "city": "Clay" + } + }, + { + "id": 7581, + "name": "Bruce Hansen", + "gender": "male", + "age": 44, + "address": { + "state": "Ohio", + "city": "Elrama" + } + }, + { + "id": 7582, + "name": "Battle Moreno", + "gender": "male", + "age": 36, + "address": { + "state": "Massachusetts", + "city": "Martinez" + } + }, + { + "id": 7583, + "name": "Huff Dillon", + "gender": "male", + "age": 24, + "address": { + "state": "Florida", + "city": "Kempton" + } + }, + { + "id": 7584, + "name": "Ashley Warren", + "gender": "male", + "age": 77, + "address": { + "state": "South Dakota", + "city": "Greensburg" + } + }, + { + "id": 7585, + "name": "Rowland Kent", + "gender": "male", + "age": 79, + "address": { + "state": "Maine", + "city": "Darrtown" + } + }, + { + "id": 7586, + "name": "Woods Stuart", + "gender": "male", + "age": 39, + "address": { + "state": "Iowa", + "city": "Levant" + } + }, + { + "id": 7587, + "name": "Gallegos Roberts", + "gender": "male", + "age": 19, + "address": { + "state": "New Mexico", + "city": "Starks" + } + }, + { + "id": 7588, + "name": "Turner Stein", + "gender": "male", + "age": 81, + "address": { + "state": "Wisconsin", + "city": "Cutter" + } + }, + { + "id": 7589, + "name": "Blackwell Benton", + "gender": "male", + "age": 30, + "address": { + "state": "Nebraska", + "city": "Townsend" + } + }, + { + "id": 7590, + "name": "Neal Bradley", + "gender": "male", + "age": 42, + "address": { + "state": "Hawaii", + "city": "Freelandville" + } + }, + { + "id": 7591, + "name": "Paulette Wong", + "gender": "female", + "age": 56, + "address": { + "state": "Virginia", + "city": "Jacumba" + } + }, + { + "id": 7592, + "name": "Nolan Trujillo", + "gender": "male", + "age": 63, + "address": { + "state": "Missouri", + "city": "Springdale" + } + }, + { + "id": 7593, + "name": "Debora Estes", + "gender": "female", + "age": 57, + "address": { + "state": "Delaware", + "city": "Leeper" + } + }, + { + "id": 7594, + "name": "Lindsay Davenport", + "gender": "male", + "age": 55, + "address": { + "state": "Utah", + "city": "Kimmell" + } + }, + { + "id": 7595, + "name": "Sandra Pate", + "gender": "female", + "age": 17, + "address": { + "state": "Wyoming", + "city": "Idamay" + } + }, + { + "id": 7596, + "name": "Georgette Ray", + "gender": "female", + "age": 48, + "address": { + "state": "California", + "city": "Waukeenah" + } + }, + { + "id": 7597, + "name": "Latoya Warner", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Efland" + } + }, + { + "id": 7598, + "name": "Wood Cummings", + "gender": "male", + "age": 61, + "address": { + "state": "Tennessee", + "city": "Jamestown" + } + }, + { + "id": 7599, + "name": "Reynolds Carter", + "gender": "male", + "age": 19, + "address": { + "state": "Delaware", + "city": "Fowlerville" + } + }, + { + "id": 7600, + "name": "Gabriela Chambers", + "gender": "female", + "age": 33, + "address": { + "state": "Alabama", + "city": "Romeville" + } + }, + { + "id": 7601, + "name": "Claudia Gibbs", + "gender": "female", + "age": 76, + "address": { + "state": "Arkansas", + "city": "Tioga" + } + }, + { + "id": 7602, + "name": "Curtis Fry", + "gender": "male", + "age": 64, + "address": { + "state": "Maine", + "city": "Gambrills" + } + }, + { + "id": 7603, + "name": "Dillard Long", + "gender": "male", + "age": 80, + "address": { + "state": "Michigan", + "city": "Independence" + } + }, + { + "id": 7604, + "name": "Tasha Clemons", + "gender": "female", + "age": 26, + "address": { + "state": "West Virginia", + "city": "Hessville" + } + }, + { + "id": 7605, + "name": "Lola Sandoval", + "gender": "female", + "age": 54, + "address": { + "state": "Connecticut", + "city": "Thornport" + } + }, + { + "id": 7606, + "name": "Tabitha Puckett", + "gender": "female", + "age": 76, + "address": { + "state": "Illinois", + "city": "Tivoli" + } + }, + { + "id": 7607, + "name": "Candy Fitzgerald", + "gender": "female", + "age": 75, + "address": { + "state": "Florida", + "city": "Cornfields" + } + }, + { + "id": 7608, + "name": "Alisa Roach", + "gender": "female", + "age": 64, + "address": { + "state": "Wisconsin", + "city": "Aberdeen" + } + }, + { + "id": 7609, + "name": "Aileen Henderson", + "gender": "female", + "age": 41, + "address": { + "state": "Georgia", + "city": "Greer" + } + }, + { + "id": 7610, + "name": "Odom Burt", + "gender": "male", + "age": 17, + "address": { + "state": "Massachusetts", + "city": "Vicksburg" + } + }, + { + "id": 7611, + "name": "Tamika Lindsay", + "gender": "female", + "age": 39, + "address": { + "state": "New York", + "city": "Emison" + } + }, + { + "id": 7612, + "name": "Vega Huff", + "gender": "male", + "age": 43, + "address": { + "state": "Kansas", + "city": "Durham" + } + }, + { + "id": 7613, + "name": "Darla Macdonald", + "gender": "female", + "age": 53, + "address": { + "state": "Maryland", + "city": "Allentown" + } + }, + { + "id": 7614, + "name": "Chandler Fletcher", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Alleghenyville" + } + }, + { + "id": 7615, + "name": "Catalina Cobb", + "gender": "female", + "age": 56, + "address": { + "state": "Rhode Island", + "city": "Belvoir" + } + }, + { + "id": 7616, + "name": "Villarreal Morin", + "gender": "male", + "age": 72, + "address": { + "state": "Alaska", + "city": "Wright" + } + }, + { + "id": 7617, + "name": "Harriett Hodge", + "gender": "female", + "age": 36, + "address": { + "state": "New Jersey", + "city": "Dalton" + } + }, + { + "id": 7618, + "name": "Sweet Haley", + "gender": "male", + "age": 21, + "address": { + "state": "Missouri", + "city": "Enoree" + } + }, + { + "id": 7619, + "name": "Britt Wong", + "gender": "male", + "age": 42, + "address": { + "state": "South Dakota", + "city": "Sisquoc" + } + }, + { + "id": 7620, + "name": "Beasley Eaton", + "gender": "male", + "age": 40, + "address": { + "state": "Vermont", + "city": "Lowgap" + } + }, + { + "id": 7621, + "name": "Adeline Stanley", + "gender": "female", + "age": 48, + "address": { + "state": "Arizona", + "city": "Catherine" + } + }, + { + "id": 7622, + "name": "Valentine Sheppard", + "gender": "male", + "age": 76, + "address": { + "state": "Virginia", + "city": "Calvary" + } + }, + { + "id": 7623, + "name": "Lucile Villarreal", + "gender": "female", + "age": 47, + "address": { + "state": "South Carolina", + "city": "Cumminsville" + } + }, + { + "id": 7624, + "name": "Jerry Love", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Wakulla" + } + }, + { + "id": 7625, + "name": "Gail Beasley", + "gender": "female", + "age": 23, + "address": { + "state": "Mississippi", + "city": "Kipp" + } + }, + { + "id": 7626, + "name": "Karina Stone", + "gender": "female", + "age": 61, + "address": { + "state": "New Mexico", + "city": "Vernon" + } + }, + { + "id": 7627, + "name": "Jones Clements", + "gender": "male", + "age": 67, + "address": { + "state": "Nevada", + "city": "Osmond" + } + }, + { + "id": 7628, + "name": "Holcomb Frank", + "gender": "male", + "age": 30, + "address": { + "state": "Idaho", + "city": "Alamo" + } + }, + { + "id": 7629, + "name": "Butler Massey", + "gender": "male", + "age": 32, + "address": { + "state": "Minnesota", + "city": "Westboro" + } + }, + { + "id": 7630, + "name": "Hart Adams", + "gender": "male", + "age": 31, + "address": { + "state": "Colorado", + "city": "Waumandee" + } + }, + { + "id": 7631, + "name": "Armstrong Burke", + "gender": "male", + "age": 19, + "address": { + "state": "Louisiana", + "city": "Nile" + } + }, + { + "id": 7632, + "name": "Alberta Nguyen", + "gender": "female", + "age": 27, + "address": { + "state": "Nebraska", + "city": "Gulf" + } + }, + { + "id": 7633, + "name": "Head Conway", + "gender": "male", + "age": 59, + "address": { + "state": "Indiana", + "city": "Veyo" + } + }, + { + "id": 7634, + "name": "Sweeney Wolfe", + "gender": "male", + "age": 57, + "address": { + "state": "Washington", + "city": "Hall" + } + }, + { + "id": 7635, + "name": "Elba Simon", + "gender": "female", + "age": 29, + "address": { + "state": "Oregon", + "city": "Norfolk" + } + }, + { + "id": 7636, + "name": "Sasha Berry", + "gender": "female", + "age": 49, + "address": { + "state": "Kentucky", + "city": "Taft" + } + }, + { + "id": 7637, + "name": "Susie Franco", + "gender": "female", + "age": 71, + "address": { + "state": "Iowa", + "city": "Greenwich" + } + }, + { + "id": 7638, + "name": "Lawrence Wood", + "gender": "male", + "age": 51, + "address": { + "state": "North Carolina", + "city": "Kent" + } + }, + { + "id": 7639, + "name": "Lewis Cline", + "gender": "male", + "age": 36, + "address": { + "state": "Texas", + "city": "Cannondale" + } + }, + { + "id": 7640, + "name": "Griffin Lindsey", + "gender": "male", + "age": 19, + "address": { + "state": "Ohio", + "city": "Cresaptown" + } + }, + { + "id": 7641, + "name": "Yvonne Lara", + "gender": "female", + "age": 35, + "address": { + "state": "North Dakota", + "city": "Cavalero" + } + }, + { + "id": 7642, + "name": "Herring Sutton", + "gender": "male", + "age": 42, + "address": { + "state": "Montana", + "city": "Dubois" + } + }, + { + "id": 7643, + "name": "Silva Justice", + "gender": "male", + "age": 22, + "address": { + "state": "Oklahoma", + "city": "Curtice" + } + }, + { + "id": 7644, + "name": "Adrian Wilkins", + "gender": "female", + "age": 66, + "address": { + "state": "Utah", + "city": "Eggertsville" + } + }, + { + "id": 7645, + "name": "Bentley Baker", + "gender": "male", + "age": 53, + "address": { + "state": "California", + "city": "Greer" + } + }, + { + "id": 7646, + "name": "Reid Hoffman", + "gender": "male", + "age": 22, + "address": { + "state": "New Jersey", + "city": "Dundee" + } + }, + { + "id": 7647, + "name": "Noelle Dillon", + "gender": "female", + "age": 73, + "address": { + "state": "Arkansas", + "city": "Watchtower" + } + }, + { + "id": 7648, + "name": "Dina Burt", + "gender": "female", + "age": 28, + "address": { + "state": "Texas", + "city": "Madaket" + } + }, + { + "id": 7649, + "name": "Casandra Martinez", + "gender": "female", + "age": 72, + "address": { + "state": "Georgia", + "city": "Caberfae" + } + }, + { + "id": 7650, + "name": "Rodgers Sears", + "gender": "male", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Darrtown" + } + }, + { + "id": 7651, + "name": "Katina Castro", + "gender": "female", + "age": 39, + "address": { + "state": "Maine", + "city": "National" + } + }, + { + "id": 7652, + "name": "Oconnor Williams", + "gender": "male", + "age": 66, + "address": { + "state": "Missouri", + "city": "Grandview" + } + }, + { + "id": 7653, + "name": "Leona Allen", + "gender": "female", + "age": 57, + "address": { + "state": "West Virginia", + "city": "Roosevelt" + } + }, + { + "id": 7654, + "name": "Vazquez Riggs", + "gender": "male", + "age": 66, + "address": { + "state": "Florida", + "city": "Eagleville" + } + }, + { + "id": 7655, + "name": "Margery Strong", + "gender": "female", + "age": 27, + "address": { + "state": "Kansas", + "city": "Vicksburg" + } + }, + { + "id": 7656, + "name": "Lorna Cruz", + "gender": "female", + "age": 31, + "address": { + "state": "Minnesota", + "city": "Groveville" + } + }, + { + "id": 7657, + "name": "Bolton Saunders", + "gender": "male", + "age": 27, + "address": { + "state": "Virginia", + "city": "Dorneyville" + } + }, + { + "id": 7658, + "name": "Eliza Malone", + "gender": "female", + "age": 42, + "address": { + "state": "Idaho", + "city": "Beechmont" + } + }, + { + "id": 7659, + "name": "Opal Fletcher", + "gender": "female", + "age": 23, + "address": { + "state": "Maryland", + "city": "Stonybrook" + } + }, + { + "id": 7660, + "name": "Tricia Manning", + "gender": "female", + "age": 46, + "address": { + "state": "Connecticut", + "city": "Broadlands" + } + }, + { + "id": 7661, + "name": "Drake Ortega", + "gender": "male", + "age": 49, + "address": { + "state": "Massachusetts", + "city": "Robinette" + } + }, + { + "id": 7662, + "name": "Shauna Lawson", + "gender": "female", + "age": 73, + "address": { + "state": "Louisiana", + "city": "Oneida" + } + }, + { + "id": 7663, + "name": "Lindsay Olson", + "gender": "female", + "age": 26, + "address": { + "state": "Rhode Island", + "city": "Dellview" + } + }, + { + "id": 7664, + "name": "Rollins Taylor", + "gender": "male", + "age": 34, + "address": { + "state": "Nebraska", + "city": "Gibsonia" + } + }, + { + "id": 7665, + "name": "Burns Briggs", + "gender": "male", + "age": 22, + "address": { + "state": "Mississippi", + "city": "Bowden" + } + }, + { + "id": 7666, + "name": "Hicks Holloway", + "gender": "male", + "age": 71, + "address": { + "state": "New Hampshire", + "city": "Leland" + } + }, + { + "id": 7667, + "name": "Patty Hunt", + "gender": "female", + "age": 45, + "address": { + "state": "South Dakota", + "city": "Chautauqua" + } + }, + { + "id": 7668, + "name": "Maude Burch", + "gender": "female", + "age": 18, + "address": { + "state": "Oklahoma", + "city": "Vandiver" + } + }, + { + "id": 7669, + "name": "Ware Mcbride", + "gender": "male", + "age": 43, + "address": { + "state": "Arizona", + "city": "Dale" + } + }, + { + "id": 7670, + "name": "Jessica Alvarado", + "gender": "female", + "age": 61, + "address": { + "state": "New York", + "city": "Herbster" + } + }, + { + "id": 7671, + "name": "Freda Drake", + "gender": "female", + "age": 41, + "address": { + "state": "Colorado", + "city": "Thynedale" + } + }, + { + "id": 7672, + "name": "Angelica Gregory", + "gender": "female", + "age": 34, + "address": { + "state": "New Mexico", + "city": "Hiko" + } + }, + { + "id": 7673, + "name": "Tyler Kane", + "gender": "male", + "age": 42, + "address": { + "state": "Iowa", + "city": "Robinson" + } + }, + { + "id": 7674, + "name": "Webster Hicks", + "gender": "male", + "age": 48, + "address": { + "state": "Alaska", + "city": "Limestone" + } + }, + { + "id": 7675, + "name": "Guadalupe Mathis", + "gender": "female", + "age": 55, + "address": { + "state": "Hawaii", + "city": "Waikele" + } + }, + { + "id": 7676, + "name": "Polly Gamble", + "gender": "female", + "age": 68, + "address": { + "state": "Nevada", + "city": "Dola" + } + }, + { + "id": 7677, + "name": "Black Marshall", + "gender": "male", + "age": 39, + "address": { + "state": "Vermont", + "city": "Blodgett" + } + }, + { + "id": 7678, + "name": "Stephanie Richmond", + "gender": "female", + "age": 30, + "address": { + "state": "Kentucky", + "city": "Forbestown" + } + }, + { + "id": 7679, + "name": "Lynch Miller", + "gender": "male", + "age": 73, + "address": { + "state": "Washington", + "city": "Geyserville" + } + }, + { + "id": 7680, + "name": "Bowen Davenport", + "gender": "male", + "age": 76, + "address": { + "state": "Wyoming", + "city": "Orviston" + } + }, + { + "id": 7681, + "name": "Mccarty Mayer", + "gender": "male", + "age": 59, + "address": { + "state": "Ohio", + "city": "Jamestown" + } + }, + { + "id": 7682, + "name": "Fry Patterson", + "gender": "male", + "age": 47, + "address": { + "state": "Michigan", + "city": "Cochranville" + } + }, + { + "id": 7683, + "name": "Norris Flynn", + "gender": "male", + "age": 55, + "address": { + "state": "Delaware", + "city": "Finderne" + } + }, + { + "id": 7684, + "name": "Tammy Kirkland", + "gender": "female", + "age": 64, + "address": { + "state": "Montana", + "city": "Walland" + } + }, + { + "id": 7685, + "name": "Roberson Golden", + "gender": "male", + "age": 26, + "address": { + "state": "North Dakota", + "city": "Chaparrito" + } + }, + { + "id": 7686, + "name": "Gonzalez Mcneil", + "gender": "male", + "age": 24, + "address": { + "state": "Wisconsin", + "city": "Saranap" + } + }, + { + "id": 7687, + "name": "Reese Wood", + "gender": "male", + "age": 30, + "address": { + "state": "Oregon", + "city": "Oretta" + } + }, + { + "id": 7688, + "name": "Wright Monroe", + "gender": "male", + "age": 57, + "address": { + "state": "Pennsylvania", + "city": "Epworth" + } + }, + { + "id": 7689, + "name": "Guy Cantu", + "gender": "male", + "age": 25, + "address": { + "state": "Tennessee", + "city": "Advance" + } + }, + { + "id": 7690, + "name": "Melissa Harmon", + "gender": "female", + "age": 81, + "address": { + "state": "Illinois", + "city": "Corriganville" + } + }, + { + "id": 7691, + "name": "Cannon Moon", + "gender": "male", + "age": 50, + "address": { + "state": "Indiana", + "city": "Waterloo" + } + }, + { + "id": 7692, + "name": "Benson Vincent", + "gender": "male", + "age": 49, + "address": { + "state": "South Carolina", + "city": "Summerset" + } + }, + { + "id": 7693, + "name": "Marci Davidson", + "gender": "female", + "age": 34, + "address": { + "state": "Utah", + "city": "Caron" + } + }, + { + "id": 7694, + "name": "Rhea Strickland", + "gender": "female", + "age": 35, + "address": { + "state": "Kentucky", + "city": "Rivera" + } + }, + { + "id": 7695, + "name": "Holly Meadows", + "gender": "female", + "age": 64, + "address": { + "state": "Virginia", + "city": "Wescosville" + } + }, + { + "id": 7696, + "name": "Carson Hammond", + "gender": "male", + "age": 55, + "address": { + "state": "Missouri", + "city": "Kohatk" + } + }, + { + "id": 7697, + "name": "Adriana Fuller", + "gender": "female", + "age": 58, + "address": { + "state": "Delaware", + "city": "Canoochee" + } + }, + { + "id": 7698, + "name": "Wheeler Hernandez", + "gender": "male", + "age": 42, + "address": { + "state": "North Dakota", + "city": "Defiance" + } + }, + { + "id": 7699, + "name": "Wilma Mercer", + "gender": "female", + "age": 64, + "address": { + "state": "Massachusetts", + "city": "Curtice" + } + }, + { + "id": 7700, + "name": "Traci Glover", + "gender": "female", + "age": 49, + "address": { + "state": "Arkansas", + "city": "Wiscon" + } + }, + { + "id": 7701, + "name": "Tammy Stephens", + "gender": "female", + "age": 57, + "address": { + "state": "West Virginia", + "city": "Stevens" + } + }, + { + "id": 7702, + "name": "Kelley Mccormick", + "gender": "female", + "age": 29, + "address": { + "state": "Georgia", + "city": "Edenburg" + } + }, + { + "id": 7703, + "name": "Susan Gordon", + "gender": "female", + "age": 58, + "address": { + "state": "New Jersey", + "city": "Choctaw" + } + }, + { + "id": 7704, + "name": "Adeline Kemp", + "gender": "female", + "age": 80, + "address": { + "state": "Tennessee", + "city": "Interlochen" + } + }, + { + "id": 7705, + "name": "Coleman Farley", + "gender": "male", + "age": 37, + "address": { + "state": "New Mexico", + "city": "Thomasville" + } + }, + { + "id": 7706, + "name": "Sandy Bennett", + "gender": "female", + "age": 31, + "address": { + "state": "Florida", + "city": "Winston" + } + }, + { + "id": 7707, + "name": "Kathy Banks", + "gender": "female", + "age": 38, + "address": { + "state": "Alaska", + "city": "Skyland" + } + }, + { + "id": 7708, + "name": "Hanson Lancaster", + "gender": "male", + "age": 66, + "address": { + "state": "Texas", + "city": "Valle" + } + }, + { + "id": 7709, + "name": "Pittman Wiley", + "gender": "male", + "age": 68, + "address": { + "state": "Illinois", + "city": "Strong" + } + }, + { + "id": 7710, + "name": "Darlene Leach", + "gender": "female", + "age": 56, + "address": { + "state": "Colorado", + "city": "Madaket" + } + }, + { + "id": 7711, + "name": "Ida Sargent", + "gender": "female", + "age": 57, + "address": { + "state": "Indiana", + "city": "Foscoe" + } + }, + { + "id": 7712, + "name": "David Fernandez", + "gender": "male", + "age": 78, + "address": { + "state": "Nevada", + "city": "Fingerville" + } + }, + { + "id": 7713, + "name": "Bennett Kaufman", + "gender": "male", + "age": 57, + "address": { + "state": "Oregon", + "city": "Ruckersville" + } + }, + { + "id": 7714, + "name": "Twila Bean", + "gender": "female", + "age": 78, + "address": { + "state": "Wyoming", + "city": "Caroline" + } + }, + { + "id": 7715, + "name": "Nichols Dickerson", + "gender": "male", + "age": 35, + "address": { + "state": "Nebraska", + "city": "Day" + } + }, + { + "id": 7716, + "name": "Medina Richardson", + "gender": "male", + "age": 59, + "address": { + "state": "Alabama", + "city": "Wells" + } + }, + { + "id": 7717, + "name": "Julie Hays", + "gender": "female", + "age": 20, + "address": { + "state": "Vermont", + "city": "Trail" + } + }, + { + "id": 7718, + "name": "Carroll Morrow", + "gender": "male", + "age": 59, + "address": { + "state": "Connecticut", + "city": "Bynum" + } + }, + { + "id": 7719, + "name": "Consuelo Hurley", + "gender": "female", + "age": 74, + "address": { + "state": "Arizona", + "city": "Lupton" + } + }, + { + "id": 7720, + "name": "Everett Valenzuela", + "gender": "male", + "age": 40, + "address": { + "state": "Wisconsin", + "city": "Lopezo" + } + }, + { + "id": 7721, + "name": "Avila Rios", + "gender": "male", + "age": 72, + "address": { + "state": "New Hampshire", + "city": "Muir" + } + }, + { + "id": 7722, + "name": "Webb Odom", + "gender": "male", + "age": 52, + "address": { + "state": "New York", + "city": "Aberdeen" + } + }, + { + "id": 7723, + "name": "Monica Vazquez", + "gender": "female", + "age": 36, + "address": { + "state": "Mississippi", + "city": "Shindler" + } + }, + { + "id": 7724, + "name": "Brennan Chang", + "gender": "male", + "age": 47, + "address": { + "state": "Idaho", + "city": "Dexter" + } + }, + { + "id": 7725, + "name": "Josephine Lloyd", + "gender": "female", + "age": 52, + "address": { + "state": "Montana", + "city": "Goodville" + } + }, + { + "id": 7726, + "name": "Jacqueline Perez", + "gender": "female", + "age": 19, + "address": { + "state": "Maine", + "city": "Coral" + } + }, + { + "id": 7727, + "name": "Mcclure Pitts", + "gender": "male", + "age": 48, + "address": { + "state": "Oklahoma", + "city": "Courtland" + } + }, + { + "id": 7728, + "name": "Blanchard Ramos", + "gender": "male", + "age": 54, + "address": { + "state": "Ohio", + "city": "Rivers" + } + }, + { + "id": 7729, + "name": "Melody Howe", + "gender": "female", + "age": 52, + "address": { + "state": "South Dakota", + "city": "Winfred" + } + }, + { + "id": 7730, + "name": "Blake Burns", + "gender": "male", + "age": 63, + "address": { + "state": "Louisiana", + "city": "Grayhawk" + } + }, + { + "id": 7731, + "name": "Gloria Guerra", + "gender": "female", + "age": 72, + "address": { + "state": "Michigan", + "city": "Bowie" + } + }, + { + "id": 7732, + "name": "Stuart Rivera", + "gender": "male", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Salix" + } + }, + { + "id": 7733, + "name": "Blackburn Yates", + "gender": "male", + "age": 66, + "address": { + "state": "North Carolina", + "city": "Edmund" + } + }, + { + "id": 7734, + "name": "Lambert Owen", + "gender": "male", + "age": 27, + "address": { + "state": "Maryland", + "city": "Richford" + } + }, + { + "id": 7735, + "name": "Pate Montgomery", + "gender": "male", + "age": 18, + "address": { + "state": "Hawaii", + "city": "Otranto" + } + }, + { + "id": 7736, + "name": "Valencia Kirk", + "gender": "male", + "age": 17, + "address": { + "state": "Pennsylvania", + "city": "Elfrida" + } + }, + { + "id": 7737, + "name": "Spence Harrington", + "gender": "male", + "age": 41, + "address": { + "state": "California", + "city": "Russellville" + } + }, + { + "id": 7738, + "name": "Stevenson Haley", + "gender": "male", + "age": 75, + "address": { + "state": "Minnesota", + "city": "Dellview" + } + }, + { + "id": 7739, + "name": "Noemi Foley", + "gender": "female", + "age": 28, + "address": { + "state": "South Carolina", + "city": "Nipinnawasee" + } + }, + { + "id": 7740, + "name": "Irene Chandler", + "gender": "female", + "age": 70, + "address": { + "state": "Kansas", + "city": "Lindisfarne" + } + }, + { + "id": 7741, + "name": "Carmen Johns", + "gender": "female", + "age": 23, + "address": { + "state": "Iowa", + "city": "Albany" + } + }, + { + "id": 7742, + "name": "Massey Nieves", + "gender": "male", + "age": 64, + "address": { + "state": "Texas", + "city": "Kiskimere" + } + }, + { + "id": 7743, + "name": "Deirdre Reeves", + "gender": "female", + "age": 79, + "address": { + "state": "Michigan", + "city": "Hessville" + } + }, + { + "id": 7744, + "name": "Walsh Garza", + "gender": "male", + "age": 62, + "address": { + "state": "Delaware", + "city": "Morgandale" + } + }, + { + "id": 7745, + "name": "Harding Wiley", + "gender": "male", + "age": 49, + "address": { + "state": "Washington", + "city": "Frystown" + } + }, + { + "id": 7746, + "name": "Guadalupe Hopkins", + "gender": "female", + "age": 27, + "address": { + "state": "Hawaii", + "city": "Gila" + } + }, + { + "id": 7747, + "name": "Welch Todd", + "gender": "male", + "age": 80, + "address": { + "state": "Wyoming", + "city": "Grantville" + } + }, + { + "id": 7748, + "name": "Neal Carver", + "gender": "male", + "age": 26, + "address": { + "state": "Utah", + "city": "Bartley" + } + }, + { + "id": 7749, + "name": "Ruby Wood", + "gender": "female", + "age": 26, + "address": { + "state": "Oklahoma", + "city": "Motley" + } + }, + { + "id": 7750, + "name": "Beard Carlson", + "gender": "male", + "age": 80, + "address": { + "state": "North Dakota", + "city": "Slovan" + } + }, + { + "id": 7751, + "name": "Hutchinson Myers", + "gender": "male", + "age": 75, + "address": { + "state": "Illinois", + "city": "Masthope" + } + }, + { + "id": 7752, + "name": "Bettie Hill", + "gender": "female", + "age": 20, + "address": { + "state": "Montana", + "city": "Imperial" + } + }, + { + "id": 7753, + "name": "Vazquez Franks", + "gender": "male", + "age": 78, + "address": { + "state": "West Virginia", + "city": "Rosine" + } + }, + { + "id": 7754, + "name": "Enid Davidson", + "gender": "female", + "age": 33, + "address": { + "state": "New York", + "city": "Starks" + } + }, + { + "id": 7755, + "name": "Jolene Rodriquez", + "gender": "female", + "age": 49, + "address": { + "state": "Mississippi", + "city": "Robinson" + } + }, + { + "id": 7756, + "name": "Rosalyn Townsend", + "gender": "female", + "age": 50, + "address": { + "state": "Kansas", + "city": "Leyner" + } + }, + { + "id": 7757, + "name": "Jacklyn Shepherd", + "gender": "female", + "age": 20, + "address": { + "state": "Arkansas", + "city": "Hayes" + } + }, + { + "id": 7758, + "name": "Melissa Graham", + "gender": "female", + "age": 19, + "address": { + "state": "Massachusetts", + "city": "Barronett" + } + }, + { + "id": 7759, + "name": "Snow Doyle", + "gender": "male", + "age": 53, + "address": { + "state": "Missouri", + "city": "Dubois" + } + }, + { + "id": 7760, + "name": "Walker Christensen", + "gender": "male", + "age": 52, + "address": { + "state": "California", + "city": "Baden" + } + }, + { + "id": 7761, + "name": "Kay Short", + "gender": "female", + "age": 44, + "address": { + "state": "New Hampshire", + "city": "Dunbar" + } + }, + { + "id": 7762, + "name": "Sheri Tyler", + "gender": "female", + "age": 58, + "address": { + "state": "Rhode Island", + "city": "Trexlertown" + } + }, + { + "id": 7763, + "name": "Olsen Cervantes", + "gender": "male", + "age": 63, + "address": { + "state": "New Jersey", + "city": "Orovada" + } + }, + { + "id": 7764, + "name": "Holloway Burton", + "gender": "male", + "age": 82, + "address": { + "state": "Alaska", + "city": "Haring" + } + }, + { + "id": 7765, + "name": "Roy Cox", + "gender": "male", + "age": 70, + "address": { + "state": "Pennsylvania", + "city": "Ruckersville" + } + }, + { + "id": 7766, + "name": "Angela Burch", + "gender": "female", + "age": 24, + "address": { + "state": "Arizona", + "city": "Vincent" + } + }, + { + "id": 7767, + "name": "Charlotte Carroll", + "gender": "female", + "age": 75, + "address": { + "state": "Georgia", + "city": "Southview" + } + }, + { + "id": 7768, + "name": "Gonzales Chaney", + "gender": "male", + "age": 53, + "address": { + "state": "South Carolina", + "city": "Santel" + } + }, + { + "id": 7769, + "name": "Hattie Knapp", + "gender": "female", + "age": 25, + "address": { + "state": "Louisiana", + "city": "Cresaptown" + } + }, + { + "id": 7770, + "name": "Jeanine Hartman", + "gender": "female", + "age": 66, + "address": { + "state": "Wisconsin", + "city": "Chilton" + } + }, + { + "id": 7771, + "name": "Melba Cannon", + "gender": "female", + "age": 39, + "address": { + "state": "Oregon", + "city": "Chestnut" + } + }, + { + "id": 7772, + "name": "Toni Pearson", + "gender": "female", + "age": 32, + "address": { + "state": "Tennessee", + "city": "Wheaton" + } + }, + { + "id": 7773, + "name": "Franco Wilcox", + "gender": "male", + "age": 65, + "address": { + "state": "Ohio", + "city": "Fulford" + } + }, + { + "id": 7774, + "name": "Joseph Cote", + "gender": "male", + "age": 51, + "address": { + "state": "Florida", + "city": "Tilden" + } + }, + { + "id": 7775, + "name": "Patricia Burgess", + "gender": "female", + "age": 51, + "address": { + "state": "Maine", + "city": "Accoville" + } + }, + { + "id": 7776, + "name": "Stephanie Mills", + "gender": "female", + "age": 31, + "address": { + "state": "Connecticut", + "city": "Veyo" + } + }, + { + "id": 7777, + "name": "Michael Eaton", + "gender": "female", + "age": 21, + "address": { + "state": "Alabama", + "city": "Trinway" + } + }, + { + "id": 7778, + "name": "Bridget Walsh", + "gender": "female", + "age": 72, + "address": { + "state": "Nebraska", + "city": "Bannock" + } + }, + { + "id": 7779, + "name": "Millie Clarke", + "gender": "female", + "age": 59, + "address": { + "state": "Kentucky", + "city": "Tuskahoma" + } + }, + { + "id": 7780, + "name": "Franks Hebert", + "gender": "male", + "age": 59, + "address": { + "state": "Idaho", + "city": "Englevale" + } + }, + { + "id": 7781, + "name": "Cathy Nguyen", + "gender": "female", + "age": 68, + "address": { + "state": "Maryland", + "city": "Hartsville/Hartley" + } + }, + { + "id": 7782, + "name": "Kerri Riggs", + "gender": "female", + "age": 17, + "address": { + "state": "Vermont", + "city": "Camptown" + } + }, + { + "id": 7783, + "name": "Nanette Aguilar", + "gender": "female", + "age": 43, + "address": { + "state": "Virginia", + "city": "Crayne" + } + }, + { + "id": 7784, + "name": "Oliver Douglas", + "gender": "male", + "age": 82, + "address": { + "state": "South Dakota", + "city": "Bowie" + } + }, + { + "id": 7785, + "name": "Sherrie Page", + "gender": "female", + "age": 41, + "address": { + "state": "Iowa", + "city": "Longoria" + } + }, + { + "id": 7786, + "name": "Mckinney Kirkland", + "gender": "male", + "age": 56, + "address": { + "state": "Colorado", + "city": "Callaghan" + } + }, + { + "id": 7787, + "name": "Lilian Abbott", + "gender": "female", + "age": 20, + "address": { + "state": "Indiana", + "city": "Marbury" + } + }, + { + "id": 7788, + "name": "Mcgowan Cain", + "gender": "male", + "age": 78, + "address": { + "state": "New Mexico", + "city": "Alleghenyville" + } + }, + { + "id": 7789, + "name": "Celia Duke", + "gender": "female", + "age": 80, + "address": { + "state": "Minnesota", + "city": "Falconaire" + } + }, + { + "id": 7790, + "name": "Hunter Bright", + "gender": "male", + "age": 58, + "address": { + "state": "Nevada", + "city": "Kempton" + } + }, + { + "id": 7791, + "name": "Ursula Long", + "gender": "female", + "age": 67, + "address": { + "state": "Florida", + "city": "Chumuckla" + } + }, + { + "id": 7792, + "name": "Saundra Roberson", + "gender": "female", + "age": 52, + "address": { + "state": "Georgia", + "city": "Albany" + } + }, + { + "id": 7793, + "name": "Clarke Mills", + "gender": "male", + "age": 31, + "address": { + "state": "Ohio", + "city": "Holcombe" + } + }, + { + "id": 7794, + "name": "Fuller Flowers", + "gender": "male", + "age": 21, + "address": { + "state": "Illinois", + "city": "Lisco" + } + }, + { + "id": 7795, + "name": "Aileen Horton", + "gender": "female", + "age": 20, + "address": { + "state": "Oregon", + "city": "Kilbourne" + } + }, + { + "id": 7796, + "name": "Moody Gross", + "gender": "male", + "age": 34, + "address": { + "state": "South Carolina", + "city": "Idledale" + } + }, + { + "id": 7797, + "name": "Bullock Vazquez", + "gender": "male", + "age": 38, + "address": { + "state": "Missouri", + "city": "Joppa" + } + }, + { + "id": 7798, + "name": "Claudine Roman", + "gender": "female", + "age": 26, + "address": { + "state": "Iowa", + "city": "Trona" + } + }, + { + "id": 7799, + "name": "Cecile Sawyer", + "gender": "female", + "age": 66, + "address": { + "state": "Colorado", + "city": "Brule" + } + }, + { + "id": 7800, + "name": "Rosemarie Tillman", + "gender": "female", + "age": 21, + "address": { + "state": "Mississippi", + "city": "Guilford" + } + }, + { + "id": 7801, + "name": "Lakisha Browning", + "gender": "female", + "age": 75, + "address": { + "state": "Maryland", + "city": "Camino" + } + }, + { + "id": 7802, + "name": "Leonor Mcgowan", + "gender": "female", + "age": 52, + "address": { + "state": "Oklahoma", + "city": "Tivoli" + } + }, + { + "id": 7803, + "name": "Imelda Gilmore", + "gender": "female", + "age": 59, + "address": { + "state": "Kansas", + "city": "Welda" + } + }, + { + "id": 7804, + "name": "Mcknight Kline", + "gender": "male", + "age": 31, + "address": { + "state": "South Dakota", + "city": "Forestburg" + } + }, + { + "id": 7805, + "name": "Josefina Bates", + "gender": "female", + "age": 80, + "address": { + "state": "Washington", + "city": "Oneida" + } + }, + { + "id": 7806, + "name": "Sandra Hodges", + "gender": "female", + "age": 22, + "address": { + "state": "Montana", + "city": "Grayhawk" + } + }, + { + "id": 7807, + "name": "Byers Romero", + "gender": "male", + "age": 48, + "address": { + "state": "Alaska", + "city": "Nipinnawasee" + } + }, + { + "id": 7808, + "name": "Figueroa Montoya", + "gender": "male", + "age": 71, + "address": { + "state": "Minnesota", + "city": "Sunnyside" + } + }, + { + "id": 7809, + "name": "Glover Robbins", + "gender": "male", + "age": 23, + "address": { + "state": "Massachusetts", + "city": "Thermal" + } + }, + { + "id": 7810, + "name": "Todd Elliott", + "gender": "male", + "age": 50, + "address": { + "state": "North Carolina", + "city": "Hilltop" + } + }, + { + "id": 7811, + "name": "Lupe Day", + "gender": "female", + "age": 34, + "address": { + "state": "Wisconsin", + "city": "Wanship" + } + }, + { + "id": 7812, + "name": "Sallie Davidson", + "gender": "female", + "age": 40, + "address": { + "state": "New Mexico", + "city": "Bawcomville" + } + }, + { + "id": 7813, + "name": "Bass Carr", + "gender": "male", + "age": 27, + "address": { + "state": "California", + "city": "Sultana" + } + }, + { + "id": 7814, + "name": "Galloway Baird", + "gender": "male", + "age": 75, + "address": { + "state": "Nebraska", + "city": "Brownlee" + } + }, + { + "id": 7815, + "name": "Alvarado Huffman", + "gender": "male", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Needmore" + } + }, + { + "id": 7816, + "name": "Ronda Robles", + "gender": "female", + "age": 23, + "address": { + "state": "Wyoming", + "city": "Wauhillau" + } + }, + { + "id": 7817, + "name": "Bonner Greene", + "gender": "male", + "age": 25, + "address": { + "state": "Virginia", + "city": "Deputy" + } + }, + { + "id": 7818, + "name": "Blanche Blankenship", + "gender": "female", + "age": 32, + "address": { + "state": "Indiana", + "city": "Osage" + } + }, + { + "id": 7819, + "name": "Terrell Blair", + "gender": "male", + "age": 29, + "address": { + "state": "Idaho", + "city": "Ernstville" + } + }, + { + "id": 7820, + "name": "Pam Walls", + "gender": "female", + "age": 37, + "address": { + "state": "New York", + "city": "Fingerville" + } + }, + { + "id": 7821, + "name": "Earnestine Little", + "gender": "female", + "age": 66, + "address": { + "state": "Utah", + "city": "Freeburn" + } + }, + { + "id": 7822, + "name": "Herrera Good", + "gender": "male", + "age": 74, + "address": { + "state": "North Dakota", + "city": "Rivers" + } + }, + { + "id": 7823, + "name": "Robert Hawkins", + "gender": "female", + "age": 47, + "address": { + "state": "New Jersey", + "city": "Grill" + } + }, + { + "id": 7824, + "name": "Alexandria Shelton", + "gender": "female", + "age": 58, + "address": { + "state": "Arkansas", + "city": "Levant" + } + }, + { + "id": 7825, + "name": "Bradford Nixon", + "gender": "male", + "age": 22, + "address": { + "state": "Texas", + "city": "Tampico" + } + }, + { + "id": 7826, + "name": "Navarro Gallagher", + "gender": "male", + "age": 65, + "address": { + "state": "Arizona", + "city": "Logan" + } + }, + { + "id": 7827, + "name": "Osborn Hendrix", + "gender": "male", + "age": 63, + "address": { + "state": "Maine", + "city": "Belleview" + } + }, + { + "id": 7828, + "name": "Mckinney Schultz", + "gender": "male", + "age": 27, + "address": { + "state": "Pennsylvania", + "city": "Chalfant" + } + }, + { + "id": 7829, + "name": "Kari Campbell", + "gender": "female", + "age": 58, + "address": { + "state": "Nevada", + "city": "Lodoga" + } + }, + { + "id": 7830, + "name": "Antonia Mercer", + "gender": "female", + "age": 17, + "address": { + "state": "Louisiana", + "city": "Marenisco" + } + }, + { + "id": 7831, + "name": "Hays Eaton", + "gender": "male", + "age": 45, + "address": { + "state": "Alabama", + "city": "Lopezo" + } + }, + { + "id": 7832, + "name": "Alisha Vance", + "gender": "female", + "age": 31, + "address": { + "state": "Vermont", + "city": "Graniteville" + } + }, + { + "id": 7833, + "name": "Wise Mccray", + "gender": "male", + "age": 33, + "address": { + "state": "Kentucky", + "city": "Juarez" + } + }, + { + "id": 7834, + "name": "Beasley Cruz", + "gender": "male", + "age": 34, + "address": { + "state": "Rhode Island", + "city": "Buxton" + } + }, + { + "id": 7835, + "name": "Rachel Velasquez", + "gender": "female", + "age": 68, + "address": { + "state": "Delaware", + "city": "Williamson" + } + }, + { + "id": 7836, + "name": "Underwood Wilson", + "gender": "male", + "age": 28, + "address": { + "state": "Connecticut", + "city": "Basye" + } + }, + { + "id": 7837, + "name": "Barlow Mullen", + "gender": "male", + "age": 79, + "address": { + "state": "Michigan", + "city": "Cuylerville" + } + }, + { + "id": 7838, + "name": "Marianne Fox", + "gender": "female", + "age": 19, + "address": { + "state": "New Hampshire", + "city": "Bethany" + } + }, + { + "id": 7839, + "name": "Cecilia Dixon", + "gender": "female", + "age": 36, + "address": { + "state": "West Virginia", + "city": "Sanford" + } + }, + { + "id": 7840, + "name": "Antoinette Wilder", + "gender": "female", + "age": 38, + "address": { + "state": "Kentucky", + "city": "Brambleton" + } + }, + { + "id": 7841, + "name": "Bright Bird", + "gender": "male", + "age": 53, + "address": { + "state": "Pennsylvania", + "city": "Grimsley" + } + }, + { + "id": 7842, + "name": "Craig Hardin", + "gender": "male", + "age": 47, + "address": { + "state": "South Carolina", + "city": "Wauhillau" + } + }, + { + "id": 7843, + "name": "Jenna Sexton", + "gender": "female", + "age": 32, + "address": { + "state": "Utah", + "city": "Chapin" + } + }, + { + "id": 7844, + "name": "Bertie Mccormick", + "gender": "female", + "age": 39, + "address": { + "state": "Mississippi", + "city": "Ernstville" + } + }, + { + "id": 7845, + "name": "Gray Sherman", + "gender": "male", + "age": 36, + "address": { + "state": "Wisconsin", + "city": "Deltaville" + } + }, + { + "id": 7846, + "name": "Byrd Kirk", + "gender": "male", + "age": 52, + "address": { + "state": "Missouri", + "city": "Northchase" + } + }, + { + "id": 7847, + "name": "Mckinney Estes", + "gender": "male", + "age": 33, + "address": { + "state": "Texas", + "city": "Disautel" + } + }, + { + "id": 7848, + "name": "Monroe Thornton", + "gender": "male", + "age": 24, + "address": { + "state": "Hawaii", + "city": "Remington" + } + }, + { + "id": 7849, + "name": "Warren Moses", + "gender": "male", + "age": 62, + "address": { + "state": "Nevada", + "city": "Whitehaven" + } + }, + { + "id": 7850, + "name": "Chandler Carver", + "gender": "male", + "age": 77, + "address": { + "state": "Michigan", + "city": "Enlow" + } + }, + { + "id": 7851, + "name": "Bethany Lang", + "gender": "female", + "age": 28, + "address": { + "state": "Maine", + "city": "Rockbridge" + } + }, + { + "id": 7852, + "name": "Ora Patton", + "gender": "female", + "age": 55, + "address": { + "state": "Vermont", + "city": "Chase" + } + }, + { + "id": 7853, + "name": "Sophia Mccoy", + "gender": "female", + "age": 37, + "address": { + "state": "Maryland", + "city": "Efland" + } + }, + { + "id": 7854, + "name": "Conner Hendricks", + "gender": "male", + "age": 71, + "address": { + "state": "South Dakota", + "city": "Fairlee" + } + }, + { + "id": 7855, + "name": "Barber Wooten", + "gender": "male", + "age": 64, + "address": { + "state": "Virginia", + "city": "Adamstown" + } + }, + { + "id": 7856, + "name": "Vivian Moss", + "gender": "female", + "age": 82, + "address": { + "state": "Connecticut", + "city": "Waterford" + } + }, + { + "id": 7857, + "name": "Angelica Johnston", + "gender": "female", + "age": 36, + "address": { + "state": "Tennessee", + "city": "Gwynn" + } + }, + { + "id": 7858, + "name": "Jill Suarez", + "gender": "female", + "age": 17, + "address": { + "state": "Oklahoma", + "city": "Weogufka" + } + }, + { + "id": 7859, + "name": "Tiffany Davidson", + "gender": "female", + "age": 38, + "address": { + "state": "Wyoming", + "city": "Vallonia" + } + }, + { + "id": 7860, + "name": "Phillips Pierce", + "gender": "male", + "age": 48, + "address": { + "state": "Minnesota", + "city": "Wiscon" + } + }, + { + "id": 7861, + "name": "Nora Sargent", + "gender": "female", + "age": 68, + "address": { + "state": "Georgia", + "city": "Lavalette" + } + }, + { + "id": 7862, + "name": "Liliana Chandler", + "gender": "female", + "age": 51, + "address": { + "state": "Rhode Island", + "city": "Bayview" + } + }, + { + "id": 7863, + "name": "Charles Pennington", + "gender": "male", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Whitestone" + } + }, + { + "id": 7864, + "name": "Alvarado Wiley", + "gender": "male", + "age": 47, + "address": { + "state": "Florida", + "city": "Groton" + } + }, + { + "id": 7865, + "name": "Stuart Medina", + "gender": "male", + "age": 42, + "address": { + "state": "Oregon", + "city": "Caln" + } + }, + { + "id": 7866, + "name": "Acevedo Ferrell", + "gender": "male", + "age": 46, + "address": { + "state": "Iowa", + "city": "Hanover" + } + }, + { + "id": 7867, + "name": "Sharron Mccarthy", + "gender": "female", + "age": 48, + "address": { + "state": "Delaware", + "city": "Caroline" + } + }, + { + "id": 7868, + "name": "Donovan Clark", + "gender": "male", + "age": 56, + "address": { + "state": "Kansas", + "city": "Dyckesville" + } + }, + { + "id": 7869, + "name": "Ana Aguilar", + "gender": "female", + "age": 21, + "address": { + "state": "Louisiana", + "city": "Blandburg" + } + }, + { + "id": 7870, + "name": "Adrienne Marshall", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Springhill" + } + }, + { + "id": 7871, + "name": "Lucia Small", + "gender": "female", + "age": 70, + "address": { + "state": "Arkansas", + "city": "Rosewood" + } + }, + { + "id": 7872, + "name": "Butler Rowe", + "gender": "male", + "age": 67, + "address": { + "state": "New York", + "city": "Osage" + } + }, + { + "id": 7873, + "name": "Mcdowell Park", + "gender": "male", + "age": 43, + "address": { + "state": "New Jersey", + "city": "Clinton" + } + }, + { + "id": 7874, + "name": "Erin Peck", + "gender": "female", + "age": 17, + "address": { + "state": "Indiana", + "city": "Jackpot" + } + }, + { + "id": 7875, + "name": "Rochelle Osborn", + "gender": "female", + "age": 80, + "address": { + "state": "New Mexico", + "city": "Fillmore" + } + }, + { + "id": 7876, + "name": "Bailey Gilbert", + "gender": "male", + "age": 54, + "address": { + "state": "Montana", + "city": "Needmore" + } + }, + { + "id": 7877, + "name": "Miranda Reid", + "gender": "male", + "age": 27, + "address": { + "state": "North Carolina", + "city": "Soudan" + } + }, + { + "id": 7878, + "name": "Leticia Horne", + "gender": "female", + "age": 31, + "address": { + "state": "Nebraska", + "city": "Edgar" + } + }, + { + "id": 7879, + "name": "Merrill Walton", + "gender": "male", + "age": 18, + "address": { + "state": "North Dakota", + "city": "Ada" + } + }, + { + "id": 7880, + "name": "Nichols Marquez", + "gender": "male", + "age": 19, + "address": { + "state": "Illinois", + "city": "Westwood" + } + }, + { + "id": 7881, + "name": "Judith Doyle", + "gender": "female", + "age": 22, + "address": { + "state": "Alaska", + "city": "Succasunna" + } + }, + { + "id": 7882, + "name": "Baldwin Vang", + "gender": "male", + "age": 24, + "address": { + "state": "Alabama", + "city": "Boling" + } + }, + { + "id": 7883, + "name": "Carter Petty", + "gender": "male", + "age": 81, + "address": { + "state": "Massachusetts", + "city": "Ezel" + } + }, + { + "id": 7884, + "name": "Taylor Whitaker", + "gender": "female", + "age": 25, + "address": { + "state": "Washington", + "city": "Rowe" + } + }, + { + "id": 7885, + "name": "Estes Richmond", + "gender": "male", + "age": 64, + "address": { + "state": "Idaho", + "city": "Calpine" + } + }, + { + "id": 7886, + "name": "Alba Howe", + "gender": "female", + "age": 80, + "address": { + "state": "Arizona", + "city": "Cumberland" + } + }, + { + "id": 7887, + "name": "Elsie Bowen", + "gender": "female", + "age": 65, + "address": { + "state": "Colorado", + "city": "Stevens" + } + }, + { + "id": 7888, + "name": "Mona Ramos", + "gender": "female", + "age": 81, + "address": { + "state": "West Virginia", + "city": "Kraemer" + } + }, + { + "id": 7889, + "name": "Dorothea Franklin", + "gender": "female", + "age": 77, + "address": { + "state": "Wisconsin", + "city": "Vallonia" + } + }, + { + "id": 7890, + "name": "Griffin Preston", + "gender": "male", + "age": 27, + "address": { + "state": "Idaho", + "city": "Fulford" + } + }, + { + "id": 7891, + "name": "Alyson Witt", + "gender": "female", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Crawfordsville" + } + }, + { + "id": 7892, + "name": "Olga Marquez", + "gender": "female", + "age": 46, + "address": { + "state": "Iowa", + "city": "Rivereno" + } + }, + { + "id": 7893, + "name": "Aguirre Abbott", + "gender": "male", + "age": 34, + "address": { + "state": "Michigan", + "city": "Greenfields" + } + }, + { + "id": 7894, + "name": "Alexandra Trujillo", + "gender": "female", + "age": 63, + "address": { + "state": "Illinois", + "city": "Mathews" + } + }, + { + "id": 7895, + "name": "Annette Riley", + "gender": "female", + "age": 35, + "address": { + "state": "Oregon", + "city": "Downsville" + } + }, + { + "id": 7896, + "name": "Jacobson Cooke", + "gender": "male", + "age": 80, + "address": { + "state": "Indiana", + "city": "Warsaw" + } + }, + { + "id": 7897, + "name": "Nona Cox", + "gender": "female", + "age": 38, + "address": { + "state": "Hawaii", + "city": "Lund" + } + }, + { + "id": 7898, + "name": "Peggy Lawson", + "gender": "female", + "age": 71, + "address": { + "state": "Vermont", + "city": "Calverton" + } + }, + { + "id": 7899, + "name": "Effie Jefferson", + "gender": "female", + "age": 60, + "address": { + "state": "Nevada", + "city": "Nescatunga" + } + }, + { + "id": 7900, + "name": "Hines Bartlett", + "gender": "male", + "age": 51, + "address": { + "state": "Maryland", + "city": "Fostoria" + } + }, + { + "id": 7901, + "name": "Joyce Guy", + "gender": "male", + "age": 20, + "address": { + "state": "Nebraska", + "city": "Lowell" + } + }, + { + "id": 7902, + "name": "Kelsey Jarvis", + "gender": "female", + "age": 79, + "address": { + "state": "North Carolina", + "city": "Leola" + } + }, + { + "id": 7903, + "name": "Melanie Gaines", + "gender": "female", + "age": 46, + "address": { + "state": "Kansas", + "city": "Brownsville" + } + }, + { + "id": 7904, + "name": "Wendy Hardy", + "gender": "female", + "age": 49, + "address": { + "state": "Louisiana", + "city": "Blanco" + } + }, + { + "id": 7905, + "name": "Witt Bullock", + "gender": "male", + "age": 22, + "address": { + "state": "New Hampshire", + "city": "Albany" + } + }, + { + "id": 7906, + "name": "French Morton", + "gender": "male", + "age": 17, + "address": { + "state": "Arizona", + "city": "Avalon" + } + }, + { + "id": 7907, + "name": "Benson Strickland", + "gender": "male", + "age": 66, + "address": { + "state": "South Dakota", + "city": "Jardine" + } + }, + { + "id": 7908, + "name": "Haley King", + "gender": "male", + "age": 75, + "address": { + "state": "Florida", + "city": "Ona" + } + }, + { + "id": 7909, + "name": "Carey Carey", + "gender": "female", + "age": 22, + "address": { + "state": "Mississippi", + "city": "Interlochen" + } + }, + { + "id": 7910, + "name": "Emilia Warren", + "gender": "female", + "age": 39, + "address": { + "state": "New Mexico", + "city": "Shelby" + } + }, + { + "id": 7911, + "name": "Christy Daniels", + "gender": "female", + "age": 74, + "address": { + "state": "Virginia", + "city": "Bluffview" + } + }, + { + "id": 7912, + "name": "Stefanie Dickerson", + "gender": "female", + "age": 28, + "address": { + "state": "Washington", + "city": "Jeff" + } + }, + { + "id": 7913, + "name": "Graham Brooks", + "gender": "male", + "age": 29, + "address": { + "state": "South Carolina", + "city": "Sunriver" + } + }, + { + "id": 7914, + "name": "Hahn Parsons", + "gender": "male", + "age": 56, + "address": { + "state": "Missouri", + "city": "Washington" + } + }, + { + "id": 7915, + "name": "Davis Stein", + "gender": "male", + "age": 39, + "address": { + "state": "West Virginia", + "city": "Callaghan" + } + }, + { + "id": 7916, + "name": "Slater Gross", + "gender": "male", + "age": 60, + "address": { + "state": "Alabama", + "city": "Roulette" + } + }, + { + "id": 7917, + "name": "Bradley Barron", + "gender": "male", + "age": 43, + "address": { + "state": "Massachusetts", + "city": "Ezel" + } + }, + { + "id": 7918, + "name": "Wright Acosta", + "gender": "male", + "age": 50, + "address": { + "state": "Delaware", + "city": "Statenville" + } + }, + { + "id": 7919, + "name": "Singleton Poole", + "gender": "male", + "age": 25, + "address": { + "state": "Pennsylvania", + "city": "Summerset" + } + }, + { + "id": 7920, + "name": "Campbell Pruitt", + "gender": "male", + "age": 17, + "address": { + "state": "New York", + "city": "Mayfair" + } + }, + { + "id": 7921, + "name": "Silvia Kelly", + "gender": "female", + "age": 34, + "address": { + "state": "California", + "city": "Camas" + } + }, + { + "id": 7922, + "name": "Callie Olsen", + "gender": "female", + "age": 17, + "address": { + "state": "Minnesota", + "city": "Toftrees" + } + }, + { + "id": 7923, + "name": "Viola Dunlap", + "gender": "female", + "age": 32, + "address": { + "state": "Maine", + "city": "Gorham" + } + }, + { + "id": 7924, + "name": "Marjorie Heath", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Townsend" + } + }, + { + "id": 7925, + "name": "Craig Lowery", + "gender": "male", + "age": 34, + "address": { + "state": "Utah", + "city": "Drytown" + } + }, + { + "id": 7926, + "name": "Roberts Holman", + "gender": "male", + "age": 64, + "address": { + "state": "Arkansas", + "city": "Wildwood" + } + }, + { + "id": 7927, + "name": "Blankenship Callahan", + "gender": "male", + "age": 75, + "address": { + "state": "Connecticut", + "city": "Rose" + } + }, + { + "id": 7928, + "name": "Hess Sellers", + "gender": "male", + "age": 70, + "address": { + "state": "Rhode Island", + "city": "Glendale" + } + }, + { + "id": 7929, + "name": "Emma Beard", + "gender": "female", + "age": 70, + "address": { + "state": "Kentucky", + "city": "Seymour" + } + }, + { + "id": 7930, + "name": "Orr Robles", + "gender": "male", + "age": 24, + "address": { + "state": "Colorado", + "city": "Cascades" + } + }, + { + "id": 7931, + "name": "Louise Donovan", + "gender": "female", + "age": 53, + "address": { + "state": "Tennessee", + "city": "Dahlen" + } + }, + { + "id": 7932, + "name": "Hull Mcdaniel", + "gender": "male", + "age": 52, + "address": { + "state": "Texas", + "city": "Darbydale" + } + }, + { + "id": 7933, + "name": "Lucile Charles", + "gender": "female", + "age": 26, + "address": { + "state": "Wyoming", + "city": "Cetronia" + } + }, + { + "id": 7934, + "name": "Isabella Cooper", + "gender": "female", + "age": 38, + "address": { + "state": "Ohio", + "city": "Derwood" + } + }, + { + "id": 7935, + "name": "Ballard Johnson", + "gender": "male", + "age": 58, + "address": { + "state": "North Dakota", + "city": "Courtland" + } + }, + { + "id": 7936, + "name": "Ava Roy", + "gender": "female", + "age": 59, + "address": { + "state": "Montana", + "city": "Grayhawk" + } + }, + { + "id": 7937, + "name": "Paige Sharpe", + "gender": "female", + "age": 46, + "address": { + "state": "Alaska", + "city": "Marshall" + } + }, + { + "id": 7938, + "name": "Carrillo Gregory", + "gender": "male", + "age": 17, + "address": { + "state": "Washington", + "city": "Bend" + } + }, + { + "id": 7939, + "name": "Mullins Foster", + "gender": "male", + "age": 41, + "address": { + "state": "Montana", + "city": "Bison" + } + }, + { + "id": 7940, + "name": "Vaughn Oneil", + "gender": "male", + "age": 40, + "address": { + "state": "Maryland", + "city": "Herald" + } + }, + { + "id": 7941, + "name": "Mcdaniel Townsend", + "gender": "male", + "age": 48, + "address": { + "state": "Connecticut", + "city": "Herbster" + } + }, + { + "id": 7942, + "name": "Vickie Fry", + "gender": "female", + "age": 78, + "address": { + "state": "Alaska", + "city": "Carlos" + } + }, + { + "id": 7943, + "name": "Tamara Grimes", + "gender": "female", + "age": 54, + "address": { + "state": "Oklahoma", + "city": "Welch" + } + }, + { + "id": 7944, + "name": "Wheeler Bradshaw", + "gender": "male", + "age": 73, + "address": { + "state": "Maine", + "city": "Croom" + } + }, + { + "id": 7945, + "name": "Rachel Holt", + "gender": "female", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Gibbsville" + } + }, + { + "id": 7946, + "name": "Tate Barr", + "gender": "male", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Walland" + } + }, + { + "id": 7947, + "name": "Bradford Richardson", + "gender": "male", + "age": 40, + "address": { + "state": "Vermont", + "city": "Marysville" + } + }, + { + "id": 7948, + "name": "Mclean Duncan", + "gender": "male", + "age": 58, + "address": { + "state": "Louisiana", + "city": "Sunriver" + } + }, + { + "id": 7949, + "name": "Morse Horton", + "gender": "male", + "age": 27, + "address": { + "state": "Indiana", + "city": "Mansfield" + } + }, + { + "id": 7950, + "name": "Nikki Riggs", + "gender": "female", + "age": 72, + "address": { + "state": "California", + "city": "Wescosville" + } + }, + { + "id": 7951, + "name": "Carla Hart", + "gender": "female", + "age": 27, + "address": { + "state": "Massachusetts", + "city": "Thomasville" + } + }, + { + "id": 7952, + "name": "Kristi Mcintyre", + "gender": "female", + "age": 61, + "address": { + "state": "South Carolina", + "city": "Rockbridge" + } + }, + { + "id": 7953, + "name": "Myrtle Brown", + "gender": "female", + "age": 20, + "address": { + "state": "Oregon", + "city": "Comptche" + } + }, + { + "id": 7954, + "name": "Bernard Massey", + "gender": "male", + "age": 75, + "address": { + "state": "New Jersey", + "city": "Cornucopia" + } + }, + { + "id": 7955, + "name": "Gibbs Roberson", + "gender": "male", + "age": 76, + "address": { + "state": "Arkansas", + "city": "Hamilton" + } + }, + { + "id": 7956, + "name": "Velazquez Hogan", + "gender": "male", + "age": 38, + "address": { + "state": "Minnesota", + "city": "Summertown" + } + }, + { + "id": 7957, + "name": "Roxie Daniel", + "gender": "female", + "age": 35, + "address": { + "state": "West Virginia", + "city": "Kula" + } + }, + { + "id": 7958, + "name": "Dennis Sandoval", + "gender": "male", + "age": 56, + "address": { + "state": "Wisconsin", + "city": "Fruitdale" + } + }, + { + "id": 7959, + "name": "Denise Pope", + "gender": "female", + "age": 41, + "address": { + "state": "Wyoming", + "city": "Bangor" + } + }, + { + "id": 7960, + "name": "Velma Farley", + "gender": "female", + "age": 72, + "address": { + "state": "North Dakota", + "city": "Riviera" + } + }, + { + "id": 7961, + "name": "Jeanne Coleman", + "gender": "female", + "age": 33, + "address": { + "state": "Tennessee", + "city": "Tooleville" + } + }, + { + "id": 7962, + "name": "Jodi Velez", + "gender": "female", + "age": 31, + "address": { + "state": "Mississippi", + "city": "Gorst" + } + }, + { + "id": 7963, + "name": "Morrison Russo", + "gender": "male", + "age": 33, + "address": { + "state": "Hawaii", + "city": "Idamay" + } + }, + { + "id": 7964, + "name": "Katheryn Fisher", + "gender": "female", + "age": 74, + "address": { + "state": "Missouri", + "city": "Woodlands" + } + }, + { + "id": 7965, + "name": "Carter Castro", + "gender": "male", + "age": 79, + "address": { + "state": "Arizona", + "city": "Sheatown" + } + }, + { + "id": 7966, + "name": "Tammy Huber", + "gender": "female", + "age": 27, + "address": { + "state": "Georgia", + "city": "Caron" + } + }, + { + "id": 7967, + "name": "Stacy Whitley", + "gender": "female", + "age": 53, + "address": { + "state": "New Mexico", + "city": "Malott" + } + }, + { + "id": 7968, + "name": "Glover Valencia", + "gender": "male", + "age": 58, + "address": { + "state": "Nevada", + "city": "Oretta" + } + }, + { + "id": 7969, + "name": "Debora Crawford", + "gender": "female", + "age": 28, + "address": { + "state": "Rhode Island", + "city": "Cuylerville" + } + }, + { + "id": 7970, + "name": "Maureen Long", + "gender": "female", + "age": 42, + "address": { + "state": "Ohio", + "city": "Camino" + } + }, + { + "id": 7971, + "name": "Marilyn Lamb", + "gender": "female", + "age": 60, + "address": { + "state": "Kansas", + "city": "Santel" + } + }, + { + "id": 7972, + "name": "Kelley Parsons", + "gender": "female", + "age": 22, + "address": { + "state": "South Dakota", + "city": "Cavalero" + } + }, + { + "id": 7973, + "name": "Santana Floyd", + "gender": "male", + "age": 43, + "address": { + "state": "New York", + "city": "Alden" + } + }, + { + "id": 7974, + "name": "Hutchinson Lucas", + "gender": "male", + "age": 65, + "address": { + "state": "Colorado", + "city": "Trexlertown" + } + }, + { + "id": 7975, + "name": "Nadia Webb", + "gender": "female", + "age": 52, + "address": { + "state": "Utah", + "city": "Eggertsville" + } + }, + { + "id": 7976, + "name": "Adams Callahan", + "gender": "male", + "age": 23, + "address": { + "state": "Nebraska", + "city": "Kipp" + } + }, + { + "id": 7977, + "name": "Ollie Miles", + "gender": "female", + "age": 19, + "address": { + "state": "Texas", + "city": "Loretto" + } + }, + { + "id": 7978, + "name": "Margaret England", + "gender": "female", + "age": 66, + "address": { + "state": "Virginia", + "city": "Tivoli" + } + }, + { + "id": 7979, + "name": "Jimenez Galloway", + "gender": "male", + "age": 21, + "address": { + "state": "Kentucky", + "city": "Umapine" + } + }, + { + "id": 7980, + "name": "Fitzpatrick Stark", + "gender": "male", + "age": 62, + "address": { + "state": "Idaho", + "city": "Aberdeen" + } + }, + { + "id": 7981, + "name": "Ester Humphrey", + "gender": "female", + "age": 60, + "address": { + "state": "Delaware", + "city": "Haring" + } + }, + { + "id": 7982, + "name": "Mable Gray", + "gender": "female", + "age": 58, + "address": { + "state": "Alabama", + "city": "Barclay" + } + }, + { + "id": 7983, + "name": "Gladys Morrison", + "gender": "female", + "age": 70, + "address": { + "state": "Iowa", + "city": "Clinton" + } + }, + { + "id": 7984, + "name": "Mcmahon Juarez", + "gender": "male", + "age": 48, + "address": { + "state": "Illinois", + "city": "Yonah" + } + }, + { + "id": 7985, + "name": "Campos Preston", + "gender": "male", + "age": 59, + "address": { + "state": "Florida", + "city": "Bonanza" + } + }, + { + "id": 7986, + "name": "Donaldson Wilkerson", + "gender": "male", + "age": 65, + "address": { + "state": "New Hampshire", + "city": "Denio" + } + }, + { + "id": 7987, + "name": "Tran Hensley", + "gender": "male", + "age": 55, + "address": { + "state": "New Hampshire", + "city": "Croom" + } + }, + { + "id": 7988, + "name": "Teri Koch", + "gender": "female", + "age": 30, + "address": { + "state": "Mississippi", + "city": "Lafferty" + } + }, + { + "id": 7989, + "name": "Livingston Whitney", + "gender": "male", + "age": 59, + "address": { + "state": "Wyoming", + "city": "Chilton" + } + }, + { + "id": 7990, + "name": "Leonor Russell", + "gender": "female", + "age": 44, + "address": { + "state": "Florida", + "city": "Florence" + } + }, + { + "id": 7991, + "name": "Kayla Hayes", + "gender": "female", + "age": 33, + "address": { + "state": "Vermont", + "city": "Sunwest" + } + }, + { + "id": 7992, + "name": "Clara Daugherty", + "gender": "female", + "age": 18, + "address": { + "state": "Alabama", + "city": "Limestone" + } + }, + { + "id": 7993, + "name": "Curtis Black", + "gender": "male", + "age": 42, + "address": { + "state": "Georgia", + "city": "Oneida" + } + }, + { + "id": 7994, + "name": "Irene Orr", + "gender": "female", + "age": 39, + "address": { + "state": "Ohio", + "city": "Brutus" + } + }, + { + "id": 7995, + "name": "Wallace Grimes", + "gender": "male", + "age": 21, + "address": { + "state": "Illinois", + "city": "Ilchester" + } + }, + { + "id": 7996, + "name": "Beach Colon", + "gender": "male", + "age": 78, + "address": { + "state": "Idaho", + "city": "Osmond" + } + }, + { + "id": 7997, + "name": "Catalina Potts", + "gender": "female", + "age": 64, + "address": { + "state": "New York", + "city": "Tivoli" + } + }, + { + "id": 7998, + "name": "House Keller", + "gender": "male", + "age": 82, + "address": { + "state": "Virginia", + "city": "Tilden" + } + }, + { + "id": 7999, + "name": "Doreen Booth", + "gender": "female", + "age": 19, + "address": { + "state": "Maryland", + "city": "Lowgap" + } + }, + { + "id": 8000, + "name": "Ophelia Dickson", + "gender": "female", + "age": 59, + "address": { + "state": "New Jersey", + "city": "Lemoyne" + } + }, + { + "id": 8001, + "name": "Lela Warren", + "gender": "female", + "age": 32, + "address": { + "state": "Nevada", + "city": "Moraida" + } + }, + { + "id": 8002, + "name": "Leon Valencia", + "gender": "male", + "age": 21, + "address": { + "state": "Oregon", + "city": "Chelsea" + } + }, + { + "id": 8003, + "name": "Alisa Vaughn", + "gender": "female", + "age": 50, + "address": { + "state": "Wisconsin", + "city": "Graniteville" + } + }, + { + "id": 8004, + "name": "Morrison Blair", + "gender": "male", + "age": 58, + "address": { + "state": "Montana", + "city": "Nash" + } + }, + { + "id": 8005, + "name": "Ines Mercado", + "gender": "female", + "age": 52, + "address": { + "state": "North Dakota", + "city": "Eagletown" + } + }, + { + "id": 8006, + "name": "Ruth Stevenson", + "gender": "female", + "age": 59, + "address": { + "state": "Indiana", + "city": "Reno" + } + }, + { + "id": 8007, + "name": "Penny Douglas", + "gender": "female", + "age": 61, + "address": { + "state": "Iowa", + "city": "Nipinnawasee" + } + }, + { + "id": 8008, + "name": "Kemp Franklin", + "gender": "male", + "age": 66, + "address": { + "state": "Nebraska", + "city": "Jenkinsville" + } + }, + { + "id": 8009, + "name": "Mayo Gillespie", + "gender": "male", + "age": 77, + "address": { + "state": "Kentucky", + "city": "Delshire" + } + }, + { + "id": 8010, + "name": "Shauna Williamson", + "gender": "female", + "age": 65, + "address": { + "state": "Maine", + "city": "Conestoga" + } + }, + { + "id": 8011, + "name": "Tamika Flores", + "gender": "female", + "age": 33, + "address": { + "state": "Missouri", + "city": "Deercroft" + } + }, + { + "id": 8012, + "name": "Middleton Ramsey", + "gender": "male", + "age": 35, + "address": { + "state": "South Dakota", + "city": "Finzel" + } + }, + { + "id": 8013, + "name": "Kathrine Sloan", + "gender": "female", + "age": 42, + "address": { + "state": "California", + "city": "Taycheedah" + } + }, + { + "id": 8014, + "name": "Allyson Kirby", + "gender": "female", + "age": 79, + "address": { + "state": "South Carolina", + "city": "Harleigh" + } + }, + { + "id": 8015, + "name": "Bonner Kirkland", + "gender": "male", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Columbus" + } + }, + { + "id": 8016, + "name": "Reyna Cole", + "gender": "female", + "age": 74, + "address": { + "state": "North Carolina", + "city": "Zortman" + } + }, + { + "id": 8017, + "name": "Davis Klein", + "gender": "male", + "age": 78, + "address": { + "state": "Utah", + "city": "Beaverdale" + } + }, + { + "id": 8018, + "name": "Duke Mueller", + "gender": "male", + "age": 34, + "address": { + "state": "New Mexico", + "city": "Ferney" + } + }, + { + "id": 8019, + "name": "Skinner Mann", + "gender": "male", + "age": 68, + "address": { + "state": "Texas", + "city": "Rivers" + } + }, + { + "id": 8020, + "name": "Anthony Christian", + "gender": "male", + "age": 47, + "address": { + "state": "Colorado", + "city": "Farmington" + } + }, + { + "id": 8021, + "name": "Fran Ochoa", + "gender": "female", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Otranto" + } + }, + { + "id": 8022, + "name": "Wolf Carroll", + "gender": "male", + "age": 66, + "address": { + "state": "Oklahoma", + "city": "Dellview" + } + }, + { + "id": 8023, + "name": "Mercer Long", + "gender": "male", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Hemlock" + } + }, + { + "id": 8024, + "name": "Mona Lynn", + "gender": "female", + "age": 36, + "address": { + "state": "Minnesota", + "city": "Gilmore" + } + }, + { + "id": 8025, + "name": "Rasmussen Murray", + "gender": "male", + "age": 22, + "address": { + "state": "Delaware", + "city": "Clay" + } + }, + { + "id": 8026, + "name": "Zelma Yates", + "gender": "female", + "age": 20, + "address": { + "state": "Arkansas", + "city": "Mulberry" + } + }, + { + "id": 8027, + "name": "Dyer Lara", + "gender": "male", + "age": 20, + "address": { + "state": "Connecticut", + "city": "Boonville" + } + }, + { + "id": 8028, + "name": "Janice Stephens", + "gender": "female", + "age": 66, + "address": { + "state": "Kansas", + "city": "Utting" + } + }, + { + "id": 8029, + "name": "Christine Giles", + "gender": "female", + "age": 45, + "address": { + "state": "Rhode Island", + "city": "Bowden" + } + }, + { + "id": 8030, + "name": "Larsen Lowe", + "gender": "male", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Stevens" + } + }, + { + "id": 8031, + "name": "Wyatt Heath", + "gender": "male", + "age": 73, + "address": { + "state": "Alaska", + "city": "Callaghan" + } + }, + { + "id": 8032, + "name": "Mable Solis", + "gender": "female", + "age": 76, + "address": { + "state": "Michigan", + "city": "Woodlands" + } + }, + { + "id": 8033, + "name": "Katherine Snider", + "gender": "female", + "age": 18, + "address": { + "state": "Washington", + "city": "Bartley" + } + }, + { + "id": 8034, + "name": "Valentine Pratt", + "gender": "male", + "age": 70, + "address": { + "state": "Arizona", + "city": "Roberts" + } + }, + { + "id": 8035, + "name": "Kristine Clemons", + "gender": "female", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Coyote" + } + }, + { + "id": 8036, + "name": "Carla Leon", + "gender": "female", + "age": 75, + "address": { + "state": "Hawaii", + "city": "Gardiner" + } + }, + { + "id": 8037, + "name": "Griffin Vincent", + "gender": "male", + "age": 33, + "address": { + "state": "Pennsylvania", + "city": "Zarephath" + } + }, + { + "id": 8038, + "name": "Luella Knapp", + "gender": "female", + "age": 40, + "address": { + "state": "Maine", + "city": "Helen" + } + }, + { + "id": 8039, + "name": "Campos Morse", + "gender": "male", + "age": 51, + "address": { + "state": "West Virginia", + "city": "Trona" + } + }, + { + "id": 8040, + "name": "Lindsay Garrett", + "gender": "male", + "age": 48, + "address": { + "state": "Oklahoma", + "city": "Kenvil" + } + }, + { + "id": 8041, + "name": "Tanisha Davenport", + "gender": "female", + "age": 29, + "address": { + "state": "Missouri", + "city": "Waiohinu" + } + }, + { + "id": 8042, + "name": "Patty Hopper", + "gender": "female", + "age": 63, + "address": { + "state": "Louisiana", + "city": "Teasdale" + } + }, + { + "id": 8043, + "name": "Virginia Barry", + "gender": "female", + "age": 24, + "address": { + "state": "Colorado", + "city": "Bordelonville" + } + }, + { + "id": 8044, + "name": "Lindsay Koch", + "gender": "female", + "age": 64, + "address": { + "state": "Idaho", + "city": "Onton" + } + }, + { + "id": 8045, + "name": "Lupe Martinez", + "gender": "female", + "age": 36, + "address": { + "state": "Michigan", + "city": "Waterview" + } + }, + { + "id": 8046, + "name": "Amanda Massey", + "gender": "female", + "age": 81, + "address": { + "state": "Kentucky", + "city": "Maplewood" + } + }, + { + "id": 8047, + "name": "Lara Oliver", + "gender": "female", + "age": 45, + "address": { + "state": "Wisconsin", + "city": "Sidman" + } + }, + { + "id": 8048, + "name": "Sherrie Mccarty", + "gender": "female", + "age": 59, + "address": { + "state": "Indiana", + "city": "Cliff" + } + }, + { + "id": 8049, + "name": "Jody Stewart", + "gender": "female", + "age": 53, + "address": { + "state": "Illinois", + "city": "Tyro" + } + }, + { + "id": 8050, + "name": "Myrna Flowers", + "gender": "female", + "age": 52, + "address": { + "state": "Georgia", + "city": "Vicksburg" + } + }, + { + "id": 8051, + "name": "Garrison Sharp", + "gender": "male", + "age": 68, + "address": { + "state": "Delaware", + "city": "Grimsley" + } + }, + { + "id": 8052, + "name": "Maxwell Bush", + "gender": "male", + "age": 75, + "address": { + "state": "Nebraska", + "city": "Conestoga" + } + }, + { + "id": 8053, + "name": "Kelly Kerr", + "gender": "male", + "age": 26, + "address": { + "state": "Maryland", + "city": "Hanover" + } + }, + { + "id": 8054, + "name": "Hughes Warren", + "gender": "male", + "age": 77, + "address": { + "state": "Tennessee", + "city": "Bascom" + } + }, + { + "id": 8055, + "name": "Frieda Hall", + "gender": "female", + "age": 31, + "address": { + "state": "Florida", + "city": "Saticoy" + } + }, + { + "id": 8056, + "name": "Herman Whitaker", + "gender": "male", + "age": 62, + "address": { + "state": "Alabama", + "city": "Witmer" + } + }, + { + "id": 8057, + "name": "Rocha Velez", + "gender": "male", + "age": 25, + "address": { + "state": "South Carolina", + "city": "Duryea" + } + }, + { + "id": 8058, + "name": "Madge Conrad", + "gender": "female", + "age": 20, + "address": { + "state": "Oregon", + "city": "Bonanza" + } + }, + { + "id": 8059, + "name": "Rich Roberson", + "gender": "male", + "age": 52, + "address": { + "state": "Arizona", + "city": "Faywood" + } + }, + { + "id": 8060, + "name": "Lina Marsh", + "gender": "female", + "age": 21, + "address": { + "state": "Utah", + "city": "Bourg" + } + }, + { + "id": 8061, + "name": "Sawyer Perkins", + "gender": "male", + "age": 35, + "address": { + "state": "North Dakota", + "city": "Edgar" + } + }, + { + "id": 8062, + "name": "Rachael Dixon", + "gender": "female", + "age": 23, + "address": { + "state": "New Mexico", + "city": "Clara" + } + }, + { + "id": 8063, + "name": "Rogers Patton", + "gender": "male", + "age": 60, + "address": { + "state": "New Jersey", + "city": "Calpine" + } + }, + { + "id": 8064, + "name": "Leanna Levy", + "gender": "female", + "age": 54, + "address": { + "state": "California", + "city": "Joppa" + } + }, + { + "id": 8065, + "name": "Margaret Glover", + "gender": "female", + "age": 24, + "address": { + "state": "Minnesota", + "city": "Montura" + } + }, + { + "id": 8066, + "name": "Ward Duran", + "gender": "male", + "age": 18, + "address": { + "state": "Iowa", + "city": "Joes" + } + }, + { + "id": 8067, + "name": "Walls York", + "gender": "male", + "age": 35, + "address": { + "state": "Montana", + "city": "Defiance" + } + }, + { + "id": 8068, + "name": "Cook Ford", + "gender": "male", + "age": 71, + "address": { + "state": "Ohio", + "city": "Oceola" + } + }, + { + "id": 8069, + "name": "Lora Case", + "gender": "female", + "age": 61, + "address": { + "state": "Vermont", + "city": "Freetown" + } + }, + { + "id": 8070, + "name": "Rhoda Wilkerson", + "gender": "female", + "age": 57, + "address": { + "state": "South Dakota", + "city": "Wildwood" + } + }, + { + "id": 8071, + "name": "Edwards Mcconnell", + "gender": "male", + "age": 17, + "address": { + "state": "Texas", + "city": "Concho" + } + }, + { + "id": 8072, + "name": "Rosa Callahan", + "gender": "male", + "age": 76, + "address": { + "state": "New Hampshire", + "city": "Durham" + } + }, + { + "id": 8073, + "name": "Alvarez Roach", + "gender": "male", + "age": 73, + "address": { + "state": "Mississippi", + "city": "Ada" + } + }, + { + "id": 8074, + "name": "Leila Cohen", + "gender": "female", + "age": 38, + "address": { + "state": "Virginia", + "city": "Clinton" + } + }, + { + "id": 8075, + "name": "Thomas Owen", + "gender": "male", + "age": 58, + "address": { + "state": "Washington", + "city": "Eggertsville" + } + }, + { + "id": 8076, + "name": "Tillman Pace", + "gender": "male", + "age": 71, + "address": { + "state": "Nevada", + "city": "Rehrersburg" + } + }, + { + "id": 8077, + "name": "Burt Horton", + "gender": "male", + "age": 81, + "address": { + "state": "Connecticut", + "city": "Sattley" + } + }, + { + "id": 8078, + "name": "Mills Cabrera", + "gender": "male", + "age": 35, + "address": { + "state": "Wyoming", + "city": "Gwynn" + } + }, + { + "id": 8079, + "name": "Delacruz Gilliam", + "gender": "male", + "age": 32, + "address": { + "state": "North Carolina", + "city": "Edinburg" + } + }, + { + "id": 8080, + "name": "Nita Nicholson", + "gender": "female", + "age": 76, + "address": { + "state": "Arkansas", + "city": "Savannah" + } + }, + { + "id": 8081, + "name": "Oconnor Ewing", + "gender": "male", + "age": 38, + "address": { + "state": "New York", + "city": "Marysville" + } + }, + { + "id": 8082, + "name": "Mcintosh Campbell", + "gender": "male", + "age": 20, + "address": { + "state": "Massachusetts", + "city": "Elizaville" + } + }, + { + "id": 8083, + "name": "Sheena Meadows", + "gender": "female", + "age": 22, + "address": { + "state": "Kansas", + "city": "Frank" + } + }, + { + "id": 8084, + "name": "Burke Petersen", + "gender": "male", + "age": 73, + "address": { + "state": "Alaska", + "city": "Nettie" + } + }, + { + "id": 8085, + "name": "Fuller Stephenson", + "gender": "male", + "age": 73, + "address": { + "state": "Maine", + "city": "Topaz" + } + }, + { + "id": 8086, + "name": "Pope Weber", + "gender": "male", + "age": 53, + "address": { + "state": "Delaware", + "city": "Toftrees" + } + }, + { + "id": 8087, + "name": "Parrish Lamb", + "gender": "male", + "age": 23, + "address": { + "state": "Alaska", + "city": "Westwood" + } + }, + { + "id": 8088, + "name": "Kris Hawkins", + "gender": "female", + "age": 28, + "address": { + "state": "Montana", + "city": "Wolcott" + } + }, + { + "id": 8089, + "name": "Dudley Price", + "gender": "male", + "age": 39, + "address": { + "state": "Georgia", + "city": "Franklin" + } + }, + { + "id": 8090, + "name": "Jami Waters", + "gender": "female", + "age": 46, + "address": { + "state": "Wyoming", + "city": "Sunwest" + } + }, + { + "id": 8091, + "name": "Cortez Solomon", + "gender": "male", + "age": 57, + "address": { + "state": "Washington", + "city": "Como" + } + }, + { + "id": 8092, + "name": "Betsy Vang", + "gender": "female", + "age": 73, + "address": { + "state": "Michigan", + "city": "Dragoon" + } + }, + { + "id": 8093, + "name": "Ruthie Leach", + "gender": "female", + "age": 25, + "address": { + "state": "Ohio", + "city": "Castleton" + } + }, + { + "id": 8094, + "name": "Hannah Byrd", + "gender": "female", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Fostoria" + } + }, + { + "id": 8095, + "name": "Ochoa Conrad", + "gender": "male", + "age": 39, + "address": { + "state": "New York", + "city": "Buxton" + } + }, + { + "id": 8096, + "name": "Browning Joyner", + "gender": "male", + "age": 27, + "address": { + "state": "Nebraska", + "city": "Leming" + } + }, + { + "id": 8097, + "name": "Ray Rose", + "gender": "male", + "age": 44, + "address": { + "state": "Iowa", + "city": "Westmoreland" + } + }, + { + "id": 8098, + "name": "Cassie Estrada", + "gender": "female", + "age": 59, + "address": { + "state": "Virginia", + "city": "Orick" + } + }, + { + "id": 8099, + "name": "Trisha Stokes", + "gender": "female", + "age": 50, + "address": { + "state": "Maryland", + "city": "Layhill" + } + }, + { + "id": 8100, + "name": "Reid Carson", + "gender": "male", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Loyalhanna" + } + }, + { + "id": 8101, + "name": "Gonzales Dodson", + "gender": "male", + "age": 50, + "address": { + "state": "Arkansas", + "city": "Sunriver" + } + }, + { + "id": 8102, + "name": "Knox Mejia", + "gender": "male", + "age": 81, + "address": { + "state": "Oregon", + "city": "Townsend" + } + }, + { + "id": 8103, + "name": "Rosales Jarvis", + "gender": "male", + "age": 53, + "address": { + "state": "Minnesota", + "city": "Dawn" + } + }, + { + "id": 8104, + "name": "Latasha Le", + "gender": "female", + "age": 68, + "address": { + "state": "Indiana", + "city": "Bellfountain" + } + }, + { + "id": 8105, + "name": "Maldonado Swanson", + "gender": "male", + "age": 19, + "address": { + "state": "Wisconsin", + "city": "Sanford" + } + }, + { + "id": 8106, + "name": "May Bowen", + "gender": "female", + "age": 50, + "address": { + "state": "California", + "city": "Smock" + } + }, + { + "id": 8107, + "name": "Rose Wall", + "gender": "female", + "age": 53, + "address": { + "state": "Arizona", + "city": "Thermal" + } + }, + { + "id": 8108, + "name": "Eliza Monroe", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Cleary" + } + }, + { + "id": 8109, + "name": "Frankie Hinton", + "gender": "female", + "age": 45, + "address": { + "state": "Oklahoma", + "city": "Loma" + } + }, + { + "id": 8110, + "name": "Brown Tyler", + "gender": "male", + "age": 80, + "address": { + "state": "Utah", + "city": "Turpin" + } + }, + { + "id": 8111, + "name": "Ebony Gordon", + "gender": "female", + "age": 18, + "address": { + "state": "West Virginia", + "city": "Gerber" + } + }, + { + "id": 8112, + "name": "Franks Good", + "gender": "male", + "age": 48, + "address": { + "state": "Idaho", + "city": "Conway" + } + }, + { + "id": 8113, + "name": "Leanne Lang", + "gender": "female", + "age": 65, + "address": { + "state": "Florida", + "city": "Nogal" + } + }, + { + "id": 8114, + "name": "Rush Morales", + "gender": "male", + "age": 72, + "address": { + "state": "Alabama", + "city": "Cobbtown" + } + }, + { + "id": 8115, + "name": "Reed York", + "gender": "male", + "age": 67, + "address": { + "state": "Rhode Island", + "city": "Greenbush" + } + }, + { + "id": 8116, + "name": "Catalina Crosby", + "gender": "female", + "age": 40, + "address": { + "state": "North Carolina", + "city": "Brethren" + } + }, + { + "id": 8117, + "name": "Arnold Russell", + "gender": "male", + "age": 62, + "address": { + "state": "New Mexico", + "city": "Oasis" + } + }, + { + "id": 8118, + "name": "Britt Hogan", + "gender": "male", + "age": 30, + "address": { + "state": "South Carolina", + "city": "Hanover" + } + }, + { + "id": 8119, + "name": "Mccarthy Tucker", + "gender": "male", + "age": 45, + "address": { + "state": "South Dakota", + "city": "Venice" + } + }, + { + "id": 8120, + "name": "Bridgette Banks", + "gender": "female", + "age": 35, + "address": { + "state": "Colorado", + "city": "Gibbsville" + } + }, + { + "id": 8121, + "name": "Lelia Mueller", + "gender": "female", + "age": 50, + "address": { + "state": "North Dakota", + "city": "Naomi" + } + }, + { + "id": 8122, + "name": "Clark Browning", + "gender": "male", + "age": 73, + "address": { + "state": "Illinois", + "city": "Harrodsburg" + } + }, + { + "id": 8123, + "name": "Vasquez Mcfadden", + "gender": "male", + "age": 34, + "address": { + "state": "Vermont", + "city": "Watchtower" + } + }, + { + "id": 8124, + "name": "Sheppard Cannon", + "gender": "male", + "age": 81, + "address": { + "state": "Connecticut", + "city": "Wyoming" + } + }, + { + "id": 8125, + "name": "Lee Ratliff", + "gender": "female", + "age": 23, + "address": { + "state": "Texas", + "city": "Malo" + } + }, + { + "id": 8126, + "name": "Jewell Santana", + "gender": "female", + "age": 56, + "address": { + "state": "Massachusetts", + "city": "Teasdale" + } + }, + { + "id": 8127, + "name": "Katina Dawson", + "gender": "female", + "age": 79, + "address": { + "state": "Kentucky", + "city": "Snowville" + } + }, + { + "id": 8128, + "name": "Kaufman English", + "gender": "male", + "age": 78, + "address": { + "state": "Missouri", + "city": "Tilleda" + } + }, + { + "id": 8129, + "name": "Alicia Lindsey", + "gender": "female", + "age": 26, + "address": { + "state": "Tennessee", + "city": "Cotopaxi" + } + }, + { + "id": 8130, + "name": "Haynes Clarke", + "gender": "male", + "age": 56, + "address": { + "state": "Kansas", + "city": "Cuylerville" + } + }, + { + "id": 8131, + "name": "Morrison Rojas", + "gender": "male", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Ticonderoga" + } + }, + { + "id": 8132, + "name": "Russell Church", + "gender": "male", + "age": 23, + "address": { + "state": "Nevada", + "city": "Hachita" + } + }, + { + "id": 8133, + "name": "Huber Diaz", + "gender": "male", + "age": 38, + "address": { + "state": "Mississippi", + "city": "Woodruff" + } + }, + { + "id": 8134, + "name": "Mayra Mclean", + "gender": "female", + "age": 52, + "address": { + "state": "Alabama", + "city": "Odessa" + } + }, + { + "id": 8135, + "name": "Velazquez Whitley", + "gender": "male", + "age": 53, + "address": { + "state": "Minnesota", + "city": "Outlook" + } + }, + { + "id": 8136, + "name": "Candace Jackson", + "gender": "female", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Greenbackville" + } + }, + { + "id": 8137, + "name": "Frazier Britt", + "gender": "male", + "age": 53, + "address": { + "state": "Montana", + "city": "Cresaptown" + } + }, + { + "id": 8138, + "name": "Walsh Battle", + "gender": "male", + "age": 58, + "address": { + "state": "South Dakota", + "city": "Belfair" + } + }, + { + "id": 8139, + "name": "Cruz Perez", + "gender": "male", + "age": 80, + "address": { + "state": "California", + "city": "Stewartville" + } + }, + { + "id": 8140, + "name": "Guerra Lancaster", + "gender": "male", + "age": 57, + "address": { + "state": "Oregon", + "city": "Murillo" + } + }, + { + "id": 8141, + "name": "Reba Mayer", + "gender": "female", + "age": 23, + "address": { + "state": "Connecticut", + "city": "Eastvale" + } + }, + { + "id": 8142, + "name": "Hoover Turner", + "gender": "male", + "age": 82, + "address": { + "state": "Vermont", + "city": "Rockbridge" + } + }, + { + "id": 8143, + "name": "Beck Valencia", + "gender": "male", + "age": 58, + "address": { + "state": "Arkansas", + "city": "Nescatunga" + } + }, + { + "id": 8144, + "name": "Nell Richmond", + "gender": "female", + "age": 57, + "address": { + "state": "Hawaii", + "city": "Genoa" + } + }, + { + "id": 8145, + "name": "Virgie Berger", + "gender": "female", + "age": 24, + "address": { + "state": "Florida", + "city": "Muir" + } + }, + { + "id": 8146, + "name": "Kirby Jarvis", + "gender": "male", + "age": 35, + "address": { + "state": "Tennessee", + "city": "Deseret" + } + }, + { + "id": 8147, + "name": "Jodie Mcmillan", + "gender": "female", + "age": 41, + "address": { + "state": "Kansas", + "city": "Nanafalia" + } + }, + { + "id": 8148, + "name": "Jessica Ware", + "gender": "female", + "age": 67, + "address": { + "state": "Mississippi", + "city": "Longbranch" + } + }, + { + "id": 8149, + "name": "Alta Velez", + "gender": "female", + "age": 41, + "address": { + "state": "Utah", + "city": "Dragoon" + } + }, + { + "id": 8150, + "name": "Sadie Medina", + "gender": "female", + "age": 75, + "address": { + "state": "Georgia", + "city": "Bedias" + } + }, + { + "id": 8151, + "name": "Keller Burton", + "gender": "male", + "age": 21, + "address": { + "state": "Louisiana", + "city": "Weeksville" + } + }, + { + "id": 8152, + "name": "Harrington Duran", + "gender": "male", + "age": 26, + "address": { + "state": "Missouri", + "city": "Coaldale" + } + }, + { + "id": 8153, + "name": "Ortiz Brewer", + "gender": "male", + "age": 38, + "address": { + "state": "West Virginia", + "city": "Lodoga" + } + }, + { + "id": 8154, + "name": "Veronica Mckinney", + "gender": "female", + "age": 54, + "address": { + "state": "Pennsylvania", + "city": "Marbury" + } + }, + { + "id": 8155, + "name": "Ophelia Mercado", + "gender": "female", + "age": 36, + "address": { + "state": "Virginia", + "city": "Itmann" + } + }, + { + "id": 8156, + "name": "Jeanne Stout", + "gender": "female", + "age": 40, + "address": { + "state": "Washington", + "city": "Ernstville" + } + }, + { + "id": 8157, + "name": "Cathleen Gregory", + "gender": "female", + "age": 34, + "address": { + "state": "Maine", + "city": "Collins" + } + }, + { + "id": 8158, + "name": "Garcia Bird", + "gender": "male", + "age": 40, + "address": { + "state": "South Carolina", + "city": "Freelandville" + } + }, + { + "id": 8159, + "name": "Rowe Raymond", + "gender": "male", + "age": 53, + "address": { + "state": "Indiana", + "city": "Morriston" + } + }, + { + "id": 8160, + "name": "Rush Delacruz", + "gender": "male", + "age": 57, + "address": { + "state": "Colorado", + "city": "Forestburg" + } + }, + { + "id": 8161, + "name": "Hester Reyes", + "gender": "female", + "age": 74, + "address": { + "state": "Kentucky", + "city": "Singer" + } + }, + { + "id": 8162, + "name": "Cora Freeman", + "gender": "female", + "age": 79, + "address": { + "state": "Delaware", + "city": "Santel" + } + }, + { + "id": 8163, + "name": "Faye Vincent", + "gender": "female", + "age": 66, + "address": { + "state": "New Jersey", + "city": "Faxon" + } + }, + { + "id": 8164, + "name": "Dalton Mcgee", + "gender": "male", + "age": 29, + "address": { + "state": "Alaska", + "city": "Orovada" + } + }, + { + "id": 8165, + "name": "Bettye Holloway", + "gender": "female", + "age": 34, + "address": { + "state": "Nevada", + "city": "Alden" + } + }, + { + "id": 8166, + "name": "Sears Rivas", + "gender": "male", + "age": 78, + "address": { + "state": "Arizona", + "city": "Moraida" + } + }, + { + "id": 8167, + "name": "Stevens Haney", + "gender": "male", + "age": 50, + "address": { + "state": "Michigan", + "city": "Chilton" + } + }, + { + "id": 8168, + "name": "Leann Miranda", + "gender": "female", + "age": 55, + "address": { + "state": "Maryland", + "city": "Waikele" + } + }, + { + "id": 8169, + "name": "Foreman Frye", + "gender": "male", + "age": 47, + "address": { + "state": "Wyoming", + "city": "Libertytown" + } + }, + { + "id": 8170, + "name": "Belinda Sutton", + "gender": "female", + "age": 45, + "address": { + "state": "Wisconsin", + "city": "Lemoyne" + } + }, + { + "id": 8171, + "name": "Morse Mcdonald", + "gender": "male", + "age": 22, + "address": { + "state": "Texas", + "city": "Snelling" + } + }, + { + "id": 8172, + "name": "Marian Bryant", + "gender": "female", + "age": 29, + "address": { + "state": "Massachusetts", + "city": "Sexton" + } + }, + { + "id": 8173, + "name": "Jennie Dickerson", + "gender": "female", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Ahwahnee" + } + }, + { + "id": 8174, + "name": "Lyons Mathews", + "gender": "male", + "age": 44, + "address": { + "state": "Ohio", + "city": "Northridge" + } + }, + { + "id": 8175, + "name": "Crane Glenn", + "gender": "male", + "age": 33, + "address": { + "state": "North Dakota", + "city": "Ruckersville" + } + }, + { + "id": 8176, + "name": "Cecile Clarke", + "gender": "female", + "age": 65, + "address": { + "state": "Rhode Island", + "city": "Hailesboro" + } + }, + { + "id": 8177, + "name": "Stuart Stewart", + "gender": "male", + "age": 53, + "address": { + "state": "Iowa", + "city": "Crenshaw" + } + }, + { + "id": 8178, + "name": "Nunez Callahan", + "gender": "male", + "age": 39, + "address": { + "state": "New Mexico", + "city": "Carrsville" + } + }, + { + "id": 8179, + "name": "Burks English", + "gender": "male", + "age": 48, + "address": { + "state": "Oklahoma", + "city": "Westerville" + } + }, + { + "id": 8180, + "name": "Sandoval Kinney", + "gender": "male", + "age": 38, + "address": { + "state": "New York", + "city": "Wedgewood" + } + }, + { + "id": 8181, + "name": "Rivers Potts", + "gender": "male", + "age": 74, + "address": { + "state": "Idaho", + "city": "Winchester" + } + }, + { + "id": 8182, + "name": "Sally Humphrey", + "gender": "female", + "age": 20, + "address": { + "state": "Illinois", + "city": "Trinway" + } + }, + { + "id": 8183, + "name": "Campos Howard", + "gender": "male", + "age": 36, + "address": { + "state": "California", + "city": "Lacomb" + } + }, + { + "id": 8184, + "name": "Walker Foreman", + "gender": "male", + "age": 48, + "address": { + "state": "Oregon", + "city": "Clinton" + } + }, + { + "id": 8185, + "name": "Bell May", + "gender": "male", + "age": 38, + "address": { + "state": "Illinois", + "city": "Kohatk" + } + }, + { + "id": 8186, + "name": "Rosanne Mathis", + "gender": "female", + "age": 72, + "address": { + "state": "New York", + "city": "Dundee" + } + }, + { + "id": 8187, + "name": "Tricia Callahan", + "gender": "female", + "age": 28, + "address": { + "state": "Utah", + "city": "Fairlee" + } + }, + { + "id": 8188, + "name": "Stacey Mullen", + "gender": "female", + "age": 24, + "address": { + "state": "Nevada", + "city": "Bennett" + } + }, + { + "id": 8189, + "name": "Dianna Park", + "gender": "female", + "age": 38, + "address": { + "state": "Kansas", + "city": "Faxon" + } + }, + { + "id": 8190, + "name": "Soto Knowles", + "gender": "male", + "age": 78, + "address": { + "state": "Alaska", + "city": "Urie" + } + }, + { + "id": 8191, + "name": "Lorna Silva", + "gender": "female", + "age": 35, + "address": { + "state": "Maine", + "city": "Leola" + } + }, + { + "id": 8192, + "name": "Fitzpatrick Stark", + "gender": "male", + "age": 45, + "address": { + "state": "Maryland", + "city": "Lutsen" + } + }, + { + "id": 8193, + "name": "Sheppard Harrison", + "gender": "male", + "age": 67, + "address": { + "state": "Tennessee", + "city": "Lookingglass" + } + }, + { + "id": 8194, + "name": "Powell Sawyer", + "gender": "male", + "age": 52, + "address": { + "state": "Indiana", + "city": "Sunnyside" + } + }, + { + "id": 8195, + "name": "Pate Ingram", + "gender": "male", + "age": 58, + "address": { + "state": "Colorado", + "city": "Macdona" + } + }, + { + "id": 8196, + "name": "Marsh Holland", + "gender": "male", + "age": 73, + "address": { + "state": "West Virginia", + "city": "Riviera" + } + }, + { + "id": 8197, + "name": "Tran Farrell", + "gender": "male", + "age": 24, + "address": { + "state": "Texas", + "city": "Blanford" + } + }, + { + "id": 8198, + "name": "Mcintyre Knight", + "gender": "male", + "age": 49, + "address": { + "state": "Michigan", + "city": "Datil" + } + }, + { + "id": 8199, + "name": "Richard Kirby", + "gender": "male", + "age": 18, + "address": { + "state": "North Dakota", + "city": "Coral" + } + }, + { + "id": 8200, + "name": "Elena Morin", + "gender": "female", + "age": 40, + "address": { + "state": "Missouri", + "city": "Cliffside" + } + }, + { + "id": 8201, + "name": "Lorene Mcpherson", + "gender": "female", + "age": 60, + "address": { + "state": "Wisconsin", + "city": "Ahwahnee" + } + }, + { + "id": 8202, + "name": "Meadows Walsh", + "gender": "male", + "age": 42, + "address": { + "state": "New Jersey", + "city": "Ballico" + } + }, + { + "id": 8203, + "name": "Angelique Schmidt", + "gender": "female", + "age": 27, + "address": { + "state": "Massachusetts", + "city": "Bedias" + } + }, + { + "id": 8204, + "name": "Edith Cameron", + "gender": "female", + "age": 61, + "address": { + "state": "Idaho", + "city": "Floriston" + } + }, + { + "id": 8205, + "name": "Humphrey Nicholson", + "gender": "male", + "age": 27, + "address": { + "state": "Iowa", + "city": "Columbus" + } + }, + { + "id": 8206, + "name": "Powers Montgomery", + "gender": "male", + "age": 17, + "address": { + "state": "Delaware", + "city": "Robbins" + } + }, + { + "id": 8207, + "name": "Mays Owens", + "gender": "male", + "age": 76, + "address": { + "state": "Rhode Island", + "city": "Enlow" + } + }, + { + "id": 8208, + "name": "Kent Norton", + "gender": "male", + "age": 38, + "address": { + "state": "Pennsylvania", + "city": "Klagetoh" + } + }, + { + "id": 8209, + "name": "Sellers Stanley", + "gender": "male", + "age": 54, + "address": { + "state": "Ohio", + "city": "Juarez" + } + }, + { + "id": 8210, + "name": "Lowery Vaughn", + "gender": "male", + "age": 21, + "address": { + "state": "New Hampshire", + "city": "Dixie" + } + }, + { + "id": 8211, + "name": "Hogan Burton", + "gender": "male", + "age": 78, + "address": { + "state": "Minnesota", + "city": "Chamberino" + } + }, + { + "id": 8212, + "name": "Lindsay Davidson", + "gender": "male", + "age": 36, + "address": { + "state": "Washington", + "city": "Jacksonburg" + } + }, + { + "id": 8213, + "name": "Molina Marks", + "gender": "male", + "age": 38, + "address": { + "state": "Arizona", + "city": "Torboy" + } + }, + { + "id": 8214, + "name": "Peck Horne", + "gender": "male", + "age": 68, + "address": { + "state": "Arkansas", + "city": "Summertown" + } + }, + { + "id": 8215, + "name": "Moses Buchanan", + "gender": "male", + "age": 60, + "address": { + "state": "Kentucky", + "city": "Carlos" + } + }, + { + "id": 8216, + "name": "Brewer Doyle", + "gender": "male", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Evergreen" + } + }, + { + "id": 8217, + "name": "Kristie Dale", + "gender": "female", + "age": 53, + "address": { + "state": "North Carolina", + "city": "Fresno" + } + }, + { + "id": 8218, + "name": "Estelle Marshall", + "gender": "female", + "age": 26, + "address": { + "state": "Georgia", + "city": "Durham" + } + }, + { + "id": 8219, + "name": "Samantha Pittman", + "gender": "female", + "age": 21, + "address": { + "state": "Virginia", + "city": "Croom" + } + }, + { + "id": 8220, + "name": "Darcy Wooten", + "gender": "female", + "age": 39, + "address": { + "state": "New Mexico", + "city": "Venice" + } + }, + { + "id": 8221, + "name": "Rivers Mathews", + "gender": "male", + "age": 82, + "address": { + "state": "South Dakota", + "city": "Statenville" + } + }, + { + "id": 8222, + "name": "Williamson Santos", + "gender": "male", + "age": 78, + "address": { + "state": "Hawaii", + "city": "Kerby" + } + }, + { + "id": 8223, + "name": "Jacklyn Spence", + "gender": "female", + "age": 35, + "address": { + "state": "Montana", + "city": "Courtland" + } + }, + { + "id": 8224, + "name": "Randolph Berg", + "gender": "male", + "age": 75, + "address": { + "state": "Wyoming", + "city": "Roberts" + } + }, + { + "id": 8225, + "name": "Christi Deleon", + "gender": "female", + "age": 36, + "address": { + "state": "Alabama", + "city": "Linganore" + } + }, + { + "id": 8226, + "name": "Lynn Anderson", + "gender": "female", + "age": 72, + "address": { + "state": "Vermont", + "city": "Bluffview" + } + }, + { + "id": 8227, + "name": "Bobbie Levy", + "gender": "female", + "age": 51, + "address": { + "state": "Nebraska", + "city": "Norwood" + } + }, + { + "id": 8228, + "name": "Roberson Mercer", + "gender": "male", + "age": 24, + "address": { + "state": "Mississippi", + "city": "Gambrills" + } + }, + { + "id": 8229, + "name": "May Griffin", + "gender": "female", + "age": 22, + "address": { + "state": "South Carolina", + "city": "Dalton" + } + }, + { + "id": 8230, + "name": "Pennington Stephens", + "gender": "male", + "age": 70, + "address": { + "state": "Connecticut", + "city": "Loretto" + } + }, + { + "id": 8231, + "name": "Paulette Richard", + "gender": "female", + "age": 71, + "address": { + "state": "Oklahoma", + "city": "Sena" + } + }, + { + "id": 8232, + "name": "Lamb Dillon", + "gender": "male", + "age": 17, + "address": { + "state": "Washington", + "city": "Hampstead" + } + }, + { + "id": 8233, + "name": "Figueroa Murray", + "gender": "male", + "age": 81, + "address": { + "state": "New Jersey", + "city": "Chumuckla" + } + }, + { + "id": 8234, + "name": "Olson Buckner", + "gender": "male", + "age": 53, + "address": { + "state": "Virginia", + "city": "Shelby" + } + }, + { + "id": 8235, + "name": "Grant Ingram", + "gender": "male", + "age": 76, + "address": { + "state": "Nevada", + "city": "Lund" + } + }, + { + "id": 8236, + "name": "Dickerson Mccarty", + "gender": "male", + "age": 73, + "address": { + "state": "Hawaii", + "city": "Oasis" + } + }, + { + "id": 8237, + "name": "Deanna Cobb", + "gender": "female", + "age": 78, + "address": { + "state": "Louisiana", + "city": "Kerby" + } + }, + { + "id": 8238, + "name": "Gonzales Kerr", + "gender": "male", + "age": 19, + "address": { + "state": "Utah", + "city": "Wyoming" + } + }, + { + "id": 8239, + "name": "Chandra Cook", + "gender": "female", + "age": 23, + "address": { + "state": "Iowa", + "city": "Beason" + } + }, + { + "id": 8240, + "name": "Penelope Vincent", + "gender": "female", + "age": 28, + "address": { + "state": "Illinois", + "city": "Greenbackville" + } + }, + { + "id": 8241, + "name": "Estrada Sparks", + "gender": "male", + "age": 38, + "address": { + "state": "Pennsylvania", + "city": "Limestone" + } + }, + { + "id": 8242, + "name": "Lidia Lee", + "gender": "female", + "age": 34, + "address": { + "state": "Texas", + "city": "Sardis" + } + }, + { + "id": 8243, + "name": "Theresa Ayers", + "gender": "female", + "age": 51, + "address": { + "state": "Michigan", + "city": "Gracey" + } + }, + { + "id": 8244, + "name": "Isabella Roach", + "gender": "female", + "age": 44, + "address": { + "state": "Kentucky", + "city": "Yardville" + } + }, + { + "id": 8245, + "name": "Jodie Gates", + "gender": "female", + "age": 27, + "address": { + "state": "North Carolina", + "city": "Santel" + } + }, + { + "id": 8246, + "name": "Wilda Knight", + "gender": "female", + "age": 55, + "address": { + "state": "Delaware", + "city": "Conestoga" + } + }, + { + "id": 8247, + "name": "Carson Sweeney", + "gender": "male", + "age": 52, + "address": { + "state": "Arizona", + "city": "Walland" + } + }, + { + "id": 8248, + "name": "Mckenzie Soto", + "gender": "male", + "age": 47, + "address": { + "state": "Ohio", + "city": "Camino" + } + }, + { + "id": 8249, + "name": "Vasquez Horne", + "gender": "male", + "age": 42, + "address": { + "state": "Missouri", + "city": "Fruitdale" + } + }, + { + "id": 8250, + "name": "Curry Peck", + "gender": "male", + "age": 82, + "address": { + "state": "Maryland", + "city": "Hartsville/Hartley" + } + }, + { + "id": 8251, + "name": "Parks Pennington", + "gender": "male", + "age": 52, + "address": { + "state": "New Mexico", + "city": "Cresaptown" + } + }, + { + "id": 8252, + "name": "Moss Dorsey", + "gender": "male", + "age": 20, + "address": { + "state": "New Hampshire", + "city": "Trail" + } + }, + { + "id": 8253, + "name": "Norris Lewis", + "gender": "male", + "age": 50, + "address": { + "state": "New York", + "city": "Marysville" + } + }, + { + "id": 8254, + "name": "Michael Cochran", + "gender": "female", + "age": 35, + "address": { + "state": "Indiana", + "city": "Greenfields" + } + }, + { + "id": 8255, + "name": "Acevedo Burris", + "gender": "male", + "age": 21, + "address": { + "state": "Arkansas", + "city": "Ronco" + } + }, + { + "id": 8256, + "name": "Lindsey Gross", + "gender": "female", + "age": 43, + "address": { + "state": "Montana", + "city": "Shasta" + } + }, + { + "id": 8257, + "name": "Malinda Parsons", + "gender": "female", + "age": 45, + "address": { + "state": "Florida", + "city": "Vowinckel" + } + }, + { + "id": 8258, + "name": "Riddle Workman", + "gender": "male", + "age": 22, + "address": { + "state": "Wisconsin", + "city": "Odessa" + } + }, + { + "id": 8259, + "name": "Jenna Kemp", + "gender": "female", + "age": 70, + "address": { + "state": "California", + "city": "Savage" + } + }, + { + "id": 8260, + "name": "Lee Moreno", + "gender": "female", + "age": 50, + "address": { + "state": "Alaska", + "city": "Sattley" + } + }, + { + "id": 8261, + "name": "Walls Donovan", + "gender": "male", + "age": 45, + "address": { + "state": "Massachusetts", + "city": "Saranap" + } + }, + { + "id": 8262, + "name": "Annette Brewer", + "gender": "female", + "age": 76, + "address": { + "state": "Kansas", + "city": "Dennard" + } + }, + { + "id": 8263, + "name": "Christie Noel", + "gender": "female", + "age": 53, + "address": { + "state": "Oregon", + "city": "Williams" + } + }, + { + "id": 8264, + "name": "Ross Wilkerson", + "gender": "male", + "age": 27, + "address": { + "state": "Alabama", + "city": "Bodega" + } + }, + { + "id": 8265, + "name": "Dorothy Freeman", + "gender": "female", + "age": 59, + "address": { + "state": "North Dakota", + "city": "Veyo" + } + }, + { + "id": 8266, + "name": "Jill Rhodes", + "gender": "female", + "age": 72, + "address": { + "state": "Connecticut", + "city": "Bison" + } + }, + { + "id": 8267, + "name": "Guerrero Fisher", + "gender": "male", + "age": 53, + "address": { + "state": "Wyoming", + "city": "Highland" + } + }, + { + "id": 8268, + "name": "Stewart Lang", + "gender": "male", + "age": 28, + "address": { + "state": "Nebraska", + "city": "Russellville" + } + }, + { + "id": 8269, + "name": "Latoya Chapman", + "gender": "female", + "age": 78, + "address": { + "state": "Vermont", + "city": "Frystown" + } + }, + { + "id": 8270, + "name": "Ivy Jarvis", + "gender": "female", + "age": 41, + "address": { + "state": "Oklahoma", + "city": "Farmers" + } + }, + { + "id": 8271, + "name": "Kathryn Nielsen", + "gender": "female", + "age": 53, + "address": { + "state": "Idaho", + "city": "Hickory" + } + }, + { + "id": 8272, + "name": "Morrison Vinson", + "gender": "male", + "age": 69, + "address": { + "state": "West Virginia", + "city": "Chicopee" + } + }, + { + "id": 8273, + "name": "Booker Saunders", + "gender": "male", + "age": 60, + "address": { + "state": "Rhode Island", + "city": "Beaulieu" + } + }, + { + "id": 8274, + "name": "Edith Michael", + "gender": "female", + "age": 40, + "address": { + "state": "South Carolina", + "city": "Abiquiu" + } + }, + { + "id": 8275, + "name": "Dana Griffin", + "gender": "female", + "age": 18, + "address": { + "state": "Maine", + "city": "Whipholt" + } + }, + { + "id": 8276, + "name": "Richard Mcfadden", + "gender": "male", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Waukeenah" + } + }, + { + "id": 8277, + "name": "Jo Vaughn", + "gender": "female", + "age": 55, + "address": { + "state": "Minnesota", + "city": "Whitewater" + } + }, + { + "id": 8278, + "name": "Kirby Cardenas", + "gender": "male", + "age": 82, + "address": { + "state": "South Dakota", + "city": "Avoca" + } + }, + { + "id": 8279, + "name": "Clements Shepard", + "gender": "male", + "age": 34, + "address": { + "state": "Georgia", + "city": "Hondah" + } + }, + { + "id": 8280, + "name": "Mona Barron", + "gender": "female", + "age": 69, + "address": { + "state": "Mississippi", + "city": "Mayfair" + } + }, + { + "id": 8281, + "name": "Hurley Mullen", + "gender": "male", + "age": 52, + "address": { + "state": "New Jersey", + "city": "Vandiver" + } + }, + { + "id": 8282, + "name": "Gray William", + "gender": "male", + "age": 45, + "address": { + "state": "Maine", + "city": "Rosburg" + } + }, + { + "id": 8283, + "name": "Francine Kirk", + "gender": "female", + "age": 74, + "address": { + "state": "Alaska", + "city": "Bentley" + } + }, + { + "id": 8284, + "name": "Joanna Koch", + "gender": "female", + "age": 32, + "address": { + "state": "Wyoming", + "city": "Welch" + } + }, + { + "id": 8285, + "name": "Angelina Knowles", + "gender": "female", + "age": 23, + "address": { + "state": "Washington", + "city": "Escondida" + } + }, + { + "id": 8286, + "name": "Navarro Santana", + "gender": "male", + "age": 54, + "address": { + "state": "Virginia", + "city": "Brenton" + } + }, + { + "id": 8287, + "name": "Stacey Chase", + "gender": "female", + "age": 80, + "address": { + "state": "Ohio", + "city": "Wells" + } + }, + { + "id": 8288, + "name": "Pena Mclaughlin", + "gender": "male", + "age": 49, + "address": { + "state": "New York", + "city": "Noblestown" + } + }, + { + "id": 8289, + "name": "Lucia Mckenzie", + "gender": "female", + "age": 65, + "address": { + "state": "Texas", + "city": "Wildwood" + } + }, + { + "id": 8290, + "name": "Henson Goff", + "gender": "male", + "age": 31, + "address": { + "state": "New Hampshire", + "city": "Bourg" + } + }, + { + "id": 8291, + "name": "Robin Bradshaw", + "gender": "female", + "age": 80, + "address": { + "state": "Iowa", + "city": "Hiko" + } + }, + { + "id": 8292, + "name": "Fisher Gibbs", + "gender": "male", + "age": 76, + "address": { + "state": "North Dakota", + "city": "Avalon" + } + }, + { + "id": 8293, + "name": "Eunice Barnett", + "gender": "female", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Morgandale" + } + }, + { + "id": 8294, + "name": "Myrtle Richmond", + "gender": "female", + "age": 25, + "address": { + "state": "Nebraska", + "city": "Kimmell" + } + }, + { + "id": 8295, + "name": "Valeria Cole", + "gender": "female", + "age": 17, + "address": { + "state": "Louisiana", + "city": "Levant" + } + }, + { + "id": 8296, + "name": "Sasha Bryan", + "gender": "female", + "age": 69, + "address": { + "state": "Maryland", + "city": "Herlong" + } + }, + { + "id": 8297, + "name": "Vincent Douglas", + "gender": "male", + "age": 26, + "address": { + "state": "Georgia", + "city": "Hegins" + } + }, + { + "id": 8298, + "name": "Amelia Wall", + "gender": "female", + "age": 33, + "address": { + "state": "New Mexico", + "city": "Macdona" + } + }, + { + "id": 8299, + "name": "Jaclyn Duran", + "gender": "female", + "age": 31, + "address": { + "state": "Florida", + "city": "Madrid" + } + }, + { + "id": 8300, + "name": "Leona Wells", + "gender": "female", + "age": 19, + "address": { + "state": "Idaho", + "city": "Cornucopia" + } + }, + { + "id": 8301, + "name": "Contreras Dorsey", + "gender": "male", + "age": 22, + "address": { + "state": "Rhode Island", + "city": "Kent" + } + }, + { + "id": 8302, + "name": "Kristen Nicholson", + "gender": "female", + "age": 77, + "address": { + "state": "Utah", + "city": "Ypsilanti" + } + }, + { + "id": 8303, + "name": "Toni Fuller", + "gender": "female", + "age": 52, + "address": { + "state": "Alabama", + "city": "Ola" + } + }, + { + "id": 8304, + "name": "Jennifer Shaw", + "gender": "female", + "age": 44, + "address": { + "state": "Massachusetts", + "city": "Frierson" + } + }, + { + "id": 8305, + "name": "Leonor Phelps", + "gender": "female", + "age": 59, + "address": { + "state": "South Dakota", + "city": "Bellfountain" + } + }, + { + "id": 8306, + "name": "Johnnie Hubbard", + "gender": "female", + "age": 29, + "address": { + "state": "Nevada", + "city": "Whitmer" + } + }, + { + "id": 8307, + "name": "Hollie Nieves", + "gender": "female", + "age": 43, + "address": { + "state": "West Virginia", + "city": "Valle" + } + }, + { + "id": 8308, + "name": "Lorna Terry", + "gender": "female", + "age": 58, + "address": { + "state": "Hawaii", + "city": "Ironton" + } + }, + { + "id": 8309, + "name": "Lacy Hodges", + "gender": "female", + "age": 24, + "address": { + "state": "North Carolina", + "city": "Camino" + } + }, + { + "id": 8310, + "name": "Marissa Williams", + "gender": "female", + "age": 35, + "address": { + "state": "Kentucky", + "city": "Bison" + } + }, + { + "id": 8311, + "name": "Brandie Espinoza", + "gender": "female", + "age": 20, + "address": { + "state": "Kansas", + "city": "Summerset" + } + }, + { + "id": 8312, + "name": "Elena England", + "gender": "female", + "age": 58, + "address": { + "state": "Arizona", + "city": "Finzel" + } + }, + { + "id": 8313, + "name": "Lora Garza", + "gender": "female", + "age": 27, + "address": { + "state": "Mississippi", + "city": "Wheatfields" + } + }, + { + "id": 8314, + "name": "Marsha Tucker", + "gender": "female", + "age": 69, + "address": { + "state": "Michigan", + "city": "Dargan" + } + }, + { + "id": 8315, + "name": "Camille Bauer", + "gender": "female", + "age": 26, + "address": { + "state": "Illinois", + "city": "Belleview" + } + }, + { + "id": 8316, + "name": "Weaver Gentry", + "gender": "male", + "age": 52, + "address": { + "state": "Indiana", + "city": "Cumberland" + } + }, + { + "id": 8317, + "name": "Janell Montgomery", + "gender": "female", + "age": 71, + "address": { + "state": "Tennessee", + "city": "Dixie" + } + }, + { + "id": 8318, + "name": "Beverley Blackwell", + "gender": "female", + "age": 77, + "address": { + "state": "Connecticut", + "city": "Warren" + } + }, + { + "id": 8319, + "name": "Garrison Craig", + "gender": "male", + "age": 51, + "address": { + "state": "California", + "city": "Salix" + } + }, + { + "id": 8320, + "name": "Wendi Burris", + "gender": "female", + "age": 58, + "address": { + "state": "Pennsylvania", + "city": "Idledale" + } + }, + { + "id": 8321, + "name": "Mason Morrison", + "gender": "male", + "age": 31, + "address": { + "state": "Minnesota", + "city": "Ribera" + } + }, + { + "id": 8322, + "name": "King Waller", + "gender": "male", + "age": 54, + "address": { + "state": "Colorado", + "city": "Snelling" + } + }, + { + "id": 8323, + "name": "Compton Ramos", + "gender": "male", + "age": 58, + "address": { + "state": "Oregon", + "city": "Echo" + } + }, + { + "id": 8324, + "name": "Mccoy Parrish", + "gender": "male", + "age": 57, + "address": { + "state": "Montana", + "city": "Bradenville" + } + }, + { + "id": 8325, + "name": "Phelps Jordan", + "gender": "male", + "age": 33, + "address": { + "state": "Wisconsin", + "city": "Durham" + } + }, + { + "id": 8326, + "name": "Debbie Shaffer", + "gender": "female", + "age": 19, + "address": { + "state": "Oklahoma", + "city": "Woodlake" + } + }, + { + "id": 8327, + "name": "Lester Pratt", + "gender": "male", + "age": 74, + "address": { + "state": "Missouri", + "city": "Martinez" + } + }, + { + "id": 8328, + "name": "Knight Deleon", + "gender": "male", + "age": 27, + "address": { + "state": "Arkansas", + "city": "Concho" + } + }, + { + "id": 8329, + "name": "Bonnie Parsons", + "gender": "female", + "age": 49, + "address": { + "state": "Vermont", + "city": "Bennett" + } + }, + { + "id": 8330, + "name": "Knox Bonner", + "gender": "male", + "age": 54, + "address": { + "state": "Mississippi", + "city": "Linganore" + } + }, + { + "id": 8331, + "name": "Everett Travis", + "gender": "male", + "age": 45, + "address": { + "state": "Minnesota", + "city": "Jeff" + } + }, + { + "id": 8332, + "name": "Herring Rogers", + "gender": "male", + "age": 21, + "address": { + "state": "South Dakota", + "city": "Diaperville" + } + }, + { + "id": 8333, + "name": "Carson Conrad", + "gender": "male", + "age": 75, + "address": { + "state": "Washington", + "city": "Gardiner" + } + }, + { + "id": 8334, + "name": "Cara Waller", + "gender": "female", + "age": 17, + "address": { + "state": "Kansas", + "city": "Belmont" + } + }, + { + "id": 8335, + "name": "Lawrence Pugh", + "gender": "male", + "age": 32, + "address": { + "state": "California", + "city": "Whitewater" + } + }, + { + "id": 8336, + "name": "Miranda Myers", + "gender": "female", + "age": 80, + "address": { + "state": "Hawaii", + "city": "Glenbrook" + } + }, + { + "id": 8337, + "name": "Amparo Dawson", + "gender": "female", + "age": 68, + "address": { + "state": "Ohio", + "city": "Hiko" + } + }, + { + "id": 8338, + "name": "Cruz Gentry", + "gender": "male", + "age": 68, + "address": { + "state": "New York", + "city": "Cawood" + } + }, + { + "id": 8339, + "name": "Shelby Richmond", + "gender": "female", + "age": 36, + "address": { + "state": "Kentucky", + "city": "Frank" + } + }, + { + "id": 8340, + "name": "Althea Tate", + "gender": "female", + "age": 49, + "address": { + "state": "Nevada", + "city": "Cornucopia" + } + }, + { + "id": 8341, + "name": "Mercado Long", + "gender": "male", + "age": 48, + "address": { + "state": "Alabama", + "city": "Coloma" + } + }, + { + "id": 8342, + "name": "Adriana Delacruz", + "gender": "female", + "age": 62, + "address": { + "state": "Connecticut", + "city": "Nescatunga" + } + }, + { + "id": 8343, + "name": "Baxter Wiggins", + "gender": "male", + "age": 81, + "address": { + "state": "Oklahoma", + "city": "Lund" + } + }, + { + "id": 8344, + "name": "Blanchard Young", + "gender": "male", + "age": 43, + "address": { + "state": "Tennessee", + "city": "Sunbury" + } + }, + { + "id": 8345, + "name": "Hubbard Murphy", + "gender": "male", + "age": 66, + "address": { + "state": "Massachusetts", + "city": "Ellerslie" + } + }, + { + "id": 8346, + "name": "Eliza Mcclure", + "gender": "female", + "age": 45, + "address": { + "state": "Arizona", + "city": "Cannondale" + } + }, + { + "id": 8347, + "name": "Tammie Fitzgerald", + "gender": "female", + "age": 64, + "address": { + "state": "Rhode Island", + "city": "Johnsonburg" + } + }, + { + "id": 8348, + "name": "Nanette Williams", + "gender": "female", + "age": 47, + "address": { + "state": "Missouri", + "city": "Glenville" + } + }, + { + "id": 8349, + "name": "Leta Todd", + "gender": "female", + "age": 32, + "address": { + "state": "Colorado", + "city": "Fillmore" + } + }, + { + "id": 8350, + "name": "Cortez Noble", + "gender": "male", + "age": 42, + "address": { + "state": "Louisiana", + "city": "Benson" + } + }, + { + "id": 8351, + "name": "Berger Baldwin", + "gender": "male", + "age": 19, + "address": { + "state": "Pennsylvania", + "city": "Allendale" + } + }, + { + "id": 8352, + "name": "Osborne Santiago", + "gender": "male", + "age": 21, + "address": { + "state": "Maryland", + "city": "Norfolk" + } + }, + { + "id": 8353, + "name": "Frances Sanchez", + "gender": "female", + "age": 65, + "address": { + "state": "Delaware", + "city": "Worton" + } + }, + { + "id": 8354, + "name": "Elisa Strong", + "gender": "female", + "age": 44, + "address": { + "state": "Texas", + "city": "Foxworth" + } + }, + { + "id": 8355, + "name": "Meyer Blackwell", + "gender": "male", + "age": 27, + "address": { + "state": "Illinois", + "city": "Bradenville" + } + }, + { + "id": 8356, + "name": "Blair Sellers", + "gender": "male", + "age": 40, + "address": { + "state": "Wisconsin", + "city": "Century" + } + }, + { + "id": 8357, + "name": "Mccall Valdez", + "gender": "male", + "age": 72, + "address": { + "state": "Georgia", + "city": "Outlook" + } + }, + { + "id": 8358, + "name": "Lori Daniel", + "gender": "female", + "age": 59, + "address": { + "state": "Nebraska", + "city": "Chapin" + } + }, + { + "id": 8359, + "name": "Diana Clarke", + "gender": "female", + "age": 44, + "address": { + "state": "Vermont", + "city": "Gwynn" + } + }, + { + "id": 8360, + "name": "Lesa Salinas", + "gender": "female", + "age": 66, + "address": { + "state": "Michigan", + "city": "Beechmont" + } + }, + { + "id": 8361, + "name": "Weeks Hendricks", + "gender": "male", + "age": 51, + "address": { + "state": "Wyoming", + "city": "Cumberland" + } + }, + { + "id": 8362, + "name": "Angeline Kidd", + "gender": "female", + "age": 26, + "address": { + "state": "South Carolina", + "city": "Oretta" + } + }, + { + "id": 8363, + "name": "Snyder Hebert", + "gender": "male", + "age": 48, + "address": { + "state": "West Virginia", + "city": "Coventry" + } + }, + { + "id": 8364, + "name": "Freida Freeman", + "gender": "female", + "age": 20, + "address": { + "state": "Arkansas", + "city": "Richmond" + } + }, + { + "id": 8365, + "name": "Solomon Lloyd", + "gender": "male", + "age": 41, + "address": { + "state": "New Jersey", + "city": "Ilchester" + } + }, + { + "id": 8366, + "name": "Luella Sosa", + "gender": "female", + "age": 48, + "address": { + "state": "Utah", + "city": "Brecon" + } + }, + { + "id": 8367, + "name": "Atkins Hobbs", + "gender": "male", + "age": 78, + "address": { + "state": "Indiana", + "city": "Forbestown" + } + }, + { + "id": 8368, + "name": "Marsh Morin", + "gender": "male", + "age": 20, + "address": { + "state": "Iowa", + "city": "Dellview" + } + }, + { + "id": 8369, + "name": "Rivers Coffey", + "gender": "male", + "age": 70, + "address": { + "state": "New Hampshire", + "city": "Nicholson" + } + }, + { + "id": 8370, + "name": "Merritt Burton", + "gender": "male", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Manitou" + } + }, + { + "id": 8371, + "name": "Marcie Holmes", + "gender": "female", + "age": 51, + "address": { + "state": "Alaska", + "city": "Ripley" + } + }, + { + "id": 8372, + "name": "Mclaughlin Barber", + "gender": "male", + "age": 62, + "address": { + "state": "Florida", + "city": "Darbydale" + } + }, + { + "id": 8373, + "name": "Charity Anthony", + "gender": "female", + "age": 43, + "address": { + "state": "Virginia", + "city": "Gambrills" + } + }, + { + "id": 8374, + "name": "Terrie Greene", + "gender": "female", + "age": 20, + "address": { + "state": "North Dakota", + "city": "Elwood" + } + }, + { + "id": 8375, + "name": "Patterson Reyes", + "gender": "male", + "age": 29, + "address": { + "state": "New Mexico", + "city": "Jackpot" + } + }, + { + "id": 8376, + "name": "Vicki Figueroa", + "gender": "female", + "age": 50, + "address": { + "state": "Maine", + "city": "Rutherford" + } + }, + { + "id": 8377, + "name": "Josefina Snyder", + "gender": "female", + "age": 67, + "address": { + "state": "Idaho", + "city": "Camptown" + } + }, + { + "id": 8378, + "name": "Barlow Burgess", + "gender": "male", + "age": 47, + "address": { + "state": "Oregon", + "city": "Bluffview" + } + }, + { + "id": 8379, + "name": "Curtis Kline", + "gender": "male", + "age": 44, + "address": { + "state": "Iowa", + "city": "Delwood" + } + }, + { + "id": 8380, + "name": "Ana Chase", + "gender": "female", + "age": 72, + "address": { + "state": "Wisconsin", + "city": "Gloucester" + } + }, + { + "id": 8381, + "name": "Kaitlin Sexton", + "gender": "female", + "age": 50, + "address": { + "state": "Alabama", + "city": "Kingstowne" + } + }, + { + "id": 8382, + "name": "Nielsen Gregory", + "gender": "male", + "age": 45, + "address": { + "state": "Illinois", + "city": "Mapletown" + } + }, + { + "id": 8383, + "name": "Jenny Wallace", + "gender": "female", + "age": 82, + "address": { + "state": "North Dakota", + "city": "Shrewsbury" + } + }, + { + "id": 8384, + "name": "Wheeler Bryant", + "gender": "male", + "age": 80, + "address": { + "state": "Pennsylvania", + "city": "Emerald" + } + }, + { + "id": 8385, + "name": "Patricia Barlow", + "gender": "female", + "age": 50, + "address": { + "state": "Vermont", + "city": "Guilford" + } + }, + { + "id": 8386, + "name": "Tran Zamora", + "gender": "male", + "age": 48, + "address": { + "state": "Rhode Island", + "city": "Stockdale" + } + }, + { + "id": 8387, + "name": "Pearl Wise", + "gender": "female", + "age": 30, + "address": { + "state": "Washington", + "city": "Wauhillau" + } + }, + { + "id": 8388, + "name": "Frye Kaufman", + "gender": "male", + "age": 28, + "address": { + "state": "Minnesota", + "city": "Hall" + } + }, + { + "id": 8389, + "name": "Catalina Villarreal", + "gender": "female", + "age": 60, + "address": { + "state": "Idaho", + "city": "Slovan" + } + }, + { + "id": 8390, + "name": "Maritza Winters", + "gender": "female", + "age": 56, + "address": { + "state": "Arkansas", + "city": "Jacksonwald" + } + }, + { + "id": 8391, + "name": "Alberta Huffman", + "gender": "female", + "age": 71, + "address": { + "state": "Michigan", + "city": "Bradenville" + } + }, + { + "id": 8392, + "name": "Elsa Perez", + "gender": "female", + "age": 80, + "address": { + "state": "Kentucky", + "city": "Walton" + } + }, + { + "id": 8393, + "name": "Opal Mcbride", + "gender": "female", + "age": 19, + "address": { + "state": "Maine", + "city": "Harborton" + } + }, + { + "id": 8394, + "name": "Lela Merrill", + "gender": "female", + "age": 45, + "address": { + "state": "Ohio", + "city": "Jardine" + } + }, + { + "id": 8395, + "name": "Nona Banks", + "gender": "female", + "age": 25, + "address": { + "state": "Massachusetts", + "city": "Cassel" + } + }, + { + "id": 8396, + "name": "Cote Ferguson", + "gender": "male", + "age": 51, + "address": { + "state": "South Carolina", + "city": "Edenburg" + } + }, + { + "id": 8397, + "name": "Burgess Mathis", + "gender": "male", + "age": 43, + "address": { + "state": "Colorado", + "city": "Orovada" + } + }, + { + "id": 8398, + "name": "Clara Richards", + "gender": "female", + "age": 38, + "address": { + "state": "Mississippi", + "city": "Dunbar" + } + }, + { + "id": 8399, + "name": "Tina Joyce", + "gender": "female", + "age": 29, + "address": { + "state": "Indiana", + "city": "Whitmer" + } + }, + { + "id": 8400, + "name": "Elisa Peters", + "gender": "female", + "age": 46, + "address": { + "state": "Tennessee", + "city": "Gibbsville" + } + }, + { + "id": 8401, + "name": "Bernadine Stark", + "gender": "female", + "age": 25, + "address": { + "state": "New York", + "city": "Montura" + } + }, + { + "id": 8402, + "name": "Schmidt Cherry", + "gender": "male", + "age": 38, + "address": { + "state": "New Hampshire", + "city": "Epworth" + } + }, + { + "id": 8403, + "name": "Aisha Curtis", + "gender": "female", + "age": 66, + "address": { + "state": "North Carolina", + "city": "Como" + } + }, + { + "id": 8404, + "name": "Carissa Campos", + "gender": "female", + "age": 39, + "address": { + "state": "New Mexico", + "city": "Nord" + } + }, + { + "id": 8405, + "name": "Jewell Crane", + "gender": "female", + "age": 22, + "address": { + "state": "Hawaii", + "city": "Kempton" + } + }, + { + "id": 8406, + "name": "Alisha Dean", + "gender": "female", + "age": 57, + "address": { + "state": "Louisiana", + "city": "Woodlake" + } + }, + { + "id": 8407, + "name": "Bruce Hanson", + "gender": "male", + "age": 22, + "address": { + "state": "Texas", + "city": "Wiscon" + } + }, + { + "id": 8408, + "name": "Clare Haney", + "gender": "female", + "age": 31, + "address": { + "state": "Kansas", + "city": "Matthews" + } + }, + { + "id": 8409, + "name": "Pope Albert", + "gender": "male", + "age": 72, + "address": { + "state": "Wyoming", + "city": "Bowden" + } + }, + { + "id": 8410, + "name": "Wood Mcdonald", + "gender": "male", + "age": 38, + "address": { + "state": "Missouri", + "city": "Bainbridge" + } + }, + { + "id": 8411, + "name": "Carson Knapp", + "gender": "male", + "age": 81, + "address": { + "state": "Arizona", + "city": "Sylvanite" + } + }, + { + "id": 8412, + "name": "Margaret Jenkins", + "gender": "female", + "age": 40, + "address": { + "state": "Delaware", + "city": "Cuylerville" + } + }, + { + "id": 8413, + "name": "Berry Phillips", + "gender": "male", + "age": 53, + "address": { + "state": "South Dakota", + "city": "Thatcher" + } + }, + { + "id": 8414, + "name": "Claudine Dillard", + "gender": "female", + "age": 69, + "address": { + "state": "Florida", + "city": "Chaparrito" + } + }, + { + "id": 8415, + "name": "Margret Hunt", + "gender": "female", + "age": 72, + "address": { + "state": "West Virginia", + "city": "Leroy" + } + }, + { + "id": 8416, + "name": "Cook Stout", + "gender": "male", + "age": 22, + "address": { + "state": "Georgia", + "city": "Glasgow" + } + }, + { + "id": 8417, + "name": "Griffin Cote", + "gender": "male", + "age": 53, + "address": { + "state": "Connecticut", + "city": "Lupton" + } + }, + { + "id": 8418, + "name": "Davis Horton", + "gender": "male", + "age": 69, + "address": { + "state": "Nevada", + "city": "Silkworth" + } + }, + { + "id": 8419, + "name": "Schultz Stanley", + "gender": "male", + "age": 73, + "address": { + "state": "Virginia", + "city": "Thermal" + } + }, + { + "id": 8420, + "name": "Larsen William", + "gender": "male", + "age": 57, + "address": { + "state": "Oklahoma", + "city": "Windsor" + } + }, + { + "id": 8421, + "name": "Magdalena Rasmussen", + "gender": "female", + "age": 49, + "address": { + "state": "California", + "city": "Herald" + } + }, + { + "id": 8422, + "name": "Rojas Noel", + "gender": "male", + "age": 61, + "address": { + "state": "Alaska", + "city": "Lafferty" + } + }, + { + "id": 8423, + "name": "Russell Randall", + "gender": "male", + "age": 47, + "address": { + "state": "New Jersey", + "city": "Chestnut" + } + }, + { + "id": 8424, + "name": "Park Cunningham", + "gender": "male", + "age": 46, + "address": { + "state": "Nebraska", + "city": "Bordelonville" + } + }, + { + "id": 8425, + "name": "Kim Kennedy", + "gender": "female", + "age": 71, + "address": { + "state": "Maryland", + "city": "Greer" + } + }, + { + "id": 8426, + "name": "Robin Bolton", + "gender": "female", + "age": 24, + "address": { + "state": "Utah", + "city": "Cherokee" + } + }, + { + "id": 8427, + "name": "Washington Gordon", + "gender": "male", + "age": 55, + "address": { + "state": "Oregon", + "city": "Whitestone" + } + }, + { + "id": 8428, + "name": "Blake Summers", + "gender": "male", + "age": 69, + "address": { + "state": "Indiana", + "city": "Carlton" + } + }, + { + "id": 8429, + "name": "Eve Dyer", + "gender": "female", + "age": 30, + "address": { + "state": "Colorado", + "city": "Croom" + } + }, + { + "id": 8430, + "name": "Keisha York", + "gender": "female", + "age": 78, + "address": { + "state": "Iowa", + "city": "Avalon" + } + }, + { + "id": 8431, + "name": "Dunlap James", + "gender": "male", + "age": 57, + "address": { + "state": "Texas", + "city": "Jacumba" + } + }, + { + "id": 8432, + "name": "Rowland Melton", + "gender": "male", + "age": 72, + "address": { + "state": "Alaska", + "city": "Allensworth" + } + }, + { + "id": 8433, + "name": "Corine Lamb", + "gender": "female", + "age": 60, + "address": { + "state": "Georgia", + "city": "Fairmount" + } + }, + { + "id": 8434, + "name": "Ester Washington", + "gender": "female", + "age": 80, + "address": { + "state": "California", + "city": "Hollymead" + } + }, + { + "id": 8435, + "name": "Laurel Sawyer", + "gender": "female", + "age": 62, + "address": { + "state": "Minnesota", + "city": "Coloma" + } + }, + { + "id": 8436, + "name": "Chrystal Frost", + "gender": "female", + "age": 48, + "address": { + "state": "West Virginia", + "city": "Ona" + } + }, + { + "id": 8437, + "name": "Jolene Miranda", + "gender": "female", + "age": 44, + "address": { + "state": "Maryland", + "city": "Foxworth" + } + }, + { + "id": 8438, + "name": "Angie Campbell", + "gender": "female", + "age": 38, + "address": { + "state": "Arkansas", + "city": "Madrid" + } + }, + { + "id": 8439, + "name": "Spears Castro", + "gender": "male", + "age": 64, + "address": { + "state": "Virginia", + "city": "Roberts" + } + }, + { + "id": 8440, + "name": "Marguerite Walls", + "gender": "female", + "age": 68, + "address": { + "state": "Kansas", + "city": "Gerber" + } + }, + { + "id": 8441, + "name": "Jenna Snider", + "gender": "female", + "age": 29, + "address": { + "state": "North Dakota", + "city": "Mayfair" + } + }, + { + "id": 8442, + "name": "Hall Buck", + "gender": "male", + "age": 35, + "address": { + "state": "Mississippi", + "city": "Sandston" + } + }, + { + "id": 8443, + "name": "Mcclain Holder", + "gender": "male", + "age": 30, + "address": { + "state": "Hawaii", + "city": "Fairacres" + } + }, + { + "id": 8444, + "name": "Avery Curry", + "gender": "male", + "age": 75, + "address": { + "state": "Montana", + "city": "Hondah" + } + }, + { + "id": 8445, + "name": "Jane Cannon", + "gender": "female", + "age": 19, + "address": { + "state": "Louisiana", + "city": "Islandia" + } + }, + { + "id": 8446, + "name": "Boone Franks", + "gender": "male", + "age": 17, + "address": { + "state": "Connecticut", + "city": "Vandiver" + } + }, + { + "id": 8447, + "name": "Reed Glass", + "gender": "male", + "age": 44, + "address": { + "state": "Ohio", + "city": "Kilbourne" + } + }, + { + "id": 8448, + "name": "Rosalyn Fry", + "gender": "female", + "age": 25, + "address": { + "state": "Kentucky", + "city": "Soham" + } + }, + { + "id": 8449, + "name": "James Jennings", + "gender": "male", + "age": 69, + "address": { + "state": "New York", + "city": "Takilma" + } + }, + { + "id": 8450, + "name": "Burton Henson", + "gender": "male", + "age": 38, + "address": { + "state": "Wisconsin", + "city": "Como" + } + }, + { + "id": 8451, + "name": "Corina Daniels", + "gender": "female", + "age": 56, + "address": { + "state": "Washington", + "city": "Lemoyne" + } + }, + { + "id": 8452, + "name": "Juliette Farmer", + "gender": "female", + "age": 71, + "address": { + "state": "New Mexico", + "city": "Churchill" + } + }, + { + "id": 8453, + "name": "Huffman Pearson", + "gender": "male", + "age": 69, + "address": { + "state": "North Carolina", + "city": "Zarephath" + } + }, + { + "id": 8454, + "name": "Luisa Phillips", + "gender": "female", + "age": 44, + "address": { + "state": "Wyoming", + "city": "Muse" + } + }, + { + "id": 8455, + "name": "Virgie Woods", + "gender": "female", + "age": 49, + "address": { + "state": "New Jersey", + "city": "Utting" + } + }, + { + "id": 8456, + "name": "Georgina Owen", + "gender": "female", + "age": 53, + "address": { + "state": "Oregon", + "city": "Carbonville" + } + }, + { + "id": 8457, + "name": "Autumn Hubbard", + "gender": "female", + "age": 76, + "address": { + "state": "South Dakota", + "city": "Zeba" + } + }, + { + "id": 8458, + "name": "Bettie Fisher", + "gender": "female", + "age": 20, + "address": { + "state": "Tennessee", + "city": "Datil" + } + }, + { + "id": 8459, + "name": "Osborn Leblanc", + "gender": "male", + "age": 53, + "address": { + "state": "Alabama", + "city": "Vicksburg" + } + }, + { + "id": 8460, + "name": "Guzman Bell", + "gender": "male", + "age": 43, + "address": { + "state": "Oklahoma", + "city": "Virgie" + } + }, + { + "id": 8461, + "name": "Aileen Schneider", + "gender": "female", + "age": 41, + "address": { + "state": "Maine", + "city": "Tyhee" + } + }, + { + "id": 8462, + "name": "Roach Carroll", + "gender": "male", + "age": 30, + "address": { + "state": "Nebraska", + "city": "Abiquiu" + } + }, + { + "id": 8463, + "name": "Stokes Gordon", + "gender": "male", + "age": 60, + "address": { + "state": "Idaho", + "city": "Basye" + } + }, + { + "id": 8464, + "name": "Cameron Munoz", + "gender": "male", + "age": 32, + "address": { + "state": "Michigan", + "city": "Mulino" + } + }, + { + "id": 8465, + "name": "Barr Carson", + "gender": "male", + "age": 62, + "address": { + "state": "Vermont", + "city": "Gilgo" + } + }, + { + "id": 8466, + "name": "Contreras Mendoza", + "gender": "male", + "age": 73, + "address": { + "state": "Illinois", + "city": "Hasty" + } + }, + { + "id": 8467, + "name": "Kristie Yates", + "gender": "female", + "age": 35, + "address": { + "state": "Arizona", + "city": "Holcombe" + } + }, + { + "id": 8468, + "name": "Janell Jacobson", + "gender": "female", + "age": 74, + "address": { + "state": "Rhode Island", + "city": "Woodruff" + } + }, + { + "id": 8469, + "name": "Brooks Reyes", + "gender": "male", + "age": 18, + "address": { + "state": "Missouri", + "city": "Blandburg" + } + }, + { + "id": 8470, + "name": "Houston Gillespie", + "gender": "male", + "age": 19, + "address": { + "state": "New Hampshire", + "city": "Inkerman" + } + }, + { + "id": 8471, + "name": "Cortez Hester", + "gender": "male", + "age": 46, + "address": { + "state": "Florida", + "city": "Manila" + } + }, + { + "id": 8472, + "name": "Rosie Flynn", + "gender": "female", + "age": 47, + "address": { + "state": "South Carolina", + "city": "Whitewater" + } + }, + { + "id": 8473, + "name": "Patel Reese", + "gender": "male", + "age": 24, + "address": { + "state": "Utah", + "city": "Bethany" + } + }, + { + "id": 8474, + "name": "Hernandez Murphy", + "gender": "male", + "age": 38, + "address": { + "state": "Delaware", + "city": "Hoagland" + } + }, + { + "id": 8475, + "name": "Maritza Sosa", + "gender": "female", + "age": 32, + "address": { + "state": "Massachusetts", + "city": "Oneida" + } + }, + { + "id": 8476, + "name": "Gloria Pace", + "gender": "female", + "age": 79, + "address": { + "state": "Nevada", + "city": "Springville" + } + }, + { + "id": 8477, + "name": "Nannie Nicholson", + "gender": "female", + "age": 36, + "address": { + "state": "North Carolina", + "city": "Venice" + } + }, + { + "id": 8478, + "name": "William Rivers", + "gender": "male", + "age": 34, + "address": { + "state": "Connecticut", + "city": "Nicut" + } + }, + { + "id": 8479, + "name": "Morales Rivas", + "gender": "male", + "age": 40, + "address": { + "state": "Pennsylvania", + "city": "Stockdale" + } + }, + { + "id": 8480, + "name": "Katy Ware", + "gender": "female", + "age": 54, + "address": { + "state": "Vermont", + "city": "Cataract" + } + }, + { + "id": 8481, + "name": "Dyer Soto", + "gender": "male", + "age": 81, + "address": { + "state": "Kentucky", + "city": "Blanford" + } + }, + { + "id": 8482, + "name": "Mercedes Phelps", + "gender": "female", + "age": 73, + "address": { + "state": "Texas", + "city": "Alamo" + } + }, + { + "id": 8483, + "name": "Anita Mccall", + "gender": "female", + "age": 27, + "address": { + "state": "Georgia", + "city": "Choctaw" + } + }, + { + "id": 8484, + "name": "Brandie Joyce", + "gender": "female", + "age": 47, + "address": { + "state": "New Hampshire", + "city": "Tetherow" + } + }, + { + "id": 8485, + "name": "Ilene Cunningham", + "gender": "female", + "age": 18, + "address": { + "state": "Nevada", + "city": "Kilbourne" + } + }, + { + "id": 8486, + "name": "Suzanne Hester", + "gender": "female", + "age": 79, + "address": { + "state": "Mississippi", + "city": "Riviera" + } + }, + { + "id": 8487, + "name": "Danielle Morrow", + "gender": "female", + "age": 65, + "address": { + "state": "Rhode Island", + "city": "Marysville" + } + }, + { + "id": 8488, + "name": "Randolph Stafford", + "gender": "male", + "age": 32, + "address": { + "state": "Massachusetts", + "city": "Mappsville" + } + }, + { + "id": 8489, + "name": "Cora Mack", + "gender": "female", + "age": 66, + "address": { + "state": "Iowa", + "city": "Ezel" + } + }, + { + "id": 8490, + "name": "Sophia Cobb", + "gender": "female", + "age": 27, + "address": { + "state": "New York", + "city": "Hackneyville" + } + }, + { + "id": 8491, + "name": "Benson Allen", + "gender": "male", + "age": 40, + "address": { + "state": "Oklahoma", + "city": "Canoochee" + } + }, + { + "id": 8492, + "name": "Bradford Farmer", + "gender": "male", + "age": 62, + "address": { + "state": "Hawaii", + "city": "Turah" + } + }, + { + "id": 8493, + "name": "Gamble Arnold", + "gender": "male", + "age": 68, + "address": { + "state": "Florida", + "city": "Ypsilanti" + } + }, + { + "id": 8494, + "name": "Jaime Frost", + "gender": "female", + "age": 64, + "address": { + "state": "Wyoming", + "city": "Tedrow" + } + }, + { + "id": 8495, + "name": "Chandra Hull", + "gender": "female", + "age": 33, + "address": { + "state": "Colorado", + "city": "Colton" + } + }, + { + "id": 8496, + "name": "Lourdes Mcknight", + "gender": "female", + "age": 18, + "address": { + "state": "Illinois", + "city": "Gracey" + } + }, + { + "id": 8497, + "name": "Corinne Robertson", + "gender": "female", + "age": 52, + "address": { + "state": "Arkansas", + "city": "Cecilia" + } + }, + { + "id": 8498, + "name": "Clare Fitzpatrick", + "gender": "female", + "age": 48, + "address": { + "state": "Indiana", + "city": "Nutrioso" + } + }, + { + "id": 8499, + "name": "Pratt Nolan", + "gender": "male", + "age": 73, + "address": { + "state": "North Dakota", + "city": "Shrewsbury" + } + }, + { + "id": 8500, + "name": "Donaldson Powell", + "gender": "male", + "age": 68, + "address": { + "state": "California", + "city": "Marion" + } + }, + { + "id": 8501, + "name": "Ingram Fulton", + "gender": "male", + "age": 36, + "address": { + "state": "Delaware", + "city": "Ola" + } + }, + { + "id": 8502, + "name": "Lynda King", + "gender": "female", + "age": 72, + "address": { + "state": "New Jersey", + "city": "Stewartville" + } + }, + { + "id": 8503, + "name": "Rocha Mayo", + "gender": "male", + "age": 60, + "address": { + "state": "West Virginia", + "city": "Springdale" + } + }, + { + "id": 8504, + "name": "Arline Hoffman", + "gender": "female", + "age": 48, + "address": { + "state": "Idaho", + "city": "Dorneyville" + } + }, + { + "id": 8505, + "name": "Amie Maddox", + "gender": "female", + "age": 49, + "address": { + "state": "Maryland", + "city": "Winchester" + } + }, + { + "id": 8506, + "name": "Mara Waller", + "gender": "female", + "age": 44, + "address": { + "state": "New Mexico", + "city": "Konterra" + } + }, + { + "id": 8507, + "name": "Rivera Russell", + "gender": "male", + "age": 43, + "address": { + "state": "Alabama", + "city": "Genoa" + } + }, + { + "id": 8508, + "name": "Kimberly Forbes", + "gender": "female", + "age": 71, + "address": { + "state": "Arizona", + "city": "Esmont" + } + }, + { + "id": 8509, + "name": "Merritt Landry", + "gender": "male", + "age": 66, + "address": { + "state": "Nebraska", + "city": "Advance" + } + }, + { + "id": 8510, + "name": "Deloris Gutierrez", + "gender": "female", + "age": 45, + "address": { + "state": "Washington", + "city": "Windsor" + } + }, + { + "id": 8511, + "name": "Virginia Guerrero", + "gender": "female", + "age": 50, + "address": { + "state": "Louisiana", + "city": "Chamberino" + } + }, + { + "id": 8512, + "name": "Kristine Hodges", + "gender": "female", + "age": 40, + "address": { + "state": "Tennessee", + "city": "Thornport" + } + }, + { + "id": 8513, + "name": "Preston Holder", + "gender": "male", + "age": 35, + "address": { + "state": "Minnesota", + "city": "Edinburg" + } + }, + { + "id": 8514, + "name": "Kristin Coffey", + "gender": "female", + "age": 82, + "address": { + "state": "Oregon", + "city": "Elrama" + } + }, + { + "id": 8515, + "name": "Bridgette Goodman", + "gender": "female", + "age": 57, + "address": { + "state": "Maine", + "city": "Bethany" + } + }, + { + "id": 8516, + "name": "Mckee Kramer", + "gender": "male", + "age": 32, + "address": { + "state": "South Carolina", + "city": "Eastvale" + } + }, + { + "id": 8517, + "name": "Guerrero Oliver", + "gender": "male", + "age": 49, + "address": { + "state": "Virginia", + "city": "Watchtower" + } + }, + { + "id": 8518, + "name": "Mcconnell Oconnor", + "gender": "male", + "age": 55, + "address": { + "state": "Ohio", + "city": "Biehle" + } + }, + { + "id": 8519, + "name": "Nikki Jones", + "gender": "female", + "age": 67, + "address": { + "state": "Utah", + "city": "Chesterfield" + } + }, + { + "id": 8520, + "name": "Hoffman Donaldson", + "gender": "male", + "age": 39, + "address": { + "state": "South Dakota", + "city": "Orovada" + } + }, + { + "id": 8521, + "name": "Hart Haley", + "gender": "male", + "age": 76, + "address": { + "state": "Alaska", + "city": "Groveville" + } + }, + { + "id": 8522, + "name": "Blanchard Henson", + "gender": "male", + "age": 29, + "address": { + "state": "Montana", + "city": "Ebro" + } + }, + { + "id": 8523, + "name": "Vang Wilkinson", + "gender": "male", + "age": 28, + "address": { + "state": "Michigan", + "city": "Urbana" + } + }, + { + "id": 8524, + "name": "Elnora Nelson", + "gender": "female", + "age": 45, + "address": { + "state": "Kansas", + "city": "Allamuchy" + } + }, + { + "id": 8525, + "name": "Dale Young", + "gender": "female", + "age": 55, + "address": { + "state": "Missouri", + "city": "Ballico" + } + }, + { + "id": 8526, + "name": "Aisha Weeks", + "gender": "female", + "age": 38, + "address": { + "state": "Maine", + "city": "Hinsdale" + } + }, + { + "id": 8527, + "name": "Humphrey Lyons", + "gender": "male", + "age": 56, + "address": { + "state": "Kentucky", + "city": "Lithium" + } + }, + { + "id": 8528, + "name": "Shannon Zamora", + "gender": "female", + "age": 70, + "address": { + "state": "Louisiana", + "city": "Darbydale" + } + }, + { + "id": 8529, + "name": "Abigail Harrington", + "gender": "female", + "age": 22, + "address": { + "state": "Idaho", + "city": "Madaket" + } + }, + { + "id": 8530, + "name": "Landry Clark", + "gender": "male", + "age": 72, + "address": { + "state": "Kansas", + "city": "Crucible" + } + }, + { + "id": 8531, + "name": "Susana Gamble", + "gender": "female", + "age": 37, + "address": { + "state": "Texas", + "city": "Hilltop" + } + }, + { + "id": 8532, + "name": "Valentine Taylor", + "gender": "male", + "age": 47, + "address": { + "state": "Montana", + "city": "Guilford" + } + }, + { + "id": 8533, + "name": "Holman Levine", + "gender": "male", + "age": 71, + "address": { + "state": "Minnesota", + "city": "Comptche" + } + }, + { + "id": 8534, + "name": "Ramos Buchanan", + "gender": "male", + "age": 71, + "address": { + "state": "Connecticut", + "city": "Greenfields" + } + }, + { + "id": 8535, + "name": "Henderson Shields", + "gender": "male", + "age": 65, + "address": { + "state": "Iowa", + "city": "Johnsonburg" + } + }, + { + "id": 8536, + "name": "Strickland Cobb", + "gender": "male", + "age": 38, + "address": { + "state": "New Jersey", + "city": "Abiquiu" + } + }, + { + "id": 8537, + "name": "Mccray Gray", + "gender": "male", + "age": 75, + "address": { + "state": "Pennsylvania", + "city": "Sardis" + } + }, + { + "id": 8538, + "name": "Rutledge Glass", + "gender": "male", + "age": 52, + "address": { + "state": "Nebraska", + "city": "Bagtown" + } + }, + { + "id": 8539, + "name": "Grant Kramer", + "gender": "male", + "age": 70, + "address": { + "state": "Colorado", + "city": "Kent" + } + }, + { + "id": 8540, + "name": "Lowe Carrillo", + "gender": "male", + "age": 76, + "address": { + "state": "Missouri", + "city": "Elbert" + } + }, + { + "id": 8541, + "name": "Brewer Hurst", + "gender": "male", + "age": 56, + "address": { + "state": "Tennessee", + "city": "Jenkinsville" + } + }, + { + "id": 8542, + "name": "Sasha Tucker", + "gender": "female", + "age": 25, + "address": { + "state": "Ohio", + "city": "Windsor" + } + }, + { + "id": 8543, + "name": "Doris Morgan", + "gender": "female", + "age": 19, + "address": { + "state": "Virginia", + "city": "Waikele" + } + }, + { + "id": 8544, + "name": "Love Gregory", + "gender": "male", + "age": 72, + "address": { + "state": "Massachusetts", + "city": "Bendon" + } + }, + { + "id": 8545, + "name": "Jacqueline Raymond", + "gender": "female", + "age": 30, + "address": { + "state": "Illinois", + "city": "Moscow" + } + }, + { + "id": 8546, + "name": "Dionne Hensley", + "gender": "female", + "age": 57, + "address": { + "state": "Vermont", + "city": "Tetherow" + } + }, + { + "id": 8547, + "name": "Estrada Irwin", + "gender": "male", + "age": 73, + "address": { + "state": "New Hampshire", + "city": "Newry" + } + }, + { + "id": 8548, + "name": "Sparks Golden", + "gender": "male", + "age": 53, + "address": { + "state": "Utah", + "city": "Wacissa" + } + }, + { + "id": 8549, + "name": "Burton Odom", + "gender": "male", + "age": 61, + "address": { + "state": "Arizona", + "city": "Crayne" + } + }, + { + "id": 8550, + "name": "Sheppard Joyner", + "gender": "male", + "age": 29, + "address": { + "state": "Rhode Island", + "city": "Martinez" + } + }, + { + "id": 8551, + "name": "Sherman Phelps", + "gender": "male", + "age": 23, + "address": { + "state": "California", + "city": "Riviera" + } + }, + { + "id": 8552, + "name": "Morales Albert", + "gender": "male", + "age": 58, + "address": { + "state": "Nevada", + "city": "Robbins" + } + }, + { + "id": 8553, + "name": "Lisa Wade", + "gender": "female", + "age": 73, + "address": { + "state": "New York", + "city": "Tivoli" + } + }, + { + "id": 8554, + "name": "Nora Chase", + "gender": "female", + "age": 18, + "address": { + "state": "Arkansas", + "city": "Tuskahoma" + } + }, + { + "id": 8555, + "name": "Maureen Charles", + "gender": "female", + "age": 49, + "address": { + "state": "North Carolina", + "city": "Lowgap" + } + }, + { + "id": 8556, + "name": "Galloway Yang", + "gender": "male", + "age": 61, + "address": { + "state": "South Dakota", + "city": "Navarre" + } + }, + { + "id": 8557, + "name": "Bentley Weeks", + "gender": "male", + "age": 27, + "address": { + "state": "North Dakota", + "city": "Rose" + } + }, + { + "id": 8558, + "name": "Carmella Castro", + "gender": "female", + "age": 61, + "address": { + "state": "Wisconsin", + "city": "Epworth" + } + }, + { + "id": 8559, + "name": "Beasley Reeves", + "gender": "male", + "age": 76, + "address": { + "state": "West Virginia", + "city": "Sanford" + } + }, + { + "id": 8560, + "name": "Cecelia Arnold", + "gender": "female", + "age": 75, + "address": { + "state": "Michigan", + "city": "Farmers" + } + }, + { + "id": 8561, + "name": "Coleman Romero", + "gender": "male", + "age": 46, + "address": { + "state": "Oregon", + "city": "Stollings" + } + }, + { + "id": 8562, + "name": "Alba French", + "gender": "female", + "age": 38, + "address": { + "state": "Georgia", + "city": "Camino" + } + }, + { + "id": 8563, + "name": "Wolfe Mcdowell", + "gender": "male", + "age": 80, + "address": { + "state": "Florida", + "city": "Boling" + } + }, + { + "id": 8564, + "name": "Marcie Langley", + "gender": "female", + "age": 80, + "address": { + "state": "Mississippi", + "city": "Yonah" + } + }, + { + "id": 8565, + "name": "Miranda Andrews", + "gender": "male", + "age": 23, + "address": { + "state": "Wyoming", + "city": "Rossmore" + } + }, + { + "id": 8566, + "name": "Deloris Bolton", + "gender": "female", + "age": 56, + "address": { + "state": "New Mexico", + "city": "Wilsonia" + } + }, + { + "id": 8567, + "name": "Monroe Hill", + "gender": "male", + "age": 79, + "address": { + "state": "Maryland", + "city": "Cucumber" + } + }, + { + "id": 8568, + "name": "Edith Ratliff", + "gender": "female", + "age": 44, + "address": { + "state": "Indiana", + "city": "Riner" + } + }, + { + "id": 8569, + "name": "Wilder Banks", + "gender": "male", + "age": 31, + "address": { + "state": "Alaska", + "city": "Williamson" + } + }, + { + "id": 8570, + "name": "Robinson Elliott", + "gender": "male", + "age": 63, + "address": { + "state": "Alabama", + "city": "Allamuchy" + } + }, + { + "id": 8571, + "name": "Beatrice Delaney", + "gender": "female", + "age": 70, + "address": { + "state": "South Carolina", + "city": "Garberville" + } + }, + { + "id": 8572, + "name": "Cain Wilcox", + "gender": "male", + "age": 46, + "address": { + "state": "Delaware", + "city": "Oceola" + } + }, + { + "id": 8573, + "name": "Contreras Sims", + "gender": "male", + "age": 50, + "address": { + "state": "Hawaii", + "city": "Downsville" + } + }, + { + "id": 8574, + "name": "Conley Baxter", + "gender": "male", + "age": 41, + "address": { + "state": "Washington", + "city": "Homestead" + } + }, + { + "id": 8575, + "name": "Mcmillan Contreras", + "gender": "male", + "age": 59, + "address": { + "state": "Arizona", + "city": "Stewart" + } + }, + { + "id": 8576, + "name": "Ronda Boyer", + "gender": "female", + "age": 33, + "address": { + "state": "Washington", + "city": "Tilden" + } + }, + { + "id": 8577, + "name": "Milagros Mckee", + "gender": "female", + "age": 56, + "address": { + "state": "Minnesota", + "city": "Coldiron" + } + }, + { + "id": 8578, + "name": "Pearl Vance", + "gender": "female", + "age": 80, + "address": { + "state": "New York", + "city": "Joppa" + } + }, + { + "id": 8579, + "name": "Solomon Oneal", + "gender": "male", + "age": 82, + "address": { + "state": "Michigan", + "city": "Esmont" + } + }, + { + "id": 8580, + "name": "Julia Murphy", + "gender": "female", + "age": 80, + "address": { + "state": "Oregon", + "city": "Vaughn" + } + }, + { + "id": 8581, + "name": "Branch Fischer", + "gender": "male", + "age": 68, + "address": { + "state": "Virginia", + "city": "Finderne" + } + }, + { + "id": 8582, + "name": "Briana Parker", + "gender": "female", + "age": 47, + "address": { + "state": "Indiana", + "city": "Glenshaw" + } + }, + { + "id": 8583, + "name": "Stark Good", + "gender": "male", + "age": 55, + "address": { + "state": "Tennessee", + "city": "Innsbrook" + } + }, + { + "id": 8584, + "name": "Lucille Gallegos", + "gender": "female", + "age": 39, + "address": { + "state": "South Dakota", + "city": "Rosburg" + } + }, + { + "id": 8585, + "name": "Brennan Stanley", + "gender": "male", + "age": 56, + "address": { + "state": "Maryland", + "city": "Soham" + } + }, + { + "id": 8586, + "name": "Adkins Villarreal", + "gender": "male", + "age": 30, + "address": { + "state": "Alaska", + "city": "Temperanceville" + } + }, + { + "id": 8587, + "name": "Lakeisha Alvarado", + "gender": "female", + "age": 20, + "address": { + "state": "Missouri", + "city": "Succasunna" + } + }, + { + "id": 8588, + "name": "Lauri Lamb", + "gender": "female", + "age": 74, + "address": { + "state": "Arkansas", + "city": "Wheatfields" + } + }, + { + "id": 8589, + "name": "Claudette Rivera", + "gender": "female", + "age": 79, + "address": { + "state": "Louisiana", + "city": "Cresaptown" + } + }, + { + "id": 8590, + "name": "Nelson Gibbs", + "gender": "male", + "age": 71, + "address": { + "state": "Alabama", + "city": "Ezel" + } + }, + { + "id": 8591, + "name": "Sweet Ball", + "gender": "male", + "age": 32, + "address": { + "state": "Nebraska", + "city": "Bison" + } + }, + { + "id": 8592, + "name": "Noel Singleton", + "gender": "male", + "age": 79, + "address": { + "state": "Nevada", + "city": "Graniteville" + } + }, + { + "id": 8593, + "name": "Kent Leonard", + "gender": "male", + "age": 53, + "address": { + "state": "Utah", + "city": "Marienthal" + } + }, + { + "id": 8594, + "name": "Wendi Estes", + "gender": "female", + "age": 64, + "address": { + "state": "Colorado", + "city": "Chaparrito" + } + }, + { + "id": 8595, + "name": "Stacey Sanchez", + "gender": "female", + "age": 50, + "address": { + "state": "Georgia", + "city": "Rossmore" + } + }, + { + "id": 8596, + "name": "Cecilia Small", + "gender": "female", + "age": 63, + "address": { + "state": "Pennsylvania", + "city": "Hendersonville" + } + }, + { + "id": 8597, + "name": "Kerr Thornton", + "gender": "male", + "age": 25, + "address": { + "state": "Florida", + "city": "Rehrersburg" + } + }, + { + "id": 8598, + "name": "Myra Jackson", + "gender": "female", + "age": 23, + "address": { + "state": "Iowa", + "city": "Terlingua" + } + }, + { + "id": 8599, + "name": "Montoya Knight", + "gender": "male", + "age": 34, + "address": { + "state": "Delaware", + "city": "Strykersville" + } + }, + { + "id": 8600, + "name": "Brewer Ballard", + "gender": "male", + "age": 58, + "address": { + "state": "North Dakota", + "city": "Belmont" + } + }, + { + "id": 8601, + "name": "Edwina Henderson", + "gender": "female", + "age": 31, + "address": { + "state": "New Jersey", + "city": "Edinburg" + } + }, + { + "id": 8602, + "name": "Strickland Jenkins", + "gender": "male", + "age": 56, + "address": { + "state": "New Mexico", + "city": "Kaka" + } + }, + { + "id": 8603, + "name": "Burns Crawford", + "gender": "male", + "age": 54, + "address": { + "state": "Connecticut", + "city": "Crenshaw" + } + }, + { + "id": 8604, + "name": "Malone Rowe", + "gender": "male", + "age": 36, + "address": { + "state": "Illinois", + "city": "Richville" + } + }, + { + "id": 8605, + "name": "Baker Wolf", + "gender": "male", + "age": 54, + "address": { + "state": "Ohio", + "city": "Escondida" + } + }, + { + "id": 8606, + "name": "Vera Barry", + "gender": "female", + "age": 45, + "address": { + "state": "Vermont", + "city": "Lemoyne" + } + }, + { + "id": 8607, + "name": "Kate Rivers", + "gender": "female", + "age": 38, + "address": { + "state": "Wyoming", + "city": "Gallina" + } + }, + { + "id": 8608, + "name": "Hutchinson Bruce", + "gender": "male", + "age": 22, + "address": { + "state": "Maine", + "city": "Linwood" + } + }, + { + "id": 8609, + "name": "Cleveland Lancaster", + "gender": "male", + "age": 48, + "address": { + "state": "Texas", + "city": "Avoca" + } + }, + { + "id": 8610, + "name": "Katherine Franks", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Robinette" + } + }, + { + "id": 8611, + "name": "Jacobson Summers", + "gender": "male", + "age": 25, + "address": { + "state": "Wisconsin", + "city": "Cressey" + } + }, + { + "id": 8612, + "name": "Raquel Newton", + "gender": "female", + "age": 76, + "address": { + "state": "South Carolina", + "city": "Draper" + } + }, + { + "id": 8613, + "name": "Tina Langley", + "gender": "female", + "age": 23, + "address": { + "state": "Hawaii", + "city": "Grenelefe" + } + }, + { + "id": 8614, + "name": "Christina Hudson", + "gender": "female", + "age": 62, + "address": { + "state": "Kentucky", + "city": "Leyner" + } + }, + { + "id": 8615, + "name": "Greene Berry", + "gender": "male", + "age": 56, + "address": { + "state": "Kansas", + "city": "National" + } + }, + { + "id": 8616, + "name": "Janette Mccullough", + "gender": "female", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Sims" + } + }, + { + "id": 8617, + "name": "Reva Everett", + "gender": "female", + "age": 36, + "address": { + "state": "Idaho", + "city": "Englevale" + } + }, + { + "id": 8618, + "name": "Maryellen Wooten", + "gender": "female", + "age": 64, + "address": { + "state": "Oklahoma", + "city": "Dawn" + } + }, + { + "id": 8619, + "name": "Castillo Hood", + "gender": "male", + "age": 36, + "address": { + "state": "Mississippi", + "city": "Alderpoint" + } + }, + { + "id": 8620, + "name": "Golden Goodman", + "gender": "male", + "age": 43, + "address": { + "state": "West Virginia", + "city": "Byrnedale" + } + }, + { + "id": 8621, + "name": "Clay Davenport", + "gender": "male", + "age": 17, + "address": { + "state": "Montana", + "city": "Babb" + } + }, + { + "id": 8622, + "name": "Alyce Bond", + "gender": "female", + "age": 65, + "address": { + "state": "Massachusetts", + "city": "Gwynn" + } + }, + { + "id": 8623, + "name": "Tiffany Norman", + "gender": "female", + "age": 50, + "address": { + "state": "California", + "city": "Ruckersville" + } + }, + { + "id": 8624, + "name": "Burch Nolan", + "gender": "male", + "age": 50, + "address": { + "state": "Nevada", + "city": "Herlong" + } + }, + { + "id": 8625, + "name": "Olive Whitehead", + "gender": "female", + "age": 68, + "address": { + "state": "Indiana", + "city": "Omar" + } + }, + { + "id": 8626, + "name": "Latonya Cash", + "gender": "female", + "age": 57, + "address": { + "state": "Massachusetts", + "city": "Alafaya" + } + }, + { + "id": 8627, + "name": "Bridgett Weaver", + "gender": "female", + "age": 38, + "address": { + "state": "Ohio", + "city": "Blende" + } + }, + { + "id": 8628, + "name": "Burnett Thomas", + "gender": "male", + "age": 33, + "address": { + "state": "Pennsylvania", + "city": "Townsend" + } + }, + { + "id": 8629, + "name": "Craig Solis", + "gender": "male", + "age": 23, + "address": { + "state": "Connecticut", + "city": "Marenisco" + } + }, + { + "id": 8630, + "name": "Mercedes Blair", + "gender": "female", + "age": 81, + "address": { + "state": "Arkansas", + "city": "Beaverdale" + } + }, + { + "id": 8631, + "name": "Colon Adkins", + "gender": "male", + "age": 50, + "address": { + "state": "Oklahoma", + "city": "Alfarata" + } + }, + { + "id": 8632, + "name": "Amie Branch", + "gender": "female", + "age": 82, + "address": { + "state": "North Carolina", + "city": "Elliston" + } + }, + { + "id": 8633, + "name": "Woodward Willis", + "gender": "male", + "age": 41, + "address": { + "state": "Montana", + "city": "Grayhawk" + } + }, + { + "id": 8634, + "name": "Catalina Stout", + "gender": "female", + "age": 23, + "address": { + "state": "Michigan", + "city": "Garfield" + } + }, + { + "id": 8635, + "name": "Wagner Burch", + "gender": "male", + "age": 61, + "address": { + "state": "California", + "city": "Loyalhanna" + } + }, + { + "id": 8636, + "name": "Gomez Christian", + "gender": "male", + "age": 81, + "address": { + "state": "Missouri", + "city": "Connerton" + } + }, + { + "id": 8637, + "name": "Lela Tanner", + "gender": "female", + "age": 58, + "address": { + "state": "Minnesota", + "city": "Norvelt" + } + }, + { + "id": 8638, + "name": "Robles Baxter", + "gender": "male", + "age": 80, + "address": { + "state": "New Mexico", + "city": "Umapine" + } + }, + { + "id": 8639, + "name": "Conley Reed", + "gender": "male", + "age": 33, + "address": { + "state": "North Dakota", + "city": "Freelandville" + } + }, + { + "id": 8640, + "name": "Kelsey Morris", + "gender": "female", + "age": 23, + "address": { + "state": "Alaska", + "city": "Barstow" + } + }, + { + "id": 8641, + "name": "Josefa Miller", + "gender": "female", + "age": 19, + "address": { + "state": "Illinois", + "city": "Bentley" + } + }, + { + "id": 8642, + "name": "Melanie Cabrera", + "gender": "female", + "age": 47, + "address": { + "state": "Colorado", + "city": "Trucksville" + } + }, + { + "id": 8643, + "name": "Mable Marks", + "gender": "female", + "age": 17, + "address": { + "state": "New Hampshire", + "city": "Darrtown" + } + }, + { + "id": 8644, + "name": "Figueroa Montoya", + "gender": "male", + "age": 61, + "address": { + "state": "Kansas", + "city": "Richford" + } + }, + { + "id": 8645, + "name": "Connie Burt", + "gender": "female", + "age": 49, + "address": { + "state": "Iowa", + "city": "Waterloo" + } + }, + { + "id": 8646, + "name": "Kathryn Allen", + "gender": "female", + "age": 40, + "address": { + "state": "Idaho", + "city": "Oasis" + } + }, + { + "id": 8647, + "name": "Valentine Sims", + "gender": "male", + "age": 80, + "address": { + "state": "Florida", + "city": "Deercroft" + } + }, + { + "id": 8648, + "name": "Miranda Merritt", + "gender": "male", + "age": 53, + "address": { + "state": "Louisiana", + "city": "Onton" + } + }, + { + "id": 8649, + "name": "Cecelia Norman", + "gender": "female", + "age": 65, + "address": { + "state": "Wyoming", + "city": "Balm" + } + }, + { + "id": 8650, + "name": "Jarvis Salas", + "gender": "male", + "age": 17, + "address": { + "state": "Nebraska", + "city": "Robinson" + } + }, + { + "id": 8651, + "name": "Anita Heath", + "gender": "female", + "age": 37, + "address": { + "state": "Maine", + "city": "Chamizal" + } + }, + { + "id": 8652, + "name": "Michael Mccarty", + "gender": "male", + "age": 21, + "address": { + "state": "Utah", + "city": "Sims" + } + }, + { + "id": 8653, + "name": "Charles Rhodes", + "gender": "male", + "age": 61, + "address": { + "state": "Rhode Island", + "city": "Otranto" + } + }, + { + "id": 8654, + "name": "Anderson Olsen", + "gender": "male", + "age": 60, + "address": { + "state": "West Virginia", + "city": "Brandermill" + } + }, + { + "id": 8655, + "name": "Luella Roth", + "gender": "female", + "age": 27, + "address": { + "state": "Wisconsin", + "city": "Vicksburg" + } + }, + { + "id": 8656, + "name": "Santiago Mcconnell", + "gender": "male", + "age": 78, + "address": { + "state": "Virginia", + "city": "Weeksville" + } + }, + { + "id": 8657, + "name": "Pierce Pitts", + "gender": "male", + "age": 26, + "address": { + "state": "Tennessee", + "city": "Herbster" + } + }, + { + "id": 8658, + "name": "Mayer Sykes", + "gender": "male", + "age": 17, + "address": { + "state": "Mississippi", + "city": "Washington" + } + }, + { + "id": 8659, + "name": "Durham Harvey", + "gender": "male", + "age": 78, + "address": { + "state": "Vermont", + "city": "Northchase" + } + }, + { + "id": 8660, + "name": "Ewing Brock", + "gender": "male", + "age": 43, + "address": { + "state": "New York", + "city": "Sutton" + } + }, + { + "id": 8661, + "name": "Snider Clay", + "gender": "male", + "age": 34, + "address": { + "state": "Texas", + "city": "Sabillasville" + } + }, + { + "id": 8662, + "name": "Acevedo Cooper", + "gender": "male", + "age": 45, + "address": { + "state": "New Jersey", + "city": "Campo" + } + }, + { + "id": 8663, + "name": "Cathryn Hood", + "gender": "female", + "age": 44, + "address": { + "state": "Arizona", + "city": "Blackgum" + } + }, + { + "id": 8664, + "name": "Stacey Crosby", + "gender": "female", + "age": 33, + "address": { + "state": "Oregon", + "city": "Mathews" + } + }, + { + "id": 8665, + "name": "Abbott Sparks", + "gender": "male", + "age": 61, + "address": { + "state": "Washington", + "city": "Murillo" + } + }, + { + "id": 8666, + "name": "Patty Montgomery", + "gender": "female", + "age": 43, + "address": { + "state": "Alabama", + "city": "Westerville" + } + }, + { + "id": 8667, + "name": "Jennings Baird", + "gender": "male", + "age": 54, + "address": { + "state": "South Dakota", + "city": "Craig" + } + }, + { + "id": 8668, + "name": "Perry Compton", + "gender": "male", + "age": 18, + "address": { + "state": "South Carolina", + "city": "Virgie" + } + }, + { + "id": 8669, + "name": "Kaufman Rutledge", + "gender": "male", + "age": 82, + "address": { + "state": "Georgia", + "city": "Itmann" + } + }, + { + "id": 8670, + "name": "Rivers Padilla", + "gender": "male", + "age": 59, + "address": { + "state": "Kentucky", + "city": "Walland" + } + }, + { + "id": 8671, + "name": "Harvey Shields", + "gender": "male", + "age": 32, + "address": { + "state": "Delaware", + "city": "Swartzville" + } + }, + { + "id": 8672, + "name": "Tammie Dillard", + "gender": "female", + "age": 43, + "address": { + "state": "Maryland", + "city": "Belfair" + } + }, + { + "id": 8673, + "name": "Mcfadden Mcgee", + "gender": "male", + "age": 20, + "address": { + "state": "Idaho", + "city": "Oneida" + } + }, + { + "id": 8674, + "name": "Wood Mckinney", + "gender": "male", + "age": 22, + "address": { + "state": "Louisiana", + "city": "Hasty" + } + }, + { + "id": 8675, + "name": "Bailey Joyner", + "gender": "male", + "age": 22, + "address": { + "state": "Hawaii", + "city": "Allison" + } + }, + { + "id": 8676, + "name": "Bishop Gutierrez", + "gender": "male", + "age": 28, + "address": { + "state": "Georgia", + "city": "Epworth" + } + }, + { + "id": 8677, + "name": "Lacey Potter", + "gender": "female", + "age": 40, + "address": { + "state": "Arkansas", + "city": "Gasquet" + } + }, + { + "id": 8678, + "name": "Staci Gould", + "gender": "female", + "age": 54, + "address": { + "state": "Maryland", + "city": "Yonah" + } + }, + { + "id": 8679, + "name": "Meadows Ware", + "gender": "male", + "age": 54, + "address": { + "state": "Texas", + "city": "Waikele" + } + }, + { + "id": 8680, + "name": "Sanchez Wright", + "gender": "male", + "age": 78, + "address": { + "state": "Wisconsin", + "city": "Morgandale" + } + }, + { + "id": 8681, + "name": "Gibson Frank", + "gender": "male", + "age": 59, + "address": { + "state": "Delaware", + "city": "Mulino" + } + }, + { + "id": 8682, + "name": "Sherman Berger", + "gender": "male", + "age": 40, + "address": { + "state": "New Jersey", + "city": "Lithium" + } + }, + { + "id": 8683, + "name": "Marlene Cooley", + "gender": "female", + "age": 63, + "address": { + "state": "Washington", + "city": "Geyserville" + } + }, + { + "id": 8684, + "name": "Mack Flores", + "gender": "male", + "age": 37, + "address": { + "state": "Alaska", + "city": "Jacumba" + } + }, + { + "id": 8685, + "name": "Preston Yates", + "gender": "male", + "age": 47, + "address": { + "state": "Nevada", + "city": "Avoca" + } + }, + { + "id": 8686, + "name": "Carlson Whitley", + "gender": "male", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Urie" + } + }, + { + "id": 8687, + "name": "Guerra Robinson", + "gender": "male", + "age": 44, + "address": { + "state": "Virginia", + "city": "Holcombe" + } + }, + { + "id": 8688, + "name": "Polly Lucas", + "gender": "female", + "age": 27, + "address": { + "state": "New Mexico", + "city": "Vallonia" + } + }, + { + "id": 8689, + "name": "Shana French", + "gender": "female", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Statenville" + } + }, + { + "id": 8690, + "name": "Young Mcintyre", + "gender": "male", + "age": 36, + "address": { + "state": "Michigan", + "city": "Suitland" + } + }, + { + "id": 8691, + "name": "Brooks Lopez", + "gender": "male", + "age": 61, + "address": { + "state": "Colorado", + "city": "Germanton" + } + }, + { + "id": 8692, + "name": "Horn Zimmerman", + "gender": "male", + "age": 63, + "address": { + "state": "Illinois", + "city": "Warsaw" + } + }, + { + "id": 8693, + "name": "Head Padilla", + "gender": "male", + "age": 44, + "address": { + "state": "Alabama", + "city": "Grandview" + } + }, + { + "id": 8694, + "name": "Savage Allen", + "gender": "male", + "age": 66, + "address": { + "state": "North Dakota", + "city": "Elbert" + } + }, + { + "id": 8695, + "name": "Petty Clay", + "gender": "male", + "age": 75, + "address": { + "state": "Vermont", + "city": "Crucible" + } + }, + { + "id": 8696, + "name": "Ortega Oconnor", + "gender": "male", + "age": 28, + "address": { + "state": "Oklahoma", + "city": "Keyport" + } + }, + { + "id": 8697, + "name": "Kelley Sweeney", + "gender": "female", + "age": 53, + "address": { + "state": "South Dakota", + "city": "Lupton" + } + }, + { + "id": 8698, + "name": "Rhoda Noble", + "gender": "female", + "age": 76, + "address": { + "state": "Mississippi", + "city": "Robbins" + } + }, + { + "id": 8699, + "name": "Erika Carney", + "gender": "female", + "age": 32, + "address": { + "state": "Montana", + "city": "Martell" + } + }, + { + "id": 8700, + "name": "Lizzie Santana", + "gender": "female", + "age": 20, + "address": { + "state": "Maine", + "city": "Harrison" + } + }, + { + "id": 8701, + "name": "Everett Wheeler", + "gender": "male", + "age": 50, + "address": { + "state": "New Hampshire", + "city": "Darbydale" + } + }, + { + "id": 8702, + "name": "Holman Hartman", + "gender": "male", + "age": 49, + "address": { + "state": "Nebraska", + "city": "Rossmore" + } + }, + { + "id": 8703, + "name": "Addie Adams", + "gender": "female", + "age": 82, + "address": { + "state": "Pennsylvania", + "city": "Canoochee" + } + }, + { + "id": 8704, + "name": "Duffy Contreras", + "gender": "male", + "age": 32, + "address": { + "state": "Oregon", + "city": "Stewart" + } + }, + { + "id": 8705, + "name": "Rosario Erickson", + "gender": "male", + "age": 52, + "address": { + "state": "California", + "city": "Ilchester" + } + }, + { + "id": 8706, + "name": "Charlene Boyer", + "gender": "female", + "age": 71, + "address": { + "state": "Arizona", + "city": "Winchester" + } + }, + { + "id": 8707, + "name": "Barrera Cook", + "gender": "male", + "age": 52, + "address": { + "state": "Ohio", + "city": "Caledonia" + } + }, + { + "id": 8708, + "name": "Vicki House", + "gender": "female", + "age": 58, + "address": { + "state": "South Carolina", + "city": "Sanborn" + } + }, + { + "id": 8709, + "name": "Rhodes Nelson", + "gender": "male", + "age": 60, + "address": { + "state": "Kansas", + "city": "Gardners" + } + }, + { + "id": 8710, + "name": "Conley Ferrell", + "gender": "male", + "age": 35, + "address": { + "state": "Kentucky", + "city": "Starks" + } + }, + { + "id": 8711, + "name": "Singleton Dalton", + "gender": "male", + "age": 58, + "address": { + "state": "West Virginia", + "city": "Kula" + } + }, + { + "id": 8712, + "name": "Walsh Blackwell", + "gender": "male", + "age": 64, + "address": { + "state": "Minnesota", + "city": "Concho" + } + }, + { + "id": 8713, + "name": "Noemi Horn", + "gender": "female", + "age": 34, + "address": { + "state": "Missouri", + "city": "Stockdale" + } + }, + { + "id": 8714, + "name": "Craft Atkins", + "gender": "male", + "age": 56, + "address": { + "state": "Utah", + "city": "Gibsonia" + } + }, + { + "id": 8715, + "name": "Alfreda Andrews", + "gender": "female", + "age": 19, + "address": { + "state": "Massachusetts", + "city": "Wadsworth" + } + }, + { + "id": 8716, + "name": "Pam Morales", + "gender": "female", + "age": 77, + "address": { + "state": "Iowa", + "city": "Waterford" + } + }, + { + "id": 8717, + "name": "Reeves Levy", + "gender": "male", + "age": 20, + "address": { + "state": "Rhode Island", + "city": "Glenshaw" + } + }, + { + "id": 8718, + "name": "Juarez Barlow", + "gender": "male", + "age": 58, + "address": { + "state": "Wyoming", + "city": "Marion" + } + }, + { + "id": 8719, + "name": "Paula Guerrero", + "gender": "female", + "age": 75, + "address": { + "state": "Tennessee", + "city": "Catherine" + } + }, + { + "id": 8720, + "name": "Joan Blanchard", + "gender": "female", + "age": 68, + "address": { + "state": "Florida", + "city": "Snowville" + } + }, + { + "id": 8721, + "name": "Whitaker Simmons", + "gender": "male", + "age": 71, + "address": { + "state": "Indiana", + "city": "Castleton" + } + }, + { + "id": 8722, + "name": "Sargent Berry", + "gender": "male", + "age": 61, + "address": { + "state": "Washington", + "city": "Nile" + } + }, + { + "id": 8723, + "name": "Compton Lindsay", + "gender": "male", + "age": 19, + "address": { + "state": "New Hampshire", + "city": "Watrous" + } + }, + { + "id": 8724, + "name": "Abbott Richard", + "gender": "male", + "age": 55, + "address": { + "state": "Wyoming", + "city": "Guthrie" + } + }, + { + "id": 8725, + "name": "Blankenship Frazier", + "gender": "male", + "age": 21, + "address": { + "state": "North Carolina", + "city": "Laurelton" + } + }, + { + "id": 8726, + "name": "Walters Stout", + "gender": "male", + "age": 54, + "address": { + "state": "South Carolina", + "city": "Sexton" + } + }, + { + "id": 8727, + "name": "Serena Hopkins", + "gender": "female", + "age": 27, + "address": { + "state": "Massachusetts", + "city": "Nipinnawasee" + } + }, + { + "id": 8728, + "name": "Glenda Santos", + "gender": "female", + "age": 28, + "address": { + "state": "Iowa", + "city": "Deercroft" + } + }, + { + "id": 8729, + "name": "Stephanie Roach", + "gender": "female", + "age": 63, + "address": { + "state": "Nebraska", + "city": "Omar" + } + }, + { + "id": 8730, + "name": "Alexandra Alexander", + "gender": "female", + "age": 46, + "address": { + "state": "Alaska", + "city": "Northchase" + } + }, + { + "id": 8731, + "name": "Lee Bryan", + "gender": "male", + "age": 56, + "address": { + "state": "Tennessee", + "city": "Summerset" + } + }, + { + "id": 8732, + "name": "Lilly Sullivan", + "gender": "female", + "age": 33, + "address": { + "state": "Indiana", + "city": "Mansfield" + } + }, + { + "id": 8733, + "name": "Hoover Matthews", + "gender": "male", + "age": 47, + "address": { + "state": "Montana", + "city": "Disautel" + } + }, + { + "id": 8734, + "name": "Michael Goodman", + "gender": "female", + "age": 48, + "address": { + "state": "California", + "city": "Seymour" + } + }, + { + "id": 8735, + "name": "Bentley Conway", + "gender": "male", + "age": 18, + "address": { + "state": "Idaho", + "city": "Chautauqua" + } + }, + { + "id": 8736, + "name": "Vargas Bruce", + "gender": "male", + "age": 63, + "address": { + "state": "Kansas", + "city": "Wattsville" + } + }, + { + "id": 8737, + "name": "Downs Oneal", + "gender": "male", + "age": 17, + "address": { + "state": "Michigan", + "city": "Crown" + } + }, + { + "id": 8738, + "name": "Carpenter Cain", + "gender": "male", + "age": 57, + "address": { + "state": "Rhode Island", + "city": "Whitewater" + } + }, + { + "id": 8739, + "name": "Hughes Hickman", + "gender": "male", + "age": 52, + "address": { + "state": "Colorado", + "city": "Carrizo" + } + }, + { + "id": 8740, + "name": "Harmon Reyes", + "gender": "male", + "age": 51, + "address": { + "state": "Florida", + "city": "Kipp" + } + }, + { + "id": 8741, + "name": "Spencer Hardin", + "gender": "male", + "age": 36, + "address": { + "state": "Delaware", + "city": "Kennedyville" + } + }, + { + "id": 8742, + "name": "Lucia Spears", + "gender": "female", + "age": 74, + "address": { + "state": "New Mexico", + "city": "Edgewater" + } + }, + { + "id": 8743, + "name": "Wanda Greene", + "gender": "female", + "age": 21, + "address": { + "state": "Oregon", + "city": "Salunga" + } + }, + { + "id": 8744, + "name": "Gracie Austin", + "gender": "female", + "age": 77, + "address": { + "state": "Louisiana", + "city": "Klagetoh" + } + }, + { + "id": 8745, + "name": "Blair Burt", + "gender": "male", + "age": 59, + "address": { + "state": "Alabama", + "city": "Coaldale" + } + }, + { + "id": 8746, + "name": "Shelly Holmes", + "gender": "female", + "age": 23, + "address": { + "state": "West Virginia", + "city": "Fingerville" + } + }, + { + "id": 8747, + "name": "Solis Hatfield", + "gender": "male", + "age": 37, + "address": { + "state": "Connecticut", + "city": "Harborton" + } + }, + { + "id": 8748, + "name": "Alisa Harding", + "gender": "female", + "age": 34, + "address": { + "state": "New York", + "city": "Bluffview" + } + }, + { + "id": 8749, + "name": "Huffman Burris", + "gender": "male", + "age": 44, + "address": { + "state": "Georgia", + "city": "Benson" + } + }, + { + "id": 8750, + "name": "Kennedy Pittman", + "gender": "male", + "age": 78, + "address": { + "state": "North Dakota", + "city": "Northridge" + } + }, + { + "id": 8751, + "name": "Meyer Farley", + "gender": "male", + "age": 51, + "address": { + "state": "Pennsylvania", + "city": "Dyckesville" + } + }, + { + "id": 8752, + "name": "Holly Willis", + "gender": "female", + "age": 82, + "address": { + "state": "Missouri", + "city": "Templeton" + } + }, + { + "id": 8753, + "name": "Cash Carter", + "gender": "male", + "age": 62, + "address": { + "state": "Maryland", + "city": "Beason" + } + }, + { + "id": 8754, + "name": "Hardin Underwood", + "gender": "male", + "age": 21, + "address": { + "state": "Wisconsin", + "city": "Talpa" + } + }, + { + "id": 8755, + "name": "Hull Craig", + "gender": "male", + "age": 17, + "address": { + "state": "Kentucky", + "city": "Gambrills" + } + }, + { + "id": 8756, + "name": "Vaughn Gibbs", + "gender": "male", + "age": 41, + "address": { + "state": "Maine", + "city": "Independence" + } + }, + { + "id": 8757, + "name": "Bailey Hyde", + "gender": "male", + "age": 55, + "address": { + "state": "Nevada", + "city": "Stollings" + } + }, + { + "id": 8758, + "name": "Bridgette Fernandez", + "gender": "female", + "age": 42, + "address": { + "state": "Texas", + "city": "Garnet" + } + }, + { + "id": 8759, + "name": "Amy Mooney", + "gender": "female", + "age": 62, + "address": { + "state": "Oklahoma", + "city": "Macdona" + } + }, + { + "id": 8760, + "name": "Stanton Trujillo", + "gender": "male", + "age": 73, + "address": { + "state": "Ohio", + "city": "Urbana" + } + }, + { + "id": 8761, + "name": "Marietta Acevedo", + "gender": "female", + "age": 29, + "address": { + "state": "Arizona", + "city": "Kansas" + } + }, + { + "id": 8762, + "name": "Susanna House", + "gender": "female", + "age": 81, + "address": { + "state": "New Jersey", + "city": "Gila" + } + }, + { + "id": 8763, + "name": "Briggs Holman", + "gender": "male", + "age": 24, + "address": { + "state": "Vermont", + "city": "Eureka" + } + }, + { + "id": 8764, + "name": "Camille Osborne", + "gender": "female", + "age": 49, + "address": { + "state": "Illinois", + "city": "Evergreen" + } + }, + { + "id": 8765, + "name": "Lou Booker", + "gender": "female", + "age": 40, + "address": { + "state": "Arkansas", + "city": "Defiance" + } + }, + { + "id": 8766, + "name": "Mcdaniel Bell", + "gender": "male", + "age": 61, + "address": { + "state": "Mississippi", + "city": "Islandia" + } + }, + { + "id": 8767, + "name": "Kristina Pace", + "gender": "female", + "age": 52, + "address": { + "state": "South Dakota", + "city": "Bordelonville" + } + }, + { + "id": 8768, + "name": "Eddie Mathews", + "gender": "female", + "age": 25, + "address": { + "state": "Hawaii", + "city": "Rosine" + } + }, + { + "id": 8769, + "name": "Mooney Mccullough", + "gender": "male", + "age": 73, + "address": { + "state": "Utah", + "city": "Dexter" + } + }, + { + "id": 8770, + "name": "Addie Olsen", + "gender": "female", + "age": 52, + "address": { + "state": "Minnesota", + "city": "Centerville" + } + }, + { + "id": 8771, + "name": "Graham Koch", + "gender": "male", + "age": 56, + "address": { + "state": "North Dakota", + "city": "Buxton" + } + }, + { + "id": 8772, + "name": "Ginger Simpson", + "gender": "female", + "age": 72, + "address": { + "state": "Ohio", + "city": "Snyderville" + } + }, + { + "id": 8773, + "name": "Neva Gay", + "gender": "female", + "age": 20, + "address": { + "state": "Rhode Island", + "city": "Cashtown" + } + }, + { + "id": 8774, + "name": "Natalie Roberts", + "gender": "female", + "age": 52, + "address": { + "state": "Maryland", + "city": "Roland" + } + }, + { + "id": 8775, + "name": "Hamilton Zamora", + "gender": "male", + "age": 82, + "address": { + "state": "Minnesota", + "city": "Leland" + } + }, + { + "id": 8776, + "name": "Flora Collins", + "gender": "female", + "age": 69, + "address": { + "state": "New Hampshire", + "city": "Chautauqua" + } + }, + { + "id": 8777, + "name": "Ball Juarez", + "gender": "male", + "age": 80, + "address": { + "state": "Oregon", + "city": "Cliff" + } + }, + { + "id": 8778, + "name": "Alexander Acosta", + "gender": "male", + "age": 43, + "address": { + "state": "West Virginia", + "city": "Cascades" + } + }, + { + "id": 8779, + "name": "Sears Morgan", + "gender": "male", + "age": 30, + "address": { + "state": "Connecticut", + "city": "Zortman" + } + }, + { + "id": 8780, + "name": "Viola Shannon", + "gender": "female", + "age": 18, + "address": { + "state": "Nebraska", + "city": "Wyano" + } + }, + { + "id": 8781, + "name": "Bradshaw Warner", + "gender": "male", + "age": 40, + "address": { + "state": "Kansas", + "city": "Enoree" + } + }, + { + "id": 8782, + "name": "Weiss Rhodes", + "gender": "male", + "age": 81, + "address": { + "state": "Florida", + "city": "Taft" + } + }, + { + "id": 8783, + "name": "Leach Peterson", + "gender": "male", + "age": 54, + "address": { + "state": "Hawaii", + "city": "Statenville" + } + }, + { + "id": 8784, + "name": "Myra Nguyen", + "gender": "female", + "age": 59, + "address": { + "state": "New Mexico", + "city": "Tioga" + } + }, + { + "id": 8785, + "name": "Wilkerson Woodward", + "gender": "male", + "age": 66, + "address": { + "state": "Nevada", + "city": "Connerton" + } + }, + { + "id": 8786, + "name": "Dollie Charles", + "gender": "female", + "age": 60, + "address": { + "state": "Alabama", + "city": "Homeworth" + } + }, + { + "id": 8787, + "name": "Ora Powers", + "gender": "female", + "age": 30, + "address": { + "state": "Massachusetts", + "city": "Clay" + } + }, + { + "id": 8788, + "name": "Craig Conway", + "gender": "male", + "age": 53, + "address": { + "state": "Arkansas", + "city": "Blende" + } + }, + { + "id": 8789, + "name": "Sylvia Dotson", + "gender": "female", + "age": 76, + "address": { + "state": "Louisiana", + "city": "Glenbrook" + } + }, + { + "id": 8790, + "name": "William Duke", + "gender": "male", + "age": 25, + "address": { + "state": "Delaware", + "city": "Noblestown" + } + }, + { + "id": 8791, + "name": "Hansen Stevenson", + "gender": "male", + "age": 21, + "address": { + "state": "Vermont", + "city": "Grimsley" + } + }, + { + "id": 8792, + "name": "Caitlin Golden", + "gender": "female", + "age": 28, + "address": { + "state": "Oklahoma", + "city": "Mappsville" + } + }, + { + "id": 8793, + "name": "Geraldine Salas", + "gender": "female", + "age": 18, + "address": { + "state": "New Jersey", + "city": "Ilchester" + } + }, + { + "id": 8794, + "name": "Shelia Klein", + "gender": "female", + "age": 32, + "address": { + "state": "California", + "city": "Curtice" + } + }, + { + "id": 8795, + "name": "Moon Trujillo", + "gender": "male", + "age": 74, + "address": { + "state": "Michigan", + "city": "Wattsville" + } + }, + { + "id": 8796, + "name": "Cain King", + "gender": "male", + "age": 65, + "address": { + "state": "Wyoming", + "city": "Orin" + } + }, + { + "id": 8797, + "name": "Brittany Berger", + "gender": "female", + "age": 78, + "address": { + "state": "Arizona", + "city": "Snelling" + } + }, + { + "id": 8798, + "name": "Kristen Reeves", + "gender": "female", + "age": 36, + "address": { + "state": "New York", + "city": "Limestone" + } + }, + { + "id": 8799, + "name": "Hayes Nash", + "gender": "male", + "age": 35, + "address": { + "state": "South Dakota", + "city": "Jessie" + } + }, + { + "id": 8800, + "name": "Walters Lewis", + "gender": "male", + "age": 77, + "address": { + "state": "Alaska", + "city": "Naomi" + } + }, + { + "id": 8801, + "name": "Catalina Gould", + "gender": "female", + "age": 45, + "address": { + "state": "Colorado", + "city": "Moraida" + } + }, + { + "id": 8802, + "name": "Renee Gross", + "gender": "female", + "age": 58, + "address": { + "state": "Tennessee", + "city": "Ona" + } + }, + { + "id": 8803, + "name": "Rene Branch", + "gender": "female", + "age": 52, + "address": { + "state": "Iowa", + "city": "Enlow" + } + }, + { + "id": 8804, + "name": "Beard Garcia", + "gender": "male", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Greenwich" + } + }, + { + "id": 8805, + "name": "Lindsay Marks", + "gender": "female", + "age": 69, + "address": { + "state": "Wisconsin", + "city": "Waumandee" + } + }, + { + "id": 8806, + "name": "Shaffer Marsh", + "gender": "male", + "age": 62, + "address": { + "state": "Illinois", + "city": "Idledale" + } + }, + { + "id": 8807, + "name": "Spencer Garrett", + "gender": "male", + "age": 70, + "address": { + "state": "Mississippi", + "city": "Hiseville" + } + }, + { + "id": 8808, + "name": "Morgan Bruce", + "gender": "female", + "age": 43, + "address": { + "state": "Georgia", + "city": "Hinsdale" + } + }, + { + "id": 8809, + "name": "Stacy Banks", + "gender": "female", + "age": 46, + "address": { + "state": "Indiana", + "city": "Fivepointville" + } + }, + { + "id": 8810, + "name": "Ophelia Daugherty", + "gender": "female", + "age": 22, + "address": { + "state": "Pennsylvania", + "city": "Graball" + } + }, + { + "id": 8811, + "name": "Willa Spence", + "gender": "female", + "age": 80, + "address": { + "state": "Texas", + "city": "Northridge" + } + }, + { + "id": 8812, + "name": "Joan Garrison", + "gender": "female", + "age": 49, + "address": { + "state": "Virginia", + "city": "Whipholt" + } + }, + { + "id": 8813, + "name": "Beverley Maxwell", + "gender": "female", + "age": 26, + "address": { + "state": "Kentucky", + "city": "Camptown" + } + }, + { + "id": 8814, + "name": "Dominguez Johns", + "gender": "male", + "age": 72, + "address": { + "state": "Utah", + "city": "Rivera" + } + }, + { + "id": 8815, + "name": "Helga Jimenez", + "gender": "female", + "age": 58, + "address": { + "state": "Idaho", + "city": "Westerville" + } + }, + { + "id": 8816, + "name": "Hooper Wilson", + "gender": "male", + "age": 41, + "address": { + "state": "Maine", + "city": "Trail" + } + }, + { + "id": 8817, + "name": "Clayton Weber", + "gender": "male", + "age": 55, + "address": { + "state": "Washington", + "city": "Oley" + } + }, + { + "id": 8818, + "name": "Wong Wells", + "gender": "male", + "age": 28, + "address": { + "state": "Missouri", + "city": "Staples" + } + }, + { + "id": 8819, + "name": "Casey Dudley", + "gender": "female", + "age": 51, + "address": { + "state": "Montana", + "city": "Bridgetown" + } + }, + { + "id": 8820, + "name": "Wendi Campbell", + "gender": "female", + "age": 21, + "address": { + "state": "Kansas", + "city": "Cliff" + } + }, + { + "id": 8821, + "name": "Mckee Martin", + "gender": "male", + "age": 56, + "address": { + "state": "North Carolina", + "city": "Derwood" + } + }, + { + "id": 8822, + "name": "Mia Schwartz", + "gender": "female", + "age": 75, + "address": { + "state": "Mississippi", + "city": "Allentown" + } + }, + { + "id": 8823, + "name": "Levine Walters", + "gender": "male", + "age": 80, + "address": { + "state": "Minnesota", + "city": "Somerset" + } + }, + { + "id": 8824, + "name": "Cara Woodard", + "gender": "female", + "age": 55, + "address": { + "state": "Utah", + "city": "Ola" + } + }, + { + "id": 8825, + "name": "Dickson Clark", + "gender": "male", + "age": 30, + "address": { + "state": "Louisiana", + "city": "Odessa" + } + }, + { + "id": 8826, + "name": "Clara Holt", + "gender": "female", + "age": 77, + "address": { + "state": "Florida", + "city": "Elliott" + } + }, + { + "id": 8827, + "name": "House Terry", + "gender": "male", + "age": 36, + "address": { + "state": "Wisconsin", + "city": "Jacksonburg" + } + }, + { + "id": 8828, + "name": "Shawn Ferrell", + "gender": "female", + "age": 73, + "address": { + "state": "Missouri", + "city": "Rivers" + } + }, + { + "id": 8829, + "name": "Fry Barber", + "gender": "male", + "age": 74, + "address": { + "state": "New York", + "city": "Statenville" + } + }, + { + "id": 8830, + "name": "Jones Floyd", + "gender": "male", + "age": 29, + "address": { + "state": "New Hampshire", + "city": "Clarktown" + } + }, + { + "id": 8831, + "name": "Lula Shelton", + "gender": "female", + "age": 45, + "address": { + "state": "Pennsylvania", + "city": "Skyland" + } + }, + { + "id": 8832, + "name": "Nelda Stuart", + "gender": "female", + "age": 34, + "address": { + "state": "Washington", + "city": "Lund" + } + }, + { + "id": 8833, + "name": "Maryanne Webster", + "gender": "female", + "age": 25, + "address": { + "state": "New Jersey", + "city": "Garnet" + } + }, + { + "id": 8834, + "name": "Richmond Velasquez", + "gender": "male", + "age": 30, + "address": { + "state": "Hawaii", + "city": "Websterville" + } + }, + { + "id": 8835, + "name": "Pickett Booth", + "gender": "male", + "age": 41, + "address": { + "state": "Colorado", + "city": "Neahkahnie" + } + }, + { + "id": 8836, + "name": "Curtis Fields", + "gender": "male", + "age": 44, + "address": { + "state": "Arizona", + "city": "Fostoria" + } + }, + { + "id": 8837, + "name": "Moss Wade", + "gender": "male", + "age": 37, + "address": { + "state": "Arkansas", + "city": "Worton" + } + }, + { + "id": 8838, + "name": "Everett Perkins", + "gender": "male", + "age": 78, + "address": { + "state": "Massachusetts", + "city": "Knowlton" + } + }, + { + "id": 8839, + "name": "Angeline Chandler", + "gender": "female", + "age": 68, + "address": { + "state": "Montana", + "city": "Riner" + } + }, + { + "id": 8840, + "name": "Lindsay Adkins", + "gender": "female", + "age": 33, + "address": { + "state": "Maine", + "city": "Wollochet" + } + }, + { + "id": 8841, + "name": "Juliette Mcintosh", + "gender": "female", + "age": 81, + "address": { + "state": "Oklahoma", + "city": "Needmore" + } + }, + { + "id": 8842, + "name": "Lessie Castaneda", + "gender": "female", + "age": 23, + "address": { + "state": "Ohio", + "city": "Navarre" + } + }, + { + "id": 8843, + "name": "Joseph Dudley", + "gender": "male", + "age": 31, + "address": { + "state": "Georgia", + "city": "Slovan" + } + }, + { + "id": 8844, + "name": "Francesca Small", + "gender": "female", + "age": 54, + "address": { + "state": "West Virginia", + "city": "Why" + } + }, + { + "id": 8845, + "name": "Dunn Cantu", + "gender": "male", + "age": 44, + "address": { + "state": "Michigan", + "city": "Gila" + } + }, + { + "id": 8846, + "name": "Rochelle Webb", + "gender": "female", + "age": 40, + "address": { + "state": "Indiana", + "city": "Abiquiu" + } + }, + { + "id": 8847, + "name": "Ayala George", + "gender": "male", + "age": 65, + "address": { + "state": "South Dakota", + "city": "Crumpler" + } + }, + { + "id": 8848, + "name": "Whitley Dixon", + "gender": "male", + "age": 59, + "address": { + "state": "Vermont", + "city": "Jessie" + } + }, + { + "id": 8849, + "name": "Lizzie Wong", + "gender": "female", + "age": 56, + "address": { + "state": "Nevada", + "city": "Helen" + } + }, + { + "id": 8850, + "name": "Terri Delgado", + "gender": "female", + "age": 54, + "address": { + "state": "Idaho", + "city": "Blairstown" + } + }, + { + "id": 8851, + "name": "Holloway Albert", + "gender": "male", + "age": 42, + "address": { + "state": "Rhode Island", + "city": "Shrewsbury" + } + }, + { + "id": 8852, + "name": "Hewitt Bean", + "gender": "male", + "age": 24, + "address": { + "state": "Virginia", + "city": "Tecolotito" + } + }, + { + "id": 8853, + "name": "Bowen Klein", + "gender": "male", + "age": 45, + "address": { + "state": "Nebraska", + "city": "Breinigsville" + } + }, + { + "id": 8854, + "name": "White Pierce", + "gender": "male", + "age": 49, + "address": { + "state": "Maryland", + "city": "Gorst" + } + }, + { + "id": 8855, + "name": "Oconnor Todd", + "gender": "male", + "age": 59, + "address": { + "state": "California", + "city": "Duryea" + } + }, + { + "id": 8856, + "name": "Kellie Wilder", + "gender": "female", + "age": 30, + "address": { + "state": "Kentucky", + "city": "Glasgow" + } + }, + { + "id": 8857, + "name": "Debora Whitley", + "gender": "female", + "age": 52, + "address": { + "state": "Oregon", + "city": "Jeff" + } + }, + { + "id": 8858, + "name": "Rutledge Ford", + "gender": "male", + "age": 49, + "address": { + "state": "Tennessee", + "city": "Otranto" + } + }, + { + "id": 8859, + "name": "Manuela Valentine", + "gender": "female", + "age": 21, + "address": { + "state": "South Carolina", + "city": "Cazadero" + } + }, + { + "id": 8860, + "name": "Larson Hill", + "gender": "male", + "age": 42, + "address": { + "state": "Texas", + "city": "Deercroft" + } + }, + { + "id": 8861, + "name": "Barton Potts", + "gender": "male", + "age": 37, + "address": { + "state": "Alabama", + "city": "Biddle" + } + }, + { + "id": 8862, + "name": "Rivas Hester", + "gender": "male", + "age": 60, + "address": { + "state": "Delaware", + "city": "Machias" + } + }, + { + "id": 8863, + "name": "Espinoza Pickett", + "gender": "male", + "age": 37, + "address": { + "state": "Alaska", + "city": "Cashtown" + } + }, + { + "id": 8864, + "name": "Vazquez Wheeler", + "gender": "male", + "age": 28, + "address": { + "state": "Iowa", + "city": "Frank" + } + }, + { + "id": 8865, + "name": "Glenn Mooney", + "gender": "male", + "age": 42, + "address": { + "state": "Connecticut", + "city": "Cumberland" + } + }, + { + "id": 8866, + "name": "Chaney Ramsey", + "gender": "male", + "age": 23, + "address": { + "state": "North Dakota", + "city": "Driftwood" + } + }, + { + "id": 8867, + "name": "Rowena Bender", + "gender": "female", + "age": 26, + "address": { + "state": "Illinois", + "city": "Efland" + } + }, + { + "id": 8868, + "name": "Jenkins Berg", + "gender": "male", + "age": 65, + "address": { + "state": "Wyoming", + "city": "Bordelonville" + } + }, + { + "id": 8869, + "name": "Candice Ware", + "gender": "female", + "age": 42, + "address": { + "state": "Maryland", + "city": "Norvelt" + } + }, + { + "id": 8870, + "name": "Kaitlin Mcintosh", + "gender": "female", + "age": 32, + "address": { + "state": "Oregon", + "city": "Sharon" + } + }, + { + "id": 8871, + "name": "Annmarie Fulton", + "gender": "female", + "age": 33, + "address": { + "state": "Kansas", + "city": "Worcester" + } + }, + { + "id": 8872, + "name": "Nixon Cherry", + "gender": "male", + "age": 32, + "address": { + "state": "Massachusetts", + "city": "Osage" + } + }, + { + "id": 8873, + "name": "Elaine Kim", + "gender": "female", + "age": 26, + "address": { + "state": "Montana", + "city": "Eggertsville" + } + }, + { + "id": 8874, + "name": "Margery Quinn", + "gender": "female", + "age": 52, + "address": { + "state": "Vermont", + "city": "Crayne" + } + }, + { + "id": 8875, + "name": "Atkins Whitney", + "gender": "male", + "age": 32, + "address": { + "state": "Indiana", + "city": "Lowgap" + } + }, + { + "id": 8876, + "name": "Walker Cannon", + "gender": "male", + "age": 69, + "address": { + "state": "Ohio", + "city": "Rosewood" + } + }, + { + "id": 8877, + "name": "Janet Drake", + "gender": "female", + "age": 35, + "address": { + "state": "New Hampshire", + "city": "Blanco" + } + }, + { + "id": 8878, + "name": "Guzman Reeves", + "gender": "male", + "age": 61, + "address": { + "state": "Iowa", + "city": "Whitehaven" + } + }, + { + "id": 8879, + "name": "Rocha Sandoval", + "gender": "male", + "age": 20, + "address": { + "state": "Alaska", + "city": "Farmers" + } + }, + { + "id": 8880, + "name": "Smith Baker", + "gender": "male", + "age": 17, + "address": { + "state": "New York", + "city": "Robbins" + } + }, + { + "id": 8881, + "name": "Booker Newman", + "gender": "male", + "age": 36, + "address": { + "state": "Virginia", + "city": "Imperial" + } + }, + { + "id": 8882, + "name": "Marcie Eaton", + "gender": "female", + "age": 52, + "address": { + "state": "Wyoming", + "city": "Longoria" + } + }, + { + "id": 8883, + "name": "Guerra Davenport", + "gender": "male", + "age": 53, + "address": { + "state": "Kentucky", + "city": "Aberdeen" + } + }, + { + "id": 8884, + "name": "Moody Dunlap", + "gender": "male", + "age": 56, + "address": { + "state": "Hawaii", + "city": "Glenshaw" + } + }, + { + "id": 8885, + "name": "Bettye Leach", + "gender": "female", + "age": 81, + "address": { + "state": "Pennsylvania", + "city": "Fowlerville" + } + }, + { + "id": 8886, + "name": "Carly Chandler", + "gender": "female", + "age": 82, + "address": { + "state": "Georgia", + "city": "Blandburg" + } + }, + { + "id": 8887, + "name": "Mitchell Joyner", + "gender": "male", + "age": 60, + "address": { + "state": "California", + "city": "Barronett" + } + }, + { + "id": 8888, + "name": "Mcdonald Ramirez", + "gender": "male", + "age": 56, + "address": { + "state": "Texas", + "city": "Accoville" + } + }, + { + "id": 8889, + "name": "Bobbi Stanley", + "gender": "female", + "age": 41, + "address": { + "state": "Wisconsin", + "city": "Motley" + } + }, + { + "id": 8890, + "name": "Keri Vincent", + "gender": "female", + "age": 32, + "address": { + "state": "South Carolina", + "city": "Dundee" + } + }, + { + "id": 8891, + "name": "Fischer Hays", + "gender": "male", + "age": 53, + "address": { + "state": "Colorado", + "city": "Hamilton" + } + }, + { + "id": 8892, + "name": "Latonya Fitzpatrick", + "gender": "female", + "age": 66, + "address": { + "state": "Rhode Island", + "city": "Duryea" + } + }, + { + "id": 8893, + "name": "Hooper Conrad", + "gender": "male", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Glasgow" + } + }, + { + "id": 8894, + "name": "Rowena Dyer", + "gender": "female", + "age": 65, + "address": { + "state": "Missouri", + "city": "Garfield" + } + }, + { + "id": 8895, + "name": "Rowland Irwin", + "gender": "male", + "age": 43, + "address": { + "state": "Nebraska", + "city": "Chamizal" + } + }, + { + "id": 8896, + "name": "Gomez Ellis", + "gender": "male", + "age": 57, + "address": { + "state": "Nevada", + "city": "Geyserville" + } + }, + { + "id": 8897, + "name": "Dawn Rowland", + "gender": "female", + "age": 66, + "address": { + "state": "Alabama", + "city": "Kula" + } + }, + { + "id": 8898, + "name": "Mercedes Foster", + "gender": "female", + "age": 23, + "address": { + "state": "Idaho", + "city": "Darrtown" + } + }, + { + "id": 8899, + "name": "Brandy Harris", + "gender": "female", + "age": 43, + "address": { + "state": "Mississippi", + "city": "Wildwood" + } + }, + { + "id": 8900, + "name": "Shelton Velasquez", + "gender": "male", + "age": 20, + "address": { + "state": "Louisiana", + "city": "Needmore" + } + }, + { + "id": 8901, + "name": "Velasquez Griffin", + "gender": "male", + "age": 21, + "address": { + "state": "Washington", + "city": "Riceville" + } + }, + { + "id": 8902, + "name": "Kitty Boyle", + "gender": "female", + "age": 33, + "address": { + "state": "Illinois", + "city": "Grenelefe" + } + }, + { + "id": 8903, + "name": "Pitts Tate", + "gender": "male", + "age": 77, + "address": { + "state": "South Dakota", + "city": "Edneyville" + } + }, + { + "id": 8904, + "name": "Vinson Nelson", + "gender": "male", + "age": 76, + "address": { + "state": "West Virginia", + "city": "Gratton" + } + }, + { + "id": 8905, + "name": "Campos Douglas", + "gender": "male", + "age": 30, + "address": { + "state": "Michigan", + "city": "Carlton" + } + }, + { + "id": 8906, + "name": "Selena Craig", + "gender": "female", + "age": 77, + "address": { + "state": "New Mexico", + "city": "Orason" + } + }, + { + "id": 8907, + "name": "Silvia Kaufman", + "gender": "female", + "age": 74, + "address": { + "state": "North Dakota", + "city": "Floris" + } + }, + { + "id": 8908, + "name": "Morgan Perez", + "gender": "female", + "age": 18, + "address": { + "state": "Arkansas", + "city": "Fairmount" + } + }, + { + "id": 8909, + "name": "Nash Wiggins", + "gender": "male", + "age": 32, + "address": { + "state": "Florida", + "city": "Calverton" + } + }, + { + "id": 8910, + "name": "Roy Sullivan", + "gender": "male", + "age": 37, + "address": { + "state": "North Carolina", + "city": "Stonybrook" + } + }, + { + "id": 8911, + "name": "Booth Contreras", + "gender": "male", + "age": 45, + "address": { + "state": "Delaware", + "city": "Groton" + } + }, + { + "id": 8912, + "name": "Alford Schmidt", + "gender": "male", + "age": 60, + "address": { + "state": "Arizona", + "city": "Thornport" + } + }, + { + "id": 8913, + "name": "Mcgowan Blevins", + "gender": "male", + "age": 80, + "address": { + "state": "Utah", + "city": "Makena" + } + }, + { + "id": 8914, + "name": "Rachel Ward", + "gender": "female", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Hemlock" + } + }, + { + "id": 8915, + "name": "Deena Taylor", + "gender": "female", + "age": 58, + "address": { + "state": "Minnesota", + "city": "Caln" + } + }, + { + "id": 8916, + "name": "Noemi Kirkland", + "gender": "female", + "age": 62, + "address": { + "state": "New Jersey", + "city": "Noxen" + } + }, + { + "id": 8917, + "name": "Franklin Blankenship", + "gender": "male", + "age": 53, + "address": { + "state": "Maine", + "city": "Williams" + } + }, + { + "id": 8918, + "name": "Jeanie Mccall", + "gender": "female", + "age": 52, + "address": { + "state": "Michigan", + "city": "Hobucken" + } + }, + { + "id": 8919, + "name": "Sykes Best", + "gender": "male", + "age": 56, + "address": { + "state": "Montana", + "city": "Stevens" + } + }, + { + "id": 8920, + "name": "Aurelia Zimmerman", + "gender": "female", + "age": 67, + "address": { + "state": "Florida", + "city": "Stockdale" + } + }, + { + "id": 8921, + "name": "Flossie Dominguez", + "gender": "female", + "age": 81, + "address": { + "state": "New Hampshire", + "city": "Brookfield" + } + }, + { + "id": 8922, + "name": "Shields Tyler", + "gender": "male", + "age": 42, + "address": { + "state": "North Dakota", + "city": "Washington" + } + }, + { + "id": 8923, + "name": "Amanda Mullen", + "gender": "female", + "age": 41, + "address": { + "state": "Mississippi", + "city": "Carbonville" + } + }, + { + "id": 8924, + "name": "Carpenter Nieves", + "gender": "male", + "age": 34, + "address": { + "state": "South Dakota", + "city": "Twilight" + } + }, + { + "id": 8925, + "name": "Lewis Carlson", + "gender": "male", + "age": 48, + "address": { + "state": "Maryland", + "city": "Chamberino" + } + }, + { + "id": 8926, + "name": "Adela Gregory", + "gender": "female", + "age": 28, + "address": { + "state": "Wisconsin", + "city": "Valle" + } + }, + { + "id": 8927, + "name": "Collins Rhodes", + "gender": "male", + "age": 64, + "address": { + "state": "New York", + "city": "Cascades" + } + }, + { + "id": 8928, + "name": "Maryellen Shannon", + "gender": "female", + "age": 82, + "address": { + "state": "New Mexico", + "city": "Naomi" + } + }, + { + "id": 8929, + "name": "Nora Pollard", + "gender": "female", + "age": 69, + "address": { + "state": "Arizona", + "city": "Westphalia" + } + }, + { + "id": 8930, + "name": "Joanne Berg", + "gender": "female", + "age": 59, + "address": { + "state": "Kansas", + "city": "Bannock" + } + }, + { + "id": 8931, + "name": "Jewel Tran", + "gender": "female", + "age": 38, + "address": { + "state": "Massachusetts", + "city": "Jacksonwald" + } + }, + { + "id": 8932, + "name": "Kelley Day", + "gender": "female", + "age": 26, + "address": { + "state": "Oregon", + "city": "Linganore" + } + }, + { + "id": 8933, + "name": "Johanna Velazquez", + "gender": "female", + "age": 36, + "address": { + "state": "Vermont", + "city": "Eastvale" + } + }, + { + "id": 8934, + "name": "Shawn Velasquez", + "gender": "female", + "age": 58, + "address": { + "state": "Maine", + "city": "Tolu" + } + }, + { + "id": 8935, + "name": "Lydia Hansen", + "gender": "female", + "age": 65, + "address": { + "state": "Kentucky", + "city": "Waverly" + } + }, + { + "id": 8936, + "name": "Sara Roy", + "gender": "female", + "age": 52, + "address": { + "state": "Virginia", + "city": "Riceville" + } + }, + { + "id": 8937, + "name": "Scott Bradley", + "gender": "male", + "age": 80, + "address": { + "state": "Tennessee", + "city": "Clarksburg" + } + }, + { + "id": 8938, + "name": "Cash Harrison", + "gender": "male", + "age": 19, + "address": { + "state": "Texas", + "city": "Nipinnawasee" + } + }, + { + "id": 8939, + "name": "Guadalupe Sexton", + "gender": "female", + "age": 49, + "address": { + "state": "Hawaii", + "city": "Rose" + } + }, + { + "id": 8940, + "name": "Bean Boone", + "gender": "male", + "age": 79, + "address": { + "state": "Nevada", + "city": "Rosewood" + } + }, + { + "id": 8941, + "name": "Cornelia Walls", + "gender": "female", + "age": 61, + "address": { + "state": "South Carolina", + "city": "Montura" + } + }, + { + "id": 8942, + "name": "Caitlin Patrick", + "gender": "female", + "age": 24, + "address": { + "state": "Utah", + "city": "Fingerville" + } + }, + { + "id": 8943, + "name": "Patel Davidson", + "gender": "male", + "age": 22, + "address": { + "state": "Colorado", + "city": "Brogan" + } + }, + { + "id": 8944, + "name": "Essie Nunez", + "gender": "female", + "age": 59, + "address": { + "state": "California", + "city": "Corinne" + } + }, + { + "id": 8945, + "name": "Carver Duke", + "gender": "male", + "age": 64, + "address": { + "state": "Oklahoma", + "city": "Woodburn" + } + }, + { + "id": 8946, + "name": "Edwards Roth", + "gender": "male", + "age": 53, + "address": { + "state": "Nebraska", + "city": "Sexton" + } + }, + { + "id": 8947, + "name": "Helen Bruce", + "gender": "female", + "age": 39, + "address": { + "state": "Missouri", + "city": "Troy" + } + }, + { + "id": 8948, + "name": "Delaney Luna", + "gender": "male", + "age": 76, + "address": { + "state": "Idaho", + "city": "Seymour" + } + }, + { + "id": 8949, + "name": "Arnold Moore", + "gender": "male", + "age": 35, + "address": { + "state": "New Jersey", + "city": "Bellfountain" + } + }, + { + "id": 8950, + "name": "Harrison Lewis", + "gender": "male", + "age": 78, + "address": { + "state": "Alaska", + "city": "Kenvil" + } + }, + { + "id": 8951, + "name": "Cleveland Mckenzie", + "gender": "male", + "age": 74, + "address": { + "state": "Arkansas", + "city": "Mathews" + } + }, + { + "id": 8952, + "name": "Brewer Nolan", + "gender": "male", + "age": 66, + "address": { + "state": "Rhode Island", + "city": "Efland" + } + }, + { + "id": 8953, + "name": "Bolton Summers", + "gender": "male", + "age": 80, + "address": { + "state": "Minnesota", + "city": "Finderne" + } + }, + { + "id": 8954, + "name": "Melissa Jackson", + "gender": "female", + "age": 22, + "address": { + "state": "Georgia", + "city": "Bawcomville" + } + }, + { + "id": 8955, + "name": "Kerr Guerrero", + "gender": "male", + "age": 32, + "address": { + "state": "Alabama", + "city": "Lupton" + } + }, + { + "id": 8956, + "name": "Jill Hodge", + "gender": "female", + "age": 51, + "address": { + "state": "Connecticut", + "city": "Monument" + } + }, + { + "id": 8957, + "name": "Howell Blake", + "gender": "male", + "age": 33, + "address": { + "state": "Illinois", + "city": "Dana" + } + }, + { + "id": 8958, + "name": "Robert Elliott", + "gender": "female", + "age": 35, + "address": { + "state": "Pennsylvania", + "city": "Villarreal" + } + }, + { + "id": 8959, + "name": "Reynolds Barrera", + "gender": "male", + "age": 32, + "address": { + "state": "North Carolina", + "city": "Tedrow" + } + }, + { + "id": 8960, + "name": "Mcleod Gillespie", + "gender": "male", + "age": 37, + "address": { + "state": "West Virginia", + "city": "Somerset" + } + }, + { + "id": 8961, + "name": "Mcpherson Stokes", + "gender": "male", + "age": 61, + "address": { + "state": "Washington", + "city": "Fairview" + } + }, + { + "id": 8962, + "name": "Helena Benjamin", + "gender": "female", + "age": 20, + "address": { + "state": "Indiana", + "city": "Fannett" + } + }, + { + "id": 8963, + "name": "Gardner Andrews", + "gender": "male", + "age": 25, + "address": { + "state": "Louisiana", + "city": "Dragoon" + } + }, + { + "id": 8964, + "name": "Landry Pacheco", + "gender": "male", + "age": 41, + "address": { + "state": "Iowa", + "city": "Silkworth" + } + }, + { + "id": 8965, + "name": "Farley Nicholson", + "gender": "male", + "age": 61, + "address": { + "state": "Delaware", + "city": "Jamestown" + } + }, + { + "id": 8966, + "name": "Yates Sutton", + "gender": "male", + "age": 59, + "address": { + "state": "Ohio", + "city": "Wadsworth" + } + }, + { + "id": 8967, + "name": "Marcella Crosby", + "gender": "female", + "age": 39, + "address": { + "state": "California", + "city": "Lorraine" + } + }, + { + "id": 8968, + "name": "Soto Oneal", + "gender": "male", + "age": 76, + "address": { + "state": "Utah", + "city": "Sehili" + } + }, + { + "id": 8969, + "name": "Bush Vega", + "gender": "male", + "age": 35, + "address": { + "state": "Iowa", + "city": "Hollins" + } + }, + { + "id": 8970, + "name": "Dyer Barnett", + "gender": "male", + "age": 55, + "address": { + "state": "Wyoming", + "city": "Rutherford" + } + }, + { + "id": 8971, + "name": "Heath Burch", + "gender": "male", + "age": 26, + "address": { + "state": "Pennsylvania", + "city": "Cade" + } + }, + { + "id": 8972, + "name": "June Austin", + "gender": "female", + "age": 44, + "address": { + "state": "Idaho", + "city": "Emison" + } + }, + { + "id": 8973, + "name": "Jacklyn Gutierrez", + "gender": "female", + "age": 29, + "address": { + "state": "Rhode Island", + "city": "Tryon" + } + }, + { + "id": 8974, + "name": "Amparo Castillo", + "gender": "female", + "age": 39, + "address": { + "state": "Connecticut", + "city": "Holcombe" + } + }, + { + "id": 8975, + "name": "Perez Higgins", + "gender": "male", + "age": 43, + "address": { + "state": "Michigan", + "city": "Belgreen" + } + }, + { + "id": 8976, + "name": "Tran Crosby", + "gender": "male", + "age": 60, + "address": { + "state": "Indiana", + "city": "Hamilton" + } + }, + { + "id": 8977, + "name": "Olive Briggs", + "gender": "female", + "age": 70, + "address": { + "state": "Minnesota", + "city": "Turah" + } + }, + { + "id": 8978, + "name": "Merritt Ryan", + "gender": "male", + "age": 48, + "address": { + "state": "Hawaii", + "city": "Brandermill" + } + }, + { + "id": 8979, + "name": "Louisa Dyer", + "gender": "female", + "age": 35, + "address": { + "state": "Massachusetts", + "city": "Keller" + } + }, + { + "id": 8980, + "name": "Melva Huff", + "gender": "female", + "age": 63, + "address": { + "state": "Maine", + "city": "Albrightsville" + } + }, + { + "id": 8981, + "name": "Jacqueline White", + "gender": "female", + "age": 50, + "address": { + "state": "Louisiana", + "city": "Lookingglass" + } + }, + { + "id": 8982, + "name": "Fulton Mckay", + "gender": "male", + "age": 33, + "address": { + "state": "Kansas", + "city": "Deltaville" + } + }, + { + "id": 8983, + "name": "Jaime Rutledge", + "gender": "female", + "age": 65, + "address": { + "state": "Alabama", + "city": "Jenkinsville" + } + }, + { + "id": 8984, + "name": "Debra Gallegos", + "gender": "female", + "age": 80, + "address": { + "state": "Colorado", + "city": "Rivera" + } + }, + { + "id": 8985, + "name": "Winnie Reid", + "gender": "female", + "age": 60, + "address": { + "state": "Nebraska", + "city": "Succasunna" + } + }, + { + "id": 8986, + "name": "Hunt Gould", + "gender": "male", + "age": 17, + "address": { + "state": "Arkansas", + "city": "Canoochee" + } + }, + { + "id": 8987, + "name": "Myers Stevens", + "gender": "male", + "age": 32, + "address": { + "state": "Vermont", + "city": "Harleigh" + } + }, + { + "id": 8988, + "name": "Concetta Diaz", + "gender": "female", + "age": 33, + "address": { + "state": "Missouri", + "city": "Islandia" + } + }, + { + "id": 8989, + "name": "Lina Brock", + "gender": "female", + "age": 69, + "address": { + "state": "Tennessee", + "city": "Caln" + } + }, + { + "id": 8990, + "name": "Meyer Ramos", + "gender": "male", + "age": 22, + "address": { + "state": "Maryland", + "city": "Shawmut" + } + }, + { + "id": 8991, + "name": "Lela Mcpherson", + "gender": "female", + "age": 31, + "address": { + "state": "Wisconsin", + "city": "Northchase" + } + }, + { + "id": 8992, + "name": "Jennie York", + "gender": "female", + "age": 59, + "address": { + "state": "North Carolina", + "city": "Boykin" + } + }, + { + "id": 8993, + "name": "Marcella Hendricks", + "gender": "female", + "age": 40, + "address": { + "state": "New York", + "city": "Bradenville" + } + }, + { + "id": 8994, + "name": "Bernice Mcguire", + "gender": "female", + "age": 49, + "address": { + "state": "Delaware", + "city": "Sardis" + } + }, + { + "id": 8995, + "name": "Pugh Anderson", + "gender": "male", + "age": 64, + "address": { + "state": "West Virginia", + "city": "Odessa" + } + }, + { + "id": 8996, + "name": "Violet Thornton", + "gender": "female", + "age": 31, + "address": { + "state": "Illinois", + "city": "Goochland" + } + }, + { + "id": 8997, + "name": "Candace Hinton", + "gender": "female", + "age": 58, + "address": { + "state": "New Mexico", + "city": "Gordon" + } + }, + { + "id": 8998, + "name": "Owens Kemp", + "gender": "male", + "age": 17, + "address": { + "state": "Georgia", + "city": "Winesburg" + } + }, + { + "id": 8999, + "name": "Chang Rivers", + "gender": "male", + "age": 46, + "address": { + "state": "Texas", + "city": "Grandview" + } + }, + { + "id": 9000, + "name": "Deanna Levy", + "gender": "female", + "age": 61, + "address": { + "state": "Ohio", + "city": "Savannah" + } + }, + { + "id": 9001, + "name": "Crystal Ramsey", + "gender": "female", + "age": 36, + "address": { + "state": "New Hampshire", + "city": "Rushford" + } + }, + { + "id": 9002, + "name": "Brittany Todd", + "gender": "female", + "age": 76, + "address": { + "state": "Montana", + "city": "Lacomb" + } + }, + { + "id": 9003, + "name": "Nikki Snyder", + "gender": "female", + "age": 79, + "address": { + "state": "Arizona", + "city": "Martell" + } + }, + { + "id": 9004, + "name": "Claire Randolph", + "gender": "female", + "age": 40, + "address": { + "state": "South Dakota", + "city": "Mooresburg" + } + }, + { + "id": 9005, + "name": "Dollie Vang", + "gender": "female", + "age": 50, + "address": { + "state": "Oklahoma", + "city": "Wadsworth" + } + }, + { + "id": 9006, + "name": "Traci Pruitt", + "gender": "female", + "age": 21, + "address": { + "state": "Oregon", + "city": "Joppa" + } + }, + { + "id": 9007, + "name": "Hilda Clark", + "gender": "female", + "age": 34, + "address": { + "state": "Florida", + "city": "Iberia" + } + }, + { + "id": 9008, + "name": "Hazel Parsons", + "gender": "female", + "age": 55, + "address": { + "state": "New Jersey", + "city": "Columbus" + } + }, + { + "id": 9009, + "name": "Sawyer Hines", + "gender": "male", + "age": 46, + "address": { + "state": "Alaska", + "city": "Kraemer" + } + }, + { + "id": 9010, + "name": "Robbins Rollins", + "gender": "male", + "age": 40, + "address": { + "state": "Washington", + "city": "Lewis" + } + }, + { + "id": 9011, + "name": "Pittman Head", + "gender": "male", + "age": 18, + "address": { + "state": "North Dakota", + "city": "Fairlee" + } + }, + { + "id": 9012, + "name": "Kay Noel", + "gender": "female", + "age": 40, + "address": { + "state": "Kentucky", + "city": "Websterville" + } + }, + { + "id": 9013, + "name": "Shawna Nguyen", + "gender": "female", + "age": 82, + "address": { + "state": "Nevada", + "city": "Charco" + } + }, + { + "id": 9014, + "name": "Renee Howe", + "gender": "female", + "age": 64, + "address": { + "state": "Mississippi", + "city": "Warren" + } + }, + { + "id": 9015, + "name": "Wilcox Aguirre", + "gender": "male", + "age": 75, + "address": { + "state": "South Carolina", + "city": "Chamberino" + } + }, + { + "id": 9016, + "name": "Myrtle Sharpe", + "gender": "female", + "age": 35, + "address": { + "state": "Mississippi", + "city": "Whitmer" + } + }, + { + "id": 9017, + "name": "Randolph Vasquez", + "gender": "male", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Neibert" + } + }, + { + "id": 9018, + "name": "Audra Espinoza", + "gender": "female", + "age": 35, + "address": { + "state": "Vermont", + "city": "Clay" + } + }, + { + "id": 9019, + "name": "Brewer Reese", + "gender": "male", + "age": 67, + "address": { + "state": "Virginia", + "city": "Watchtower" + } + }, + { + "id": 9020, + "name": "Lillian Donovan", + "gender": "female", + "age": 23, + "address": { + "state": "Utah", + "city": "Forestburg" + } + }, + { + "id": 9021, + "name": "Natalie Goodman", + "gender": "female", + "age": 77, + "address": { + "state": "Texas", + "city": "Kingstowne" + } + }, + { + "id": 9022, + "name": "Goff Mcfarland", + "gender": "male", + "age": 50, + "address": { + "state": "Missouri", + "city": "Wintersburg" + } + }, + { + "id": 9023, + "name": "Morin Clarke", + "gender": "male", + "age": 66, + "address": { + "state": "Idaho", + "city": "Gulf" + } + }, + { + "id": 9024, + "name": "Louella Best", + "gender": "female", + "age": 55, + "address": { + "state": "Arizona", + "city": "Bayview" + } + }, + { + "id": 9025, + "name": "Oneill Mayo", + "gender": "male", + "age": 52, + "address": { + "state": "Michigan", + "city": "Volta" + } + }, + { + "id": 9026, + "name": "Talley Holmes", + "gender": "male", + "age": 22, + "address": { + "state": "Rhode Island", + "city": "Ruffin" + } + }, + { + "id": 9027, + "name": "Hoffman Gallegos", + "gender": "male", + "age": 68, + "address": { + "state": "Alaska", + "city": "Tuttle" + } + }, + { + "id": 9028, + "name": "Ivy Crosby", + "gender": "female", + "age": 37, + "address": { + "state": "Alabama", + "city": "Cannondale" + } + }, + { + "id": 9029, + "name": "Trisha Cross", + "gender": "female", + "age": 19, + "address": { + "state": "Wisconsin", + "city": "Conway" + } + }, + { + "id": 9030, + "name": "Shawn Valdez", + "gender": "female", + "age": 63, + "address": { + "state": "Nebraska", + "city": "Cliffside" + } + }, + { + "id": 9031, + "name": "Holmes Petty", + "gender": "male", + "age": 33, + "address": { + "state": "Illinois", + "city": "Hartsville/Hartley" + } + }, + { + "id": 9032, + "name": "Hanson England", + "gender": "male", + "age": 46, + "address": { + "state": "Kansas", + "city": "Moraida" + } + }, + { + "id": 9033, + "name": "Small Carey", + "gender": "male", + "age": 18, + "address": { + "state": "Iowa", + "city": "Belleview" + } + }, + { + "id": 9034, + "name": "Huffman Gay", + "gender": "male", + "age": 80, + "address": { + "state": "Arkansas", + "city": "Eggertsville" + } + }, + { + "id": 9035, + "name": "Anderson Phelps", + "gender": "male", + "age": 18, + "address": { + "state": "New York", + "city": "Williston" + } + }, + { + "id": 9036, + "name": "Virgie Monroe", + "gender": "female", + "age": 22, + "address": { + "state": "Maine", + "city": "Wattsville" + } + }, + { + "id": 9037, + "name": "Delacruz Mccarthy", + "gender": "male", + "age": 36, + "address": { + "state": "Florida", + "city": "Allentown" + } + }, + { + "id": 9038, + "name": "Dale Mcgowan", + "gender": "male", + "age": 50, + "address": { + "state": "Massachusetts", + "city": "Trexlertown" + } + }, + { + "id": 9039, + "name": "Corina Oneill", + "gender": "female", + "age": 61, + "address": { + "state": "Indiana", + "city": "Warren" + } + }, + { + "id": 9040, + "name": "Ochoa Zimmerman", + "gender": "male", + "age": 18, + "address": { + "state": "West Virginia", + "city": "Blanford" + } + }, + { + "id": 9041, + "name": "Mckenzie Walker", + "gender": "male", + "age": 54, + "address": { + "state": "Kentucky", + "city": "Fowlerville" + } + }, + { + "id": 9042, + "name": "Charles Hartman", + "gender": "male", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Brownlee" + } + }, + { + "id": 9043, + "name": "Allie Terrell", + "gender": "female", + "age": 65, + "address": { + "state": "North Carolina", + "city": "Fillmore" + } + }, + { + "id": 9044, + "name": "Blake Burton", + "gender": "male", + "age": 78, + "address": { + "state": "Minnesota", + "city": "Blodgett" + } + }, + { + "id": 9045, + "name": "Sanchez Brady", + "gender": "male", + "age": 45, + "address": { + "state": "California", + "city": "Finderne" + } + }, + { + "id": 9046, + "name": "Rowland Leon", + "gender": "male", + "age": 28, + "address": { + "state": "Nevada", + "city": "Allendale" + } + }, + { + "id": 9047, + "name": "Donaldson Sweeney", + "gender": "male", + "age": 71, + "address": { + "state": "South Carolina", + "city": "Rowe" + } + }, + { + "id": 9048, + "name": "Bender Mcneil", + "gender": "male", + "age": 61, + "address": { + "state": "New Jersey", + "city": "Bagtown" + } + }, + { + "id": 9049, + "name": "Bertie Lucas", + "gender": "female", + "age": 20, + "address": { + "state": "Pennsylvania", + "city": "Beaulieu" + } + }, + { + "id": 9050, + "name": "Marta Peck", + "gender": "female", + "age": 42, + "address": { + "state": "Oregon", + "city": "Calverton" + } + }, + { + "id": 9051, + "name": "Katherine Morrow", + "gender": "female", + "age": 54, + "address": { + "state": "Delaware", + "city": "Harrodsburg" + } + }, + { + "id": 9052, + "name": "Butler Kemp", + "gender": "male", + "age": 70, + "address": { + "state": "Oklahoma", + "city": "Curtice" + } + }, + { + "id": 9053, + "name": "Pearl Miles", + "gender": "female", + "age": 63, + "address": { + "state": "North Dakota", + "city": "Omar" + } + }, + { + "id": 9054, + "name": "Leta Farmer", + "gender": "female", + "age": 77, + "address": { + "state": "Colorado", + "city": "Bend" + } + }, + { + "id": 9055, + "name": "Maritza Davenport", + "gender": "female", + "age": 71, + "address": { + "state": "Ohio", + "city": "Waverly" + } + }, + { + "id": 9056, + "name": "Clayton Avila", + "gender": "male", + "age": 47, + "address": { + "state": "Tennessee", + "city": "Calvary" + } + }, + { + "id": 9057, + "name": "Randi Hamilton", + "gender": "female", + "age": 27, + "address": { + "state": "Montana", + "city": "Konterra" + } + }, + { + "id": 9058, + "name": "Mcintosh Shelton", + "gender": "male", + "age": 40, + "address": { + "state": "Hawaii", + "city": "Brenton" + } + }, + { + "id": 9059, + "name": "Marsh Bishop", + "gender": "male", + "age": 38, + "address": { + "state": "Wyoming", + "city": "Dodge" + } + }, + { + "id": 9060, + "name": "Elliott Young", + "gender": "male", + "age": 60, + "address": { + "state": "Connecticut", + "city": "Boykin" + } + }, + { + "id": 9061, + "name": "Wilson Aguilar", + "gender": "male", + "age": 23, + "address": { + "state": "Georgia", + "city": "Hegins" + } + }, + { + "id": 9062, + "name": "Glenna Lawson", + "gender": "female", + "age": 29, + "address": { + "state": "New Hampshire", + "city": "Inkerman" + } + }, + { + "id": 9063, + "name": "Alicia Doyle", + "gender": "female", + "age": 52, + "address": { + "state": "Maryland", + "city": "Fannett" + } + }, + { + "id": 9064, + "name": "Nora Sampson", + "gender": "female", + "age": 58, + "address": { + "state": "South Dakota", + "city": "Tryon" + } + }, + { + "id": 9065, + "name": "Diane Roach", + "gender": "female", + "age": 24, + "address": { + "state": "Hawaii", + "city": "Watrous" + } + }, + { + "id": 9066, + "name": "Arnold Marks", + "gender": "male", + "age": 17, + "address": { + "state": "Iowa", + "city": "Yukon" + } + }, + { + "id": 9067, + "name": "Huber Wilson", + "gender": "male", + "age": 29, + "address": { + "state": "Minnesota", + "city": "Hessville" + } + }, + { + "id": 9068, + "name": "Geneva Tyler", + "gender": "female", + "age": 82, + "address": { + "state": "Nevada", + "city": "Retsof" + } + }, + { + "id": 9069, + "name": "Adela Whitley", + "gender": "female", + "age": 26, + "address": { + "state": "Utah", + "city": "Marysville" + } + }, + { + "id": 9070, + "name": "Ramos Sanders", + "gender": "male", + "age": 76, + "address": { + "state": "Massachusetts", + "city": "Woodlands" + } + }, + { + "id": 9071, + "name": "Pugh Sears", + "gender": "male", + "age": 44, + "address": { + "state": "Arkansas", + "city": "Chicopee" + } + }, + { + "id": 9072, + "name": "Duncan Blevins", + "gender": "male", + "age": 51, + "address": { + "state": "Maryland", + "city": "Coral" + } + }, + { + "id": 9073, + "name": "Blanca Davis", + "gender": "female", + "age": 57, + "address": { + "state": "North Dakota", + "city": "Chase" + } + }, + { + "id": 9074, + "name": "Knox Caldwell", + "gender": "male", + "age": 18, + "address": { + "state": "Wyoming", + "city": "Mapletown" + } + }, + { + "id": 9075, + "name": "York Washington", + "gender": "male", + "age": 35, + "address": { + "state": "Michigan", + "city": "Gibsonia" + } + }, + { + "id": 9076, + "name": "Kerri Blake", + "gender": "female", + "age": 72, + "address": { + "state": "Vermont", + "city": "Edmund" + } + }, + { + "id": 9077, + "name": "Marjorie Reid", + "gender": "female", + "age": 46, + "address": { + "state": "Washington", + "city": "Floriston" + } + }, + { + "id": 9078, + "name": "Gardner Wagner", + "gender": "male", + "age": 68, + "address": { + "state": "Pennsylvania", + "city": "Rockingham" + } + }, + { + "id": 9079, + "name": "Kane Glover", + "gender": "male", + "age": 23, + "address": { + "state": "Connecticut", + "city": "Swartzville" + } + }, + { + "id": 9080, + "name": "Frye Whitehead", + "gender": "male", + "age": 76, + "address": { + "state": "Oregon", + "city": "Independence" + } + }, + { + "id": 9081, + "name": "Laurie Mendoza", + "gender": "female", + "age": 45, + "address": { + "state": "Louisiana", + "city": "Dixonville" + } + }, + { + "id": 9082, + "name": "Hogan Sharpe", + "gender": "male", + "age": 71, + "address": { + "state": "Georgia", + "city": "Delco" + } + }, + { + "id": 9083, + "name": "Beatrice Romero", + "gender": "female", + "age": 59, + "address": { + "state": "Colorado", + "city": "Brownlee" + } + }, + { + "id": 9084, + "name": "Jarvis Briggs", + "gender": "male", + "age": 33, + "address": { + "state": "Wisconsin", + "city": "Witmer" + } + }, + { + "id": 9085, + "name": "Lilian Coleman", + "gender": "female", + "age": 23, + "address": { + "state": "South Dakota", + "city": "Southmont" + } + }, + { + "id": 9086, + "name": "Estelle Sawyer", + "gender": "female", + "age": 49, + "address": { + "state": "Illinois", + "city": "Deercroft" + } + }, + { + "id": 9087, + "name": "Blair Harper", + "gender": "male", + "age": 39, + "address": { + "state": "Alabama", + "city": "Northchase" + } + }, + { + "id": 9088, + "name": "Margret Clemons", + "gender": "female", + "age": 30, + "address": { + "state": "Indiana", + "city": "Wiscon" + } + }, + { + "id": 9089, + "name": "Lane Patel", + "gender": "male", + "age": 31, + "address": { + "state": "Kentucky", + "city": "Villarreal" + } + }, + { + "id": 9090, + "name": "Stuart Shepard", + "gender": "male", + "age": 45, + "address": { + "state": "Kansas", + "city": "Smock" + } + }, + { + "id": 9091, + "name": "June Duncan", + "gender": "female", + "age": 42, + "address": { + "state": "Missouri", + "city": "Idledale" + } + }, + { + "id": 9092, + "name": "Polly Kane", + "gender": "female", + "age": 28, + "address": { + "state": "Nebraska", + "city": "Kirk" + } + }, + { + "id": 9093, + "name": "Vicki Haley", + "gender": "female", + "age": 19, + "address": { + "state": "New York", + "city": "Berlin" + } + }, + { + "id": 9094, + "name": "Imogene Morse", + "gender": "female", + "age": 47, + "address": { + "state": "South Carolina", + "city": "Longoria" + } + }, + { + "id": 9095, + "name": "Miranda Hoover", + "gender": "male", + "age": 27, + "address": { + "state": "Delaware", + "city": "Olney" + } + }, + { + "id": 9096, + "name": "Courtney Wooten", + "gender": "female", + "age": 48, + "address": { + "state": "Maine", + "city": "Cetronia" + } + }, + { + "id": 9097, + "name": "Iris Gill", + "gender": "female", + "age": 54, + "address": { + "state": "Idaho", + "city": "Coinjock" + } + }, + { + "id": 9098, + "name": "Reyna Robinson", + "gender": "female", + "age": 23, + "address": { + "state": "Arizona", + "city": "Goochland" + } + }, + { + "id": 9099, + "name": "Dennis Bradshaw", + "gender": "male", + "age": 37, + "address": { + "state": "North Carolina", + "city": "Orovada" + } + }, + { + "id": 9100, + "name": "Weeks Pruitt", + "gender": "male", + "age": 28, + "address": { + "state": "Mississippi", + "city": "Croom" + } + }, + { + "id": 9101, + "name": "Erma Key", + "gender": "female", + "age": 73, + "address": { + "state": "Alaska", + "city": "Allentown" + } + }, + { + "id": 9102, + "name": "Merle Klein", + "gender": "female", + "age": 43, + "address": { + "state": "Florida", + "city": "Boomer" + } + }, + { + "id": 9103, + "name": "Goodwin Adkins", + "gender": "male", + "age": 69, + "address": { + "state": "Ohio", + "city": "Zeba" + } + }, + { + "id": 9104, + "name": "Mckee Sparks", + "gender": "male", + "age": 21, + "address": { + "state": "New Hampshire", + "city": "Hondah" + } + }, + { + "id": 9105, + "name": "Richards Lancaster", + "gender": "male", + "age": 77, + "address": { + "state": "Tennessee", + "city": "Shaft" + } + }, + { + "id": 9106, + "name": "Atkinson Velazquez", + "gender": "male", + "age": 34, + "address": { + "state": "Rhode Island", + "city": "Gloucester" + } + }, + { + "id": 9107, + "name": "Randall Whitaker", + "gender": "male", + "age": 24, + "address": { + "state": "West Virginia", + "city": "Zortman" + } + }, + { + "id": 9108, + "name": "Mildred Vargas", + "gender": "female", + "age": 43, + "address": { + "state": "Montana", + "city": "Bonanza" + } + }, + { + "id": 9109, + "name": "Barlow Noble", + "gender": "male", + "age": 46, + "address": { + "state": "Virginia", + "city": "Barrelville" + } + }, + { + "id": 9110, + "name": "Clay Knight", + "gender": "male", + "age": 69, + "address": { + "state": "New Mexico", + "city": "Carlos" + } + }, + { + "id": 9111, + "name": "Mcconnell Clayton", + "gender": "male", + "age": 19, + "address": { + "state": "California", + "city": "Winston" + } + }, + { + "id": 9112, + "name": "Simon Sharp", + "gender": "male", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Emerald" + } + }, + { + "id": 9113, + "name": "Irwin Hodge", + "gender": "male", + "age": 65, + "address": { + "state": "Oklahoma", + "city": "Allamuchy" + } + }, + { + "id": 9114, + "name": "Martin Randolph", + "gender": "male", + "age": 64, + "address": { + "state": "Mississippi", + "city": "Glendale" + } + }, + { + "id": 9115, + "name": "Gabriela Knapp", + "gender": "female", + "age": 42, + "address": { + "state": "Missouri", + "city": "Carlos" + } + }, + { + "id": 9116, + "name": "Gracie Trujillo", + "gender": "female", + "age": 21, + "address": { + "state": "New Jersey", + "city": "Seymour" + } + }, + { + "id": 9117, + "name": "Rosa Salinas", + "gender": "female", + "age": 39, + "address": { + "state": "Georgia", + "city": "Juarez" + } + }, + { + "id": 9118, + "name": "Lawanda Gamble", + "gender": "female", + "age": 27, + "address": { + "state": "Washington", + "city": "Chalfant" + } + }, + { + "id": 9119, + "name": "Alexis Kim", + "gender": "female", + "age": 51, + "address": { + "state": "Montana", + "city": "Westerville" + } + }, + { + "id": 9120, + "name": "Buck Griffin", + "gender": "male", + "age": 42, + "address": { + "state": "Iowa", + "city": "Breinigsville" + } + }, + { + "id": 9121, + "name": "Compton Merritt", + "gender": "male", + "age": 74, + "address": { + "state": "Virginia", + "city": "Nadine" + } + }, + { + "id": 9122, + "name": "Robbie Madden", + "gender": "female", + "age": 78, + "address": { + "state": "New Mexico", + "city": "Alleghenyville" + } + }, + { + "id": 9123, + "name": "Oconnor Molina", + "gender": "male", + "age": 33, + "address": { + "state": "Vermont", + "city": "Lynn" + } + }, + { + "id": 9124, + "name": "Mabel Torres", + "gender": "female", + "age": 58, + "address": { + "state": "Wisconsin", + "city": "Inkerman" + } + }, + { + "id": 9125, + "name": "Kerry Greene", + "gender": "female", + "age": 43, + "address": { + "state": "Massachusetts", + "city": "Tuttle" + } + }, + { + "id": 9126, + "name": "Kathie Vega", + "gender": "female", + "age": 25, + "address": { + "state": "South Dakota", + "city": "Stockdale" + } + }, + { + "id": 9127, + "name": "Cooley Bright", + "gender": "male", + "age": 36, + "address": { + "state": "Maine", + "city": "Waukeenah" + } + }, + { + "id": 9128, + "name": "Davenport Campbell", + "gender": "male", + "age": 38, + "address": { + "state": "Oregon", + "city": "Calpine" + } + }, + { + "id": 9129, + "name": "Madeleine Lopez", + "gender": "female", + "age": 69, + "address": { + "state": "Idaho", + "city": "Itmann" + } + }, + { + "id": 9130, + "name": "Pamela Mack", + "gender": "female", + "age": 50, + "address": { + "state": "Oklahoma", + "city": "Convent" + } + }, + { + "id": 9131, + "name": "Sosa Garrison", + "gender": "male", + "age": 71, + "address": { + "state": "New York", + "city": "Boonville" + } + }, + { + "id": 9132, + "name": "Michael Bradley", + "gender": "female", + "age": 61, + "address": { + "state": "Utah", + "city": "Kerby" + } + }, + { + "id": 9133, + "name": "Bailey Pruitt", + "gender": "male", + "age": 53, + "address": { + "state": "South Carolina", + "city": "Tedrow" + } + }, + { + "id": 9134, + "name": "Terry Johns", + "gender": "male", + "age": 59, + "address": { + "state": "Indiana", + "city": "Bloomington" + } + }, + { + "id": 9135, + "name": "Stacie Velasquez", + "gender": "female", + "age": 57, + "address": { + "state": "Texas", + "city": "Ola" + } + }, + { + "id": 9136, + "name": "Dotson Wheeler", + "gender": "male", + "age": 57, + "address": { + "state": "California", + "city": "Allensworth" + } + }, + { + "id": 9137, + "name": "Jessie Nixon", + "gender": "female", + "age": 63, + "address": { + "state": "Florida", + "city": "Lutsen" + } + }, + { + "id": 9138, + "name": "Bridgette Mosley", + "gender": "female", + "age": 77, + "address": { + "state": "Alabama", + "city": "Stouchsburg" + } + }, + { + "id": 9139, + "name": "Riggs Hampton", + "gender": "male", + "age": 55, + "address": { + "state": "Pennsylvania", + "city": "Imperial" + } + }, + { + "id": 9140, + "name": "Eliza Brock", + "gender": "female", + "age": 80, + "address": { + "state": "Michigan", + "city": "Carlton" + } + }, + { + "id": 9141, + "name": "Hilda Hyde", + "gender": "female", + "age": 66, + "address": { + "state": "New Hampshire", + "city": "Fulford" + } + }, + { + "id": 9142, + "name": "Bush Murray", + "gender": "male", + "age": 49, + "address": { + "state": "Kansas", + "city": "Eureka" + } + }, + { + "id": 9143, + "name": "Ramona Barry", + "gender": "female", + "age": 60, + "address": { + "state": "West Virginia", + "city": "Keller" + } + }, + { + "id": 9144, + "name": "Meadows Byrd", + "gender": "male", + "age": 43, + "address": { + "state": "Arkansas", + "city": "Snelling" + } + }, + { + "id": 9145, + "name": "Joan Mcgee", + "gender": "female", + "age": 21, + "address": { + "state": "Alaska", + "city": "Sanborn" + } + }, + { + "id": 9146, + "name": "Dickerson Hopkins", + "gender": "male", + "age": 41, + "address": { + "state": "Illinois", + "city": "Harrison" + } + }, + { + "id": 9147, + "name": "Joanna Munoz", + "gender": "female", + "age": 29, + "address": { + "state": "Kentucky", + "city": "Adamstown" + } + }, + { + "id": 9148, + "name": "Macdonald Melton", + "gender": "male", + "age": 20, + "address": { + "state": "Nebraska", + "city": "Garnet" + } + }, + { + "id": 9149, + "name": "Flossie Harrington", + "gender": "female", + "age": 17, + "address": { + "state": "Louisiana", + "city": "Geyserville" + } + }, + { + "id": 9150, + "name": "Hallie Mcneil", + "gender": "female", + "age": 17, + "address": { + "state": "Connecticut", + "city": "Woodburn" + } + }, + { + "id": 9151, + "name": "Beverly Bauer", + "gender": "female", + "age": 79, + "address": { + "state": "Wyoming", + "city": "Orason" + } + }, + { + "id": 9152, + "name": "Daugherty Johnson", + "gender": "male", + "age": 62, + "address": { + "state": "North Carolina", + "city": "Lacomb" + } + }, + { + "id": 9153, + "name": "Virginia Pratt", + "gender": "female", + "age": 57, + "address": { + "state": "Rhode Island", + "city": "Wawona" + } + }, + { + "id": 9154, + "name": "Ruiz Watkins", + "gender": "male", + "age": 19, + "address": { + "state": "North Dakota", + "city": "Volta" + } + }, + { + "id": 9155, + "name": "Ashlee Fleming", + "gender": "female", + "age": 20, + "address": { + "state": "Tennessee", + "city": "Bergoo" + } + }, + { + "id": 9156, + "name": "Morrow Gonzalez", + "gender": "male", + "age": 58, + "address": { + "state": "Delaware", + "city": "Snyderville" + } + }, + { + "id": 9157, + "name": "Hardy Marshall", + "gender": "male", + "age": 25, + "address": { + "state": "Hawaii", + "city": "Caspar" + } + }, + { + "id": 9158, + "name": "Tamra Montgomery", + "gender": "female", + "age": 29, + "address": { + "state": "Arizona", + "city": "Flintville" + } + }, + { + "id": 9159, + "name": "Jaime Sims", + "gender": "female", + "age": 45, + "address": { + "state": "Colorado", + "city": "Smock" + } + }, + { + "id": 9160, + "name": "Kidd Donaldson", + "gender": "male", + "age": 17, + "address": { + "state": "Nevada", + "city": "Martinez" + } + }, + { + "id": 9161, + "name": "Mercado Rivas", + "gender": "male", + "age": 57, + "address": { + "state": "Maryland", + "city": "Darrtown" + } + }, + { + "id": 9162, + "name": "Peterson Vaughn", + "gender": "male", + "age": 68, + "address": { + "state": "Minnesota", + "city": "Detroit" + } + }, + { + "id": 9163, + "name": "Case Wells", + "gender": "male", + "age": 60, + "address": { + "state": "South Dakota", + "city": "Avoca" + } + }, + { + "id": 9164, + "name": "Dora Poole", + "gender": "female", + "age": 42, + "address": { + "state": "New Jersey", + "city": "Bridgetown" + } + }, + { + "id": 9165, + "name": "Emilia Long", + "gender": "female", + "age": 29, + "address": { + "state": "Nebraska", + "city": "Allison" + } + }, + { + "id": 9166, + "name": "Jodi Edwards", + "gender": "female", + "age": 20, + "address": { + "state": "Iowa", + "city": "Sattley" + } + }, + { + "id": 9167, + "name": "Allyson Love", + "gender": "female", + "age": 66, + "address": { + "state": "Wyoming", + "city": "Blackgum" + } + }, + { + "id": 9168, + "name": "Mathews Palmer", + "gender": "male", + "age": 73, + "address": { + "state": "Pennsylvania", + "city": "Dunnavant" + } + }, + { + "id": 9169, + "name": "Monroe Hendrix", + "gender": "male", + "age": 64, + "address": { + "state": "Utah", + "city": "Bagtown" + } + }, + { + "id": 9170, + "name": "Bailey Barnett", + "gender": "male", + "age": 75, + "address": { + "state": "North Carolina", + "city": "Harborton" + } + }, + { + "id": 9171, + "name": "Taylor Lancaster", + "gender": "female", + "age": 64, + "address": { + "state": "Rhode Island", + "city": "Holcombe" + } + }, + { + "id": 9172, + "name": "Denise Caldwell", + "gender": "female", + "age": 65, + "address": { + "state": "New Hampshire", + "city": "Belleview" + } + }, + { + "id": 9173, + "name": "Levine Montoya", + "gender": "male", + "age": 26, + "address": { + "state": "Georgia", + "city": "Harold" + } + }, + { + "id": 9174, + "name": "Maude Valentine", + "gender": "female", + "age": 63, + "address": { + "state": "Kentucky", + "city": "Saranap" + } + }, + { + "id": 9175, + "name": "Beryl Castillo", + "gender": "female", + "age": 30, + "address": { + "state": "Colorado", + "city": "Irwin" + } + }, + { + "id": 9176, + "name": "Estrada Mason", + "gender": "male", + "age": 31, + "address": { + "state": "West Virginia", + "city": "Whipholt" + } + }, + { + "id": 9177, + "name": "Craig Blankenship", + "gender": "male", + "age": 29, + "address": { + "state": "Hawaii", + "city": "Driftwood" + } + }, + { + "id": 9178, + "name": "Cherry Olson", + "gender": "male", + "age": 76, + "address": { + "state": "Nevada", + "city": "Haena" + } + }, + { + "id": 9179, + "name": "Shawn Strong", + "gender": "female", + "age": 53, + "address": { + "state": "California", + "city": "Woodlands" + } + }, + { + "id": 9180, + "name": "Wallace May", + "gender": "male", + "age": 45, + "address": { + "state": "Connecticut", + "city": "Heil" + } + }, + { + "id": 9181, + "name": "Young Casey", + "gender": "male", + "age": 79, + "address": { + "state": "Mississippi", + "city": "Whitestone" + } + }, + { + "id": 9182, + "name": "Oneal Kline", + "gender": "male", + "age": 64, + "address": { + "state": "Michigan", + "city": "Coaldale" + } + }, + { + "id": 9183, + "name": "Elsa Hampton", + "gender": "female", + "age": 77, + "address": { + "state": "New Mexico", + "city": "Bowmansville" + } + }, + { + "id": 9184, + "name": "Colleen Jacobson", + "gender": "female", + "age": 76, + "address": { + "state": "Vermont", + "city": "Deltaville" + } + }, + { + "id": 9185, + "name": "Gill Hendricks", + "gender": "male", + "age": 80, + "address": { + "state": "Florida", + "city": "Sugartown" + } + }, + { + "id": 9186, + "name": "Elisa Brooks", + "gender": "female", + "age": 18, + "address": { + "state": "Idaho", + "city": "Hackneyville" + } + }, + { + "id": 9187, + "name": "Roberts Soto", + "gender": "male", + "age": 50, + "address": { + "state": "Wisconsin", + "city": "Waterford" + } + }, + { + "id": 9188, + "name": "Dorothea Aguilar", + "gender": "female", + "age": 76, + "address": { + "state": "North Dakota", + "city": "Lafferty" + } + }, + { + "id": 9189, + "name": "Snyder Macias", + "gender": "male", + "age": 46, + "address": { + "state": "Delaware", + "city": "Cobbtown" + } + }, + { + "id": 9190, + "name": "Sasha Sexton", + "gender": "female", + "age": 75, + "address": { + "state": "Maryland", + "city": "Boling" + } + }, + { + "id": 9191, + "name": "Brown Armstrong", + "gender": "male", + "age": 36, + "address": { + "state": "South Carolina", + "city": "Salix" + } + }, + { + "id": 9192, + "name": "Erika Lowe", + "gender": "female", + "age": 43, + "address": { + "state": "Alabama", + "city": "Richville" + } + }, + { + "id": 9193, + "name": "Swanson Durham", + "gender": "male", + "age": 75, + "address": { + "state": "Kansas", + "city": "Shindler" + } + }, + { + "id": 9194, + "name": "Schmidt Vega", + "gender": "male", + "age": 28, + "address": { + "state": "Maine", + "city": "Alamo" + } + }, + { + "id": 9195, + "name": "Felecia Barker", + "gender": "female", + "age": 62, + "address": { + "state": "Louisiana", + "city": "Barstow" + } + }, + { + "id": 9196, + "name": "Mcintosh Delaney", + "gender": "male", + "age": 48, + "address": { + "state": "Arkansas", + "city": "Cassel" + } + }, + { + "id": 9197, + "name": "Dejesus Moon", + "gender": "male", + "age": 41, + "address": { + "state": "Minnesota", + "city": "Bascom" + } + }, + { + "id": 9198, + "name": "Gabriela Williamson", + "gender": "female", + "age": 36, + "address": { + "state": "Virginia", + "city": "Coleville" + } + }, + { + "id": 9199, + "name": "Socorro Dotson", + "gender": "female", + "age": 27, + "address": { + "state": "Missouri", + "city": "Saddlebrooke" + } + }, + { + "id": 9200, + "name": "Ford Bonner", + "gender": "male", + "age": 60, + "address": { + "state": "Oklahoma", + "city": "Rote" + } + }, + { + "id": 9201, + "name": "Robles Welch", + "gender": "male", + "age": 28, + "address": { + "state": "Arizona", + "city": "Dragoon" + } + }, + { + "id": 9202, + "name": "Dolly Daniel", + "gender": "female", + "age": 42, + "address": { + "state": "Indiana", + "city": "Marienthal" + } + }, + { + "id": 9203, + "name": "Carlson Booker", + "gender": "male", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Gasquet" + } + }, + { + "id": 9204, + "name": "Buckley Burt", + "gender": "male", + "age": 35, + "address": { + "state": "New York", + "city": "Kylertown" + } + }, + { + "id": 9205, + "name": "Lucinda Mays", + "gender": "female", + "age": 61, + "address": { + "state": "Illinois", + "city": "Cloverdale" + } + }, + { + "id": 9206, + "name": "Elliott Middleton", + "gender": "male", + "age": 65, + "address": { + "state": "Texas", + "city": "Cedarville" + } + }, + { + "id": 9207, + "name": "Ina Robbins", + "gender": "female", + "age": 51, + "address": { + "state": "Alaska", + "city": "Brownlee" + } + }, + { + "id": 9208, + "name": "Lorene Watkins", + "gender": "female", + "age": 55, + "address": { + "state": "Montana", + "city": "Klagetoh" + } + }, + { + "id": 9209, + "name": "Sondra Gallegos", + "gender": "female", + "age": 22, + "address": { + "state": "Massachusetts", + "city": "Odessa" + } + }, + { + "id": 9210, + "name": "Lottie Keller", + "gender": "female", + "age": 30, + "address": { + "state": "Washington", + "city": "Wright" + } + }, + { + "id": 9211, + "name": "Kelly Morgan", + "gender": "male", + "age": 55, + "address": { + "state": "Oregon", + "city": "Sisquoc" + } + }, + { + "id": 9212, + "name": "Hallie Stokes", + "gender": "female", + "age": 29, + "address": { + "state": "Florida", + "city": "Garberville" + } + }, + { + "id": 9213, + "name": "Marion Reilly", + "gender": "female", + "age": 52, + "address": { + "state": "Pennsylvania", + "city": "Alfarata" + } + }, + { + "id": 9214, + "name": "Cecilia Gray", + "gender": "female", + "age": 46, + "address": { + "state": "Rhode Island", + "city": "Robbins" + } + }, + { + "id": 9215, + "name": "Eva Barlow", + "gender": "female", + "age": 61, + "address": { + "state": "Connecticut", + "city": "Gorst" + } + }, + { + "id": 9216, + "name": "Holcomb Chase", + "gender": "male", + "age": 24, + "address": { + "state": "North Carolina", + "city": "Hobucken" + } + }, + { + "id": 9217, + "name": "Jannie Odom", + "gender": "female", + "age": 27, + "address": { + "state": "Kansas", + "city": "Riceville" + } + }, + { + "id": 9218, + "name": "Kay Hinton", + "gender": "female", + "age": 71, + "address": { + "state": "Colorado", + "city": "Shindler" + } + }, + { + "id": 9219, + "name": "Robert Schneider", + "gender": "female", + "age": 69, + "address": { + "state": "South Dakota", + "city": "Cresaptown" + } + }, + { + "id": 9220, + "name": "Pruitt Larson", + "gender": "male", + "age": 64, + "address": { + "state": "Massachusetts", + "city": "Cecilia" + } + }, + { + "id": 9221, + "name": "Sonya Key", + "gender": "female", + "age": 30, + "address": { + "state": "Texas", + "city": "Glenshaw" + } + }, + { + "id": 9222, + "name": "Stevenson Roberts", + "gender": "male", + "age": 67, + "address": { + "state": "Delaware", + "city": "Chamizal" + } + }, + { + "id": 9223, + "name": "Kayla Marsh", + "gender": "female", + "age": 56, + "address": { + "state": "New Mexico", + "city": "Floris" + } + }, + { + "id": 9224, + "name": "Fleming Castillo", + "gender": "male", + "age": 40, + "address": { + "state": "Nebraska", + "city": "Eagleville" + } + }, + { + "id": 9225, + "name": "Glenda Stuart", + "gender": "female", + "age": 25, + "address": { + "state": "New York", + "city": "Selma" + } + }, + { + "id": 9226, + "name": "Kristen Ward", + "gender": "female", + "age": 42, + "address": { + "state": "Wisconsin", + "city": "Dunbar" + } + }, + { + "id": 9227, + "name": "Leanna Howe", + "gender": "female", + "age": 69, + "address": { + "state": "New Jersey", + "city": "Steinhatchee" + } + }, + { + "id": 9228, + "name": "Martin Austin", + "gender": "male", + "age": 78, + "address": { + "state": "Montana", + "city": "Golconda" + } + }, + { + "id": 9229, + "name": "Bond Grimes", + "gender": "male", + "age": 42, + "address": { + "state": "Utah", + "city": "Interlochen" + } + }, + { + "id": 9230, + "name": "Ryan Fisher", + "gender": "male", + "age": 49, + "address": { + "state": "Alabama", + "city": "Walker" + } + }, + { + "id": 9231, + "name": "Jacobs Bates", + "gender": "male", + "age": 43, + "address": { + "state": "South Carolina", + "city": "Courtland" + } + }, + { + "id": 9232, + "name": "Gaines Harris", + "gender": "male", + "age": 20, + "address": { + "state": "Louisiana", + "city": "Brethren" + } + }, + { + "id": 9233, + "name": "Deena Crosby", + "gender": "female", + "age": 33, + "address": { + "state": "Arkansas", + "city": "Cleary" + } + }, + { + "id": 9234, + "name": "Bridgette Hutchinson", + "gender": "female", + "age": 35, + "address": { + "state": "New Hampshire", + "city": "Bluetown" + } + }, + { + "id": 9235, + "name": "Gates Conrad", + "gender": "male", + "age": 52, + "address": { + "state": "Indiana", + "city": "Belmont" + } + }, + { + "id": 9236, + "name": "Casey Mathis", + "gender": "female", + "age": 17, + "address": { + "state": "Alaska", + "city": "Hampstead" + } + }, + { + "id": 9237, + "name": "Luz Carr", + "gender": "female", + "age": 25, + "address": { + "state": "Mississippi", + "city": "Lynn" + } + }, + { + "id": 9238, + "name": "Ladonna Gilmore", + "gender": "female", + "age": 61, + "address": { + "state": "Georgia", + "city": "Limestone" + } + }, + { + "id": 9239, + "name": "Rodriguez Walker", + "gender": "male", + "age": 49, + "address": { + "state": "Arizona", + "city": "Waukeenah" + } + }, + { + "id": 9240, + "name": "Vivian Mays", + "gender": "female", + "age": 30, + "address": { + "state": "Nevada", + "city": "Jugtown" + } + }, + { + "id": 9241, + "name": "Spears Kim", + "gender": "male", + "age": 30, + "address": { + "state": "Wyoming", + "city": "Riegelwood" + } + }, + { + "id": 9242, + "name": "Barker Lara", + "gender": "male", + "age": 64, + "address": { + "state": "Illinois", + "city": "Valle" + } + }, + { + "id": 9243, + "name": "Tanisha Duke", + "gender": "female", + "age": 26, + "address": { + "state": "Maine", + "city": "Hiko" + } + }, + { + "id": 9244, + "name": "Stacey Mccarty", + "gender": "female", + "age": 62, + "address": { + "state": "Iowa", + "city": "Enoree" + } + }, + { + "id": 9245, + "name": "Beatriz Mcgee", + "gender": "female", + "age": 81, + "address": { + "state": "North Dakota", + "city": "Norfolk" + } + }, + { + "id": 9246, + "name": "Mack Vang", + "gender": "male", + "age": 36, + "address": { + "state": "California", + "city": "Urie" + } + }, + { + "id": 9247, + "name": "Quinn Delacruz", + "gender": "male", + "age": 31, + "address": { + "state": "Oklahoma", + "city": "Zarephath" + } + }, + { + "id": 9248, + "name": "Hillary Berger", + "gender": "female", + "age": 23, + "address": { + "state": "Vermont", + "city": "Naomi" + } + }, + { + "id": 9249, + "name": "Patel Gaines", + "gender": "male", + "age": 79, + "address": { + "state": "Maryland", + "city": "Southview" + } + }, + { + "id": 9250, + "name": "Bean Burgess", + "gender": "male", + "age": 43, + "address": { + "state": "Hawaii", + "city": "Williston" + } + }, + { + "id": 9251, + "name": "Sheryl Shaw", + "gender": "female", + "age": 69, + "address": { + "state": "Tennessee", + "city": "Ronco" + } + }, + { + "id": 9252, + "name": "Penelope Mendez", + "gender": "female", + "age": 48, + "address": { + "state": "Oregon", + "city": "Hannasville" + } + }, + { + "id": 9253, + "name": "Jodi Carson", + "gender": "female", + "age": 65, + "address": { + "state": "Michigan", + "city": "Lund" + } + }, + { + "id": 9254, + "name": "Justice Bean", + "gender": "male", + "age": 30, + "address": { + "state": "Minnesota", + "city": "Hayden" + } + }, + { + "id": 9255, + "name": "Lily Chavez", + "gender": "female", + "age": 52, + "address": { + "state": "Idaho", + "city": "Lutsen" + } + }, + { + "id": 9256, + "name": "Greene Witt", + "gender": "male", + "age": 27, + "address": { + "state": "Washington", + "city": "Fedora" + } + }, + { + "id": 9257, + "name": "Teresa Frank", + "gender": "female", + "age": 63, + "address": { + "state": "Missouri", + "city": "Clay" + } + }, + { + "id": 9258, + "name": "Lelia Weber", + "gender": "female", + "age": 77, + "address": { + "state": "Kentucky", + "city": "Colton" + } + }, + { + "id": 9259, + "name": "Mara Norton", + "gender": "female", + "age": 76, + "address": { + "state": "Ohio", + "city": "Waterview" + } + }, + { + "id": 9260, + "name": "Shields Bowen", + "gender": "male", + "age": 66, + "address": { + "state": "Virginia", + "city": "Martell" + } + }, + { + "id": 9261, + "name": "Gracie Rivers", + "gender": "female", + "age": 77, + "address": { + "state": "Oklahoma", + "city": "Faywood" + } + }, + { + "id": 9262, + "name": "Geneva Baker", + "gender": "female", + "age": 68, + "address": { + "state": "Colorado", + "city": "Wacissa" + } + }, + { + "id": 9263, + "name": "Gayle Berry", + "gender": "female", + "age": 41, + "address": { + "state": "California", + "city": "Blue" + } + }, + { + "id": 9264, + "name": "Josie Hull", + "gender": "female", + "age": 70, + "address": { + "state": "Illinois", + "city": "Gallina" + } + }, + { + "id": 9265, + "name": "Briana Stark", + "gender": "female", + "age": 60, + "address": { + "state": "Minnesota", + "city": "Cornucopia" + } + }, + { + "id": 9266, + "name": "Baxter Cunningham", + "gender": "male", + "age": 41, + "address": { + "state": "Kentucky", + "city": "Hasty" + } + }, + { + "id": 9267, + "name": "Eloise Malone", + "gender": "female", + "age": 47, + "address": { + "state": "Ohio", + "city": "Weeksville" + } + }, + { + "id": 9268, + "name": "Loraine Foley", + "gender": "female", + "age": 24, + "address": { + "state": "Louisiana", + "city": "Manitou" + } + }, + { + "id": 9269, + "name": "Cheryl Noble", + "gender": "female", + "age": 44, + "address": { + "state": "Montana", + "city": "Graniteville" + } + }, + { + "id": 9270, + "name": "Jones Pratt", + "gender": "male", + "age": 59, + "address": { + "state": "South Carolina", + "city": "Maury" + } + }, + { + "id": 9271, + "name": "Nanette Montgomery", + "gender": "female", + "age": 66, + "address": { + "state": "Missouri", + "city": "Shepardsville" + } + }, + { + "id": 9272, + "name": "Leann Holmes", + "gender": "female", + "age": 64, + "address": { + "state": "North Dakota", + "city": "Sedley" + } + }, + { + "id": 9273, + "name": "Craft Calhoun", + "gender": "male", + "age": 74, + "address": { + "state": "Vermont", + "city": "Roderfield" + } + }, + { + "id": 9274, + "name": "Randi Trevino", + "gender": "female", + "age": 58, + "address": { + "state": "New York", + "city": "Greenock" + } + }, + { + "id": 9275, + "name": "Teri Norris", + "gender": "female", + "age": 17, + "address": { + "state": "Indiana", + "city": "Jennings" + } + }, + { + "id": 9276, + "name": "Cherry Hodge", + "gender": "female", + "age": 68, + "address": { + "state": "Hawaii", + "city": "Urbana" + } + }, + { + "id": 9277, + "name": "Schwartz Warner", + "gender": "male", + "age": 36, + "address": { + "state": "Rhode Island", + "city": "Templeton" + } + }, + { + "id": 9278, + "name": "Terrell Stein", + "gender": "male", + "age": 40, + "address": { + "state": "Georgia", + "city": "Fillmore" + } + }, + { + "id": 9279, + "name": "Rena Whitehead", + "gender": "female", + "age": 65, + "address": { + "state": "West Virginia", + "city": "Moquino" + } + }, + { + "id": 9280, + "name": "Bell Mathews", + "gender": "male", + "age": 67, + "address": { + "state": "Massachusetts", + "city": "Cresaptown" + } + }, + { + "id": 9281, + "name": "Logan Burns", + "gender": "male", + "age": 78, + "address": { + "state": "Idaho", + "city": "Salix" + } + }, + { + "id": 9282, + "name": "Hensley Reilly", + "gender": "male", + "age": 50, + "address": { + "state": "Washington", + "city": "Oneida" + } + }, + { + "id": 9283, + "name": "Mindy Conley", + "gender": "female", + "age": 40, + "address": { + "state": "Virginia", + "city": "Stagecoach" + } + }, + { + "id": 9284, + "name": "Annette Burgess", + "gender": "female", + "age": 26, + "address": { + "state": "Maryland", + "city": "Hatteras" + } + }, + { + "id": 9285, + "name": "Wallace Cobb", + "gender": "male", + "age": 61, + "address": { + "state": "Arizona", + "city": "Emerald" + } + }, + { + "id": 9286, + "name": "Hallie Franks", + "gender": "female", + "age": 47, + "address": { + "state": "Florida", + "city": "Olney" + } + }, + { + "id": 9287, + "name": "Lisa Boyd", + "gender": "female", + "age": 59, + "address": { + "state": "Michigan", + "city": "Cliff" + } + }, + { + "id": 9288, + "name": "Stephens Cleveland", + "gender": "male", + "age": 46, + "address": { + "state": "Nevada", + "city": "Moscow" + } + }, + { + "id": 9289, + "name": "Elisa Mcintosh", + "gender": "female", + "age": 59, + "address": { + "state": "New Hampshire", + "city": "Wescosville" + } + }, + { + "id": 9290, + "name": "Vega Bowers", + "gender": "male", + "age": 46, + "address": { + "state": "Arkansas", + "city": "Sylvanite" + } + }, + { + "id": 9291, + "name": "Mcmahon Huber", + "gender": "male", + "age": 39, + "address": { + "state": "Oregon", + "city": "Wanamie" + } + }, + { + "id": 9292, + "name": "Pam Hubbard", + "gender": "female", + "age": 43, + "address": { + "state": "New Jersey", + "city": "Sabillasville" + } + }, + { + "id": 9293, + "name": "Earline Sutton", + "gender": "female", + "age": 59, + "address": { + "state": "Nebraska", + "city": "Nanafalia" + } + }, + { + "id": 9294, + "name": "Steele Torres", + "gender": "male", + "age": 76, + "address": { + "state": "Maine", + "city": "Hackneyville" + } + }, + { + "id": 9295, + "name": "Kemp Huffman", + "gender": "male", + "age": 29, + "address": { + "state": "Kansas", + "city": "Kula" + } + }, + { + "id": 9296, + "name": "Sampson Casey", + "gender": "male", + "age": 63, + "address": { + "state": "Texas", + "city": "Cazadero" + } + }, + { + "id": 9297, + "name": "Dawn Blake", + "gender": "female", + "age": 45, + "address": { + "state": "South Dakota", + "city": "Babb" + } + }, + { + "id": 9298, + "name": "Bush Flynn", + "gender": "male", + "age": 47, + "address": { + "state": "Wisconsin", + "city": "Germanton" + } + }, + { + "id": 9299, + "name": "Byrd Collins", + "gender": "male", + "age": 81, + "address": { + "state": "Connecticut", + "city": "Herlong" + } + }, + { + "id": 9300, + "name": "Shannon Drake", + "gender": "male", + "age": 28, + "address": { + "state": "Wyoming", + "city": "Frystown" + } + }, + { + "id": 9301, + "name": "Wilkinson Hester", + "gender": "male", + "age": 34, + "address": { + "state": "North Carolina", + "city": "Dunbar" + } + }, + { + "id": 9302, + "name": "Webb Reid", + "gender": "male", + "age": 23, + "address": { + "state": "Mississippi", + "city": "Bowmansville" + } + }, + { + "id": 9303, + "name": "Stafford Nixon", + "gender": "male", + "age": 71, + "address": { + "state": "Pennsylvania", + "city": "Villarreal" + } + }, + { + "id": 9304, + "name": "Janet Heath", + "gender": "female", + "age": 36, + "address": { + "state": "Tennessee", + "city": "Advance" + } + }, + { + "id": 9305, + "name": "Petersen Oneil", + "gender": "male", + "age": 62, + "address": { + "state": "Delaware", + "city": "Colton" + } + }, + { + "id": 9306, + "name": "Kennedy Leblanc", + "gender": "male", + "age": 24, + "address": { + "state": "New Mexico", + "city": "Mooresburg" + } + }, + { + "id": 9307, + "name": "Earlene Sloan", + "gender": "female", + "age": 74, + "address": { + "state": "Utah", + "city": "Ola" + } + }, + { + "id": 9308, + "name": "Sharron Flowers", + "gender": "female", + "age": 51, + "address": { + "state": "Iowa", + "city": "Whipholt" + } + }, + { + "id": 9309, + "name": "Bonita Hines", + "gender": "female", + "age": 59, + "address": { + "state": "Alaska", + "city": "Navarre" + } + }, + { + "id": 9310, + "name": "Noemi Young", + "gender": "female", + "age": 69, + "address": { + "state": "New Jersey", + "city": "Masthope" + } + }, + { + "id": 9311, + "name": "Karla Carson", + "gender": "female", + "age": 34, + "address": { + "state": "South Carolina", + "city": "Edgewater" + } + }, + { + "id": 9312, + "name": "Huff Bush", + "gender": "male", + "age": 75, + "address": { + "state": "Nebraska", + "city": "Elliott" + } + }, + { + "id": 9313, + "name": "Vivian Faulkner", + "gender": "female", + "age": 37, + "address": { + "state": "North Dakota", + "city": "Waterford" + } + }, + { + "id": 9314, + "name": "Cobb Booker", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Laurelton" + } + }, + { + "id": 9315, + "name": "Bond Evans", + "gender": "male", + "age": 21, + "address": { + "state": "Kansas", + "city": "Crawfordsville" + } + }, + { + "id": 9316, + "name": "Anderson Mcdowell", + "gender": "male", + "age": 54, + "address": { + "state": "Texas", + "city": "Kylertown" + } + }, + { + "id": 9317, + "name": "Deanna Bass", + "gender": "female", + "age": 32, + "address": { + "state": "Illinois", + "city": "Bladensburg" + } + }, + { + "id": 9318, + "name": "Lindsay Carpenter", + "gender": "female", + "age": 61, + "address": { + "state": "Kentucky", + "city": "Albrightsville" + } + }, + { + "id": 9319, + "name": "Pace Vargas", + "gender": "male", + "age": 61, + "address": { + "state": "Iowa", + "city": "Chumuckla" + } + }, + { + "id": 9320, + "name": "Browning Hill", + "gender": "male", + "age": 23, + "address": { + "state": "Florida", + "city": "Utting" + } + }, + { + "id": 9321, + "name": "Russo Armstrong", + "gender": "male", + "age": 30, + "address": { + "state": "Washington", + "city": "Alamo" + } + }, + { + "id": 9322, + "name": "Taylor Haney", + "gender": "male", + "age": 66, + "address": { + "state": "California", + "city": "Neahkahnie" + } + }, + { + "id": 9323, + "name": "Kristina Slater", + "gender": "female", + "age": 63, + "address": { + "state": "Mississippi", + "city": "Riegelwood" + } + }, + { + "id": 9324, + "name": "Ann Vaughan", + "gender": "female", + "age": 28, + "address": { + "state": "Arkansas", + "city": "Fairlee" + } + }, + { + "id": 9325, + "name": "Maryanne Dudley", + "gender": "female", + "age": 35, + "address": { + "state": "Virginia", + "city": "Statenville" + } + }, + { + "id": 9326, + "name": "Sykes Rose", + "gender": "male", + "age": 46, + "address": { + "state": "Indiana", + "city": "Cataract" + } + }, + { + "id": 9327, + "name": "Madelyn Sykes", + "gender": "female", + "age": 44, + "address": { + "state": "Utah", + "city": "Hampstead" + } + }, + { + "id": 9328, + "name": "Kane Bailey", + "gender": "male", + "age": 46, + "address": { + "state": "South Dakota", + "city": "Temperanceville" + } + }, + { + "id": 9329, + "name": "Sharlene Miles", + "gender": "female", + "age": 79, + "address": { + "state": "Nevada", + "city": "Concho" + } + }, + { + "id": 9330, + "name": "Serrano Beck", + "gender": "male", + "age": 76, + "address": { + "state": "Tennessee", + "city": "Walton" + } + }, + { + "id": 9331, + "name": "Leonor Branch", + "gender": "female", + "age": 62, + "address": { + "state": "Minnesota", + "city": "Sanders" + } + }, + { + "id": 9332, + "name": "Alejandra Mckinney", + "gender": "female", + "age": 37, + "address": { + "state": "Massachusetts", + "city": "Goldfield" + } + }, + { + "id": 9333, + "name": "Wheeler Barry", + "gender": "male", + "age": 66, + "address": { + "state": "Georgia", + "city": "Hobucken" + } + }, + { + "id": 9334, + "name": "Henry Martin", + "gender": "male", + "age": 44, + "address": { + "state": "Arizona", + "city": "Galesville" + } + }, + { + "id": 9335, + "name": "Lindsey Copeland", + "gender": "male", + "age": 76, + "address": { + "state": "Rhode Island", + "city": "Lowell" + } + }, + { + "id": 9336, + "name": "Kinney Dotson", + "gender": "male", + "age": 52, + "address": { + "state": "Vermont", + "city": "Brazos" + } + }, + { + "id": 9337, + "name": "Cassie Cole", + "gender": "female", + "age": 48, + "address": { + "state": "Montana", + "city": "Cavalero" + } + }, + { + "id": 9338, + "name": "Travis Bruce", + "gender": "male", + "age": 35, + "address": { + "state": "Louisiana", + "city": "Gilmore" + } + }, + { + "id": 9339, + "name": "Mcdowell Lane", + "gender": "male", + "age": 45, + "address": { + "state": "Hawaii", + "city": "Deltaville" + } + }, + { + "id": 9340, + "name": "Garza Guerrero", + "gender": "male", + "age": 30, + "address": { + "state": "Alabama", + "city": "Orason" + } + }, + { + "id": 9341, + "name": "Hubbard Beasley", + "gender": "male", + "age": 58, + "address": { + "state": "Wisconsin", + "city": "Enlow" + } + }, + { + "id": 9342, + "name": "Cecilia Lowe", + "gender": "female", + "age": 59, + "address": { + "state": "Maryland", + "city": "Stevens" + } + }, + { + "id": 9343, + "name": "Malinda Thomas", + "gender": "female", + "age": 60, + "address": { + "state": "Ohio", + "city": "Floris" + } + }, + { + "id": 9344, + "name": "Best Hoffman", + "gender": "male", + "age": 21, + "address": { + "state": "Pennsylvania", + "city": "Leeper" + } + }, + { + "id": 9345, + "name": "Pennington Whitaker", + "gender": "male", + "age": 62, + "address": { + "state": "New Hampshire", + "city": "Ypsilanti" + } + }, + { + "id": 9346, + "name": "Castro Glass", + "gender": "male", + "age": 55, + "address": { + "state": "Missouri", + "city": "Bartonsville" + } + }, + { + "id": 9347, + "name": "Maura Stanley", + "gender": "female", + "age": 57, + "address": { + "state": "Colorado", + "city": "Orviston" + } + }, + { + "id": 9348, + "name": "Hattie Williamson", + "gender": "female", + "age": 40, + "address": { + "state": "New York", + "city": "Leming" + } + }, + { + "id": 9349, + "name": "Jodi Cooley", + "gender": "female", + "age": 62, + "address": { + "state": "Idaho", + "city": "Rote" + } + }, + { + "id": 9350, + "name": "Ana Calderon", + "gender": "female", + "age": 74, + "address": { + "state": "Connecticut", + "city": "Coventry" + } + }, + { + "id": 9351, + "name": "Jerry Burnett", + "gender": "female", + "age": 31, + "address": { + "state": "Wyoming", + "city": "Clay" + } + }, + { + "id": 9352, + "name": "Charles Perkins", + "gender": "male", + "age": 57, + "address": { + "state": "Oklahoma", + "city": "Brownsville" + } + }, + { + "id": 9353, + "name": "Lillian Klein", + "gender": "female", + "age": 74, + "address": { + "state": "New Mexico", + "city": "Rose" + } + }, + { + "id": 9354, + "name": "Jennings Palmer", + "gender": "male", + "age": 57, + "address": { + "state": "Delaware", + "city": "Savage" + } + }, + { + "id": 9355, + "name": "Sullivan Sweeney", + "gender": "male", + "age": 17, + "address": { + "state": "Michigan", + "city": "Fairforest" + } + }, + { + "id": 9356, + "name": "Matilda Higgins", + "gender": "female", + "age": 78, + "address": { + "state": "Oregon", + "city": "Sabillasville" + } + }, + { + "id": 9357, + "name": "Adeline Bender", + "gender": "female", + "age": 60, + "address": { + "state": "Maine", + "city": "Dargan" + } + }, + { + "id": 9358, + "name": "Catherine Chandler", + "gender": "female", + "age": 60, + "address": { + "state": "Alaska", + "city": "Durham" + } + }, + { + "id": 9359, + "name": "Yvonne Shannon", + "gender": "female", + "age": 53, + "address": { + "state": "Minnesota", + "city": "Enoree" + } + }, + { + "id": 9360, + "name": "Frieda Schneider", + "gender": "female", + "age": 36, + "address": { + "state": "South Dakota", + "city": "Ahwahnee" + } + }, + { + "id": 9361, + "name": "Miriam Swanson", + "gender": "female", + "age": 66, + "address": { + "state": "Wyoming", + "city": "Callaghan" + } + }, + { + "id": 9362, + "name": "Carmela Maddox", + "gender": "female", + "age": 74, + "address": { + "state": "North Dakota", + "city": "Leroy" + } + }, + { + "id": 9363, + "name": "Sharon Adkins", + "gender": "female", + "age": 28, + "address": { + "state": "Pennsylvania", + "city": "Naomi" + } + }, + { + "id": 9364, + "name": "Kelly Bird", + "gender": "female", + "age": 49, + "address": { + "state": "Kentucky", + "city": "Southview" + } + }, + { + "id": 9365, + "name": "Vonda Aguilar", + "gender": "female", + "age": 65, + "address": { + "state": "Utah", + "city": "Wyoming" + } + }, + { + "id": 9366, + "name": "Minnie Booth", + "gender": "female", + "age": 38, + "address": { + "state": "Georgia", + "city": "Monument" + } + }, + { + "id": 9367, + "name": "Ola Haley", + "gender": "female", + "age": 57, + "address": { + "state": "South Carolina", + "city": "Mapletown" + } + }, + { + "id": 9368, + "name": "Dorothea Estes", + "gender": "female", + "age": 33, + "address": { + "state": "Connecticut", + "city": "Coinjock" + } + }, + { + "id": 9369, + "name": "Luna Horn", + "gender": "male", + "age": 51, + "address": { + "state": "Hawaii", + "city": "Cresaptown" + } + }, + { + "id": 9370, + "name": "Fannie Gaines", + "gender": "female", + "age": 30, + "address": { + "state": "Iowa", + "city": "Statenville" + } + }, + { + "id": 9371, + "name": "Luz Jimenez", + "gender": "female", + "age": 34, + "address": { + "state": "Nevada", + "city": "Idledale" + } + }, + { + "id": 9372, + "name": "Eunice Bolton", + "gender": "female", + "age": 78, + "address": { + "state": "Arkansas", + "city": "Crisman" + } + }, + { + "id": 9373, + "name": "Rhea Mcintosh", + "gender": "female", + "age": 59, + "address": { + "state": "Oregon", + "city": "Mappsville" + } + }, + { + "id": 9374, + "name": "Jeannine Clark", + "gender": "female", + "age": 77, + "address": { + "state": "Texas", + "city": "Yettem" + } + }, + { + "id": 9375, + "name": "Johanna Grant", + "gender": "female", + "age": 75, + "address": { + "state": "Kansas", + "city": "Edgewater" + } + }, + { + "id": 9376, + "name": "Esperanza Mcgee", + "gender": "female", + "age": 39, + "address": { + "state": "West Virginia", + "city": "Wescosville" + } + }, + { + "id": 9377, + "name": "Maryellen Mcdowell", + "gender": "female", + "age": 32, + "address": { + "state": "Alaska", + "city": "Inkerman" + } + }, + { + "id": 9378, + "name": "Hicks Harper", + "gender": "male", + "age": 71, + "address": { + "state": "Colorado", + "city": "Fulford" + } + }, + { + "id": 9379, + "name": "Stephens Wiggins", + "gender": "male", + "age": 45, + "address": { + "state": "Virginia", + "city": "Gila" + } + }, + { + "id": 9380, + "name": "Karina Calderon", + "gender": "female", + "age": 43, + "address": { + "state": "Alabama", + "city": "Welda" + } + }, + { + "id": 9381, + "name": "Helene Bryant", + "gender": "female", + "age": 31, + "address": { + "state": "Montana", + "city": "Blanco" + } + }, + { + "id": 9382, + "name": "Lori Mckenzie", + "gender": "female", + "age": 76, + "address": { + "state": "Arizona", + "city": "Terlingua" + } + }, + { + "id": 9383, + "name": "Alford Flores", + "gender": "male", + "age": 74, + "address": { + "state": "Ohio", + "city": "Hiwasse" + } + }, + { + "id": 9384, + "name": "Geraldine Beard", + "gender": "female", + "age": 32, + "address": { + "state": "Michigan", + "city": "Nogal" + } + }, + { + "id": 9385, + "name": "Jacobson Lowery", + "gender": "male", + "age": 67, + "address": { + "state": "Delaware", + "city": "Crucible" + } + }, + { + "id": 9386, + "name": "Mindy Moses", + "gender": "female", + "age": 26, + "address": { + "state": "Louisiana", + "city": "Hinsdale" + } + }, + { + "id": 9387, + "name": "Weaver Cooke", + "gender": "male", + "age": 49, + "address": { + "state": "Rhode Island", + "city": "Bordelonville" + } + }, + { + "id": 9388, + "name": "Johnnie Brooks", + "gender": "female", + "age": 46, + "address": { + "state": "Maine", + "city": "Brandermill" + } + }, + { + "id": 9389, + "name": "John Ball", + "gender": "female", + "age": 66, + "address": { + "state": "Florida", + "city": "Cotopaxi" + } + }, + { + "id": 9390, + "name": "Ruiz Kaufman", + "gender": "male", + "age": 78, + "address": { + "state": "Idaho", + "city": "Drytown" + } + }, + { + "id": 9391, + "name": "Daphne Zimmerman", + "gender": "female", + "age": 40, + "address": { + "state": "New Hampshire", + "city": "Osmond" + } + }, + { + "id": 9392, + "name": "Decker Keller", + "gender": "male", + "age": 39, + "address": { + "state": "Vermont", + "city": "Hachita" + } + }, + { + "id": 9393, + "name": "Strong Hyde", + "gender": "male", + "age": 73, + "address": { + "state": "New Mexico", + "city": "Sunbury" + } + }, + { + "id": 9394, + "name": "Munoz Bonner", + "gender": "male", + "age": 65, + "address": { + "state": "Indiana", + "city": "Dodge" + } + }, + { + "id": 9395, + "name": "Tanya Chavez", + "gender": "female", + "age": 45, + "address": { + "state": "Nebraska", + "city": "Adamstown" + } + }, + { + "id": 9396, + "name": "Shelton Holcomb", + "gender": "male", + "age": 32, + "address": { + "state": "Missouri", + "city": "Caroline" + } + }, + { + "id": 9397, + "name": "Mccray Pugh", + "gender": "male", + "age": 65, + "address": { + "state": "Oklahoma", + "city": "Sabillasville" + } + }, + { + "id": 9398, + "name": "Chavez Noel", + "gender": "male", + "age": 22, + "address": { + "state": "Mississippi", + "city": "Chamizal" + } + }, + { + "id": 9399, + "name": "Stuart Beck", + "gender": "male", + "age": 70, + "address": { + "state": "Illinois", + "city": "Cazadero" + } + }, + { + "id": 9400, + "name": "Wanda Benjamin", + "gender": "female", + "age": 81, + "address": { + "state": "Washington", + "city": "Onton" + } + }, + { + "id": 9401, + "name": "Valerie Castillo", + "gender": "female", + "age": 29, + "address": { + "state": "New York", + "city": "Camino" + } + }, + { + "id": 9402, + "name": "Jo Davenport", + "gender": "female", + "age": 22, + "address": { + "state": "Wisconsin", + "city": "Bluetown" + } + }, + { + "id": 9403, + "name": "Audra Haney", + "gender": "female", + "age": 45, + "address": { + "state": "North Carolina", + "city": "Roderfield" + } + }, + { + "id": 9404, + "name": "Mack Yates", + "gender": "male", + "age": 66, + "address": { + "state": "New Jersey", + "city": "Condon" + } + }, + { + "id": 9405, + "name": "Bernice Sharpe", + "gender": "female", + "age": 61, + "address": { + "state": "California", + "city": "Needmore" + } + }, + { + "id": 9406, + "name": "Pansy Owen", + "gender": "female", + "age": 63, + "address": { + "state": "Tennessee", + "city": "Newkirk" + } + }, + { + "id": 9407, + "name": "Bush Carr", + "gender": "male", + "age": 36, + "address": { + "state": "Massachusetts", + "city": "Emison" + } + }, + { + "id": 9408, + "name": "Lesa Hinton", + "gender": "female", + "age": 78, + "address": { + "state": "Massachusetts", + "city": "Wildwood" + } + }, + { + "id": 9409, + "name": "Schultz Flowers", + "gender": "male", + "age": 37, + "address": { + "state": "Louisiana", + "city": "Coldiron" + } + }, + { + "id": 9410, + "name": "Ann Matthews", + "gender": "female", + "age": 78, + "address": { + "state": "Michigan", + "city": "Homestead" + } + }, + { + "id": 9411, + "name": "Maribel Bates", + "gender": "female", + "age": 80, + "address": { + "state": "Connecticut", + "city": "Imperial" + } + }, + { + "id": 9412, + "name": "Martina Kelley", + "gender": "female", + "age": 68, + "address": { + "state": "Delaware", + "city": "Omar" + } + }, + { + "id": 9413, + "name": "Collier Wilkerson", + "gender": "male", + "age": 73, + "address": { + "state": "Wyoming", + "city": "Fingerville" + } + }, + { + "id": 9414, + "name": "Debora Wheeler", + "gender": "female", + "age": 22, + "address": { + "state": "Indiana", + "city": "Toftrees" + } + }, + { + "id": 9415, + "name": "Leona Harper", + "gender": "female", + "age": 43, + "address": { + "state": "Virginia", + "city": "Kieler" + } + }, + { + "id": 9416, + "name": "Stacie Humphrey", + "gender": "female", + "age": 77, + "address": { + "state": "Oklahoma", + "city": "Campo" + } + }, + { + "id": 9417, + "name": "Odessa Leblanc", + "gender": "female", + "age": 33, + "address": { + "state": "Alabama", + "city": "Welda" + } + }, + { + "id": 9418, + "name": "Randi Green", + "gender": "female", + "age": 53, + "address": { + "state": "Colorado", + "city": "Freetown" + } + }, + { + "id": 9419, + "name": "Terry Hurst", + "gender": "male", + "age": 23, + "address": { + "state": "Oregon", + "city": "Beaulieu" + } + }, + { + "id": 9420, + "name": "Mercado Bowman", + "gender": "male", + "age": 76, + "address": { + "state": "Ohio", + "city": "Gulf" + } + }, + { + "id": 9421, + "name": "Gayle Lara", + "gender": "female", + "age": 32, + "address": { + "state": "Iowa", + "city": "Condon" + } + }, + { + "id": 9422, + "name": "Mckenzie Whitaker", + "gender": "male", + "age": 61, + "address": { + "state": "Mississippi", + "city": "Vallonia" + } + }, + { + "id": 9423, + "name": "Shirley Mcleod", + "gender": "female", + "age": 77, + "address": { + "state": "South Dakota", + "city": "Trona" + } + }, + { + "id": 9424, + "name": "Mueller Carney", + "gender": "male", + "age": 80, + "address": { + "state": "California", + "city": "Bascom" + } + }, + { + "id": 9425, + "name": "Baldwin Bernard", + "gender": "male", + "age": 24, + "address": { + "state": "Rhode Island", + "city": "Davenport" + } + }, + { + "id": 9426, + "name": "Townsend Mullins", + "gender": "male", + "age": 47, + "address": { + "state": "Vermont", + "city": "Savannah" + } + }, + { + "id": 9427, + "name": "Marquez Watson", + "gender": "male", + "age": 80, + "address": { + "state": "Tennessee", + "city": "Grahamtown" + } + }, + { + "id": 9428, + "name": "Fry Vaughn", + "gender": "male", + "age": 65, + "address": { + "state": "New York", + "city": "Albany" + } + }, + { + "id": 9429, + "name": "York Dale", + "gender": "male", + "age": 49, + "address": { + "state": "Arkansas", + "city": "Torboy" + } + }, + { + "id": 9430, + "name": "Kathrine Lindsay", + "gender": "female", + "age": 53, + "address": { + "state": "New Hampshire", + "city": "Sparkill" + } + }, + { + "id": 9431, + "name": "Susana Mccall", + "gender": "female", + "age": 72, + "address": { + "state": "New Jersey", + "city": "Johnsonburg" + } + }, + { + "id": 9432, + "name": "Carly Harmon", + "gender": "female", + "age": 35, + "address": { + "state": "Idaho", + "city": "Walton" + } + }, + { + "id": 9433, + "name": "Miriam Pena", + "gender": "female", + "age": 80, + "address": { + "state": "Missouri", + "city": "Clarktown" + } + }, + { + "id": 9434, + "name": "Burt Curry", + "gender": "male", + "age": 68, + "address": { + "state": "Maine", + "city": "Alafaya" + } + }, + { + "id": 9435, + "name": "Liza Hinton", + "gender": "female", + "age": 42, + "address": { + "state": "Maryland", + "city": "Dorneyville" + } + }, + { + "id": 9436, + "name": "Suarez Hicks", + "gender": "male", + "age": 37, + "address": { + "state": "Illinois", + "city": "Osage" + } + }, + { + "id": 9437, + "name": "Nadia Frye", + "gender": "female", + "age": 75, + "address": { + "state": "Kentucky", + "city": "Herlong" + } + }, + { + "id": 9438, + "name": "Marquita Medina", + "gender": "female", + "age": 20, + "address": { + "state": "Wisconsin", + "city": "Geyserville" + } + }, + { + "id": 9439, + "name": "Miranda Bennett", + "gender": "male", + "age": 72, + "address": { + "state": "South Carolina", + "city": "Enoree" + } + }, + { + "id": 9440, + "name": "Luna Valentine", + "gender": "male", + "age": 20, + "address": { + "state": "Nebraska", + "city": "Caron" + } + }, + { + "id": 9441, + "name": "Eunice Larsen", + "gender": "female", + "age": 48, + "address": { + "state": "New Mexico", + "city": "Bentonville" + } + }, + { + "id": 9442, + "name": "Cash Barr", + "gender": "male", + "age": 24, + "address": { + "state": "Pennsylvania", + "city": "Tilden" + } + }, + { + "id": 9443, + "name": "Delaney Padilla", + "gender": "male", + "age": 71, + "address": { + "state": "Arizona", + "city": "Ivanhoe" + } + }, + { + "id": 9444, + "name": "Minerva Melton", + "gender": "female", + "age": 68, + "address": { + "state": "North Carolina", + "city": "Helen" + } + }, + { + "id": 9445, + "name": "Barbara Tran", + "gender": "female", + "age": 58, + "address": { + "state": "Texas", + "city": "Takilma" + } + }, + { + "id": 9446, + "name": "Ollie Clark", + "gender": "female", + "age": 74, + "address": { + "state": "Alaska", + "city": "Dola" + } + }, + { + "id": 9447, + "name": "Burns Hyde", + "gender": "male", + "age": 61, + "address": { + "state": "Kansas", + "city": "Hessville" + } + }, + { + "id": 9448, + "name": "Wheeler Delacruz", + "gender": "male", + "age": 59, + "address": { + "state": "Georgia", + "city": "Stonybrook" + } + }, + { + "id": 9449, + "name": "Barrett Reyes", + "gender": "male", + "age": 66, + "address": { + "state": "North Dakota", + "city": "Forbestown" + } + }, + { + "id": 9450, + "name": "Ginger Hudson", + "gender": "female", + "age": 58, + "address": { + "state": "Hawaii", + "city": "Hackneyville" + } + }, + { + "id": 9451, + "name": "Benton Byrd", + "gender": "male", + "age": 80, + "address": { + "state": "Montana", + "city": "Garfield" + } + }, + { + "id": 9452, + "name": "Guerrero Cole", + "gender": "male", + "age": 77, + "address": { + "state": "Utah", + "city": "Canoochee" + } + }, + { + "id": 9453, + "name": "Pennington Benjamin", + "gender": "male", + "age": 39, + "address": { + "state": "Florida", + "city": "Summerfield" + } + }, + { + "id": 9454, + "name": "Sabrina Parker", + "gender": "female", + "age": 29, + "address": { + "state": "Nevada", + "city": "Datil" + } + }, + { + "id": 9455, + "name": "Raquel Zimmerman", + "gender": "female", + "age": 19, + "address": { + "state": "Washington", + "city": "Aguila" + } + }, + { + "id": 9456, + "name": "Pearl Larson", + "gender": "female", + "age": 61, + "address": { + "state": "Minnesota", + "city": "Linwood" + } + }, + { + "id": 9457, + "name": "Gonzales Shaw", + "gender": "male", + "age": 47, + "address": { + "state": "Maine", + "city": "Sehili" + } + }, + { + "id": 9458, + "name": "Garcia Luna", + "gender": "male", + "age": 57, + "address": { + "state": "Oklahoma", + "city": "Noxen" + } + }, + { + "id": 9459, + "name": "Fowler Sellers", + "gender": "male", + "age": 26, + "address": { + "state": "Arizona", + "city": "Riner" + } + }, + { + "id": 9460, + "name": "Heidi Moody", + "gender": "female", + "age": 18, + "address": { + "state": "Alabama", + "city": "Hannasville" + } + }, + { + "id": 9461, + "name": "Chandler Hill", + "gender": "male", + "age": 60, + "address": { + "state": "Missouri", + "city": "Vincent" + } + }, + { + "id": 9462, + "name": "Brock Brewer", + "gender": "male", + "age": 36, + "address": { + "state": "Arkansas", + "city": "Adelino" + } + }, + { + "id": 9463, + "name": "Abigail Barrera", + "gender": "female", + "age": 42, + "address": { + "state": "Vermont", + "city": "Sultana" + } + }, + { + "id": 9464, + "name": "Leta Macdonald", + "gender": "female", + "age": 27, + "address": { + "state": "Tennessee", + "city": "Lookingglass" + } + }, + { + "id": 9465, + "name": "Rich Sherman", + "gender": "male", + "age": 25, + "address": { + "state": "North Dakota", + "city": "Winchester" + } + }, + { + "id": 9466, + "name": "Barrett Snyder", + "gender": "male", + "age": 77, + "address": { + "state": "Georgia", + "city": "Eggertsville" + } + }, + { + "id": 9467, + "name": "Ivy Kemp", + "gender": "female", + "age": 82, + "address": { + "state": "Illinois", + "city": "Windsor" + } + }, + { + "id": 9468, + "name": "Christensen Padilla", + "gender": "male", + "age": 76, + "address": { + "state": "Wisconsin", + "city": "Murillo" + } + }, + { + "id": 9469, + "name": "Cline Landry", + "gender": "male", + "age": 50, + "address": { + "state": "South Carolina", + "city": "Shasta" + } + }, + { + "id": 9470, + "name": "Flynn Lambert", + "gender": "male", + "age": 41, + "address": { + "state": "Virginia", + "city": "Celeryville" + } + }, + { + "id": 9471, + "name": "Hawkins Roth", + "gender": "male", + "age": 17, + "address": { + "state": "Idaho", + "city": "Brownsville" + } + }, + { + "id": 9472, + "name": "Allison Watts", + "gender": "male", + "age": 28, + "address": { + "state": "Nebraska", + "city": "Harmon" + } + }, + { + "id": 9473, + "name": "Bobbie Phillips", + "gender": "female", + "age": 71, + "address": { + "state": "New Mexico", + "city": "Sanford" + } + }, + { + "id": 9474, + "name": "Tracy Horton", + "gender": "female", + "age": 22, + "address": { + "state": "Wyoming", + "city": "Calverton" + } + }, + { + "id": 9475, + "name": "Jacobs Heath", + "gender": "male", + "age": 20, + "address": { + "state": "Ohio", + "city": "Norwood" + } + }, + { + "id": 9476, + "name": "Tami Kirkland", + "gender": "female", + "age": 43, + "address": { + "state": "California", + "city": "Cobbtown" + } + }, + { + "id": 9477, + "name": "Kirkland Clark", + "gender": "male", + "age": 40, + "address": { + "state": "New Hampshire", + "city": "Morningside" + } + }, + { + "id": 9478, + "name": "Suarez Hale", + "gender": "male", + "age": 70, + "address": { + "state": "Montana", + "city": "Nile" + } + }, + { + "id": 9479, + "name": "Britt Cantu", + "gender": "male", + "age": 57, + "address": { + "state": "Iowa", + "city": "Chesapeake" + } + }, + { + "id": 9480, + "name": "York Dyer", + "gender": "male", + "age": 71, + "address": { + "state": "Louisiana", + "city": "Thermal" + } + }, + { + "id": 9481, + "name": "Rosalinda Joseph", + "gender": "female", + "age": 33, + "address": { + "state": "Pennsylvania", + "city": "Tyhee" + } + }, + { + "id": 9482, + "name": "Kelsey Bradshaw", + "gender": "female", + "age": 81, + "address": { + "state": "Hawaii", + "city": "Loomis" + } + }, + { + "id": 9483, + "name": "Sanford Mccormick", + "gender": "male", + "age": 25, + "address": { + "state": "Mississippi", + "city": "Konterra" + } + }, + { + "id": 9484, + "name": "Letitia Ramsey", + "gender": "female", + "age": 28, + "address": { + "state": "Washington", + "city": "Templeton" + } + }, + { + "id": 9485, + "name": "Nikki Moses", + "gender": "female", + "age": 36, + "address": { + "state": "Texas", + "city": "Levant" + } + }, + { + "id": 9486, + "name": "Martin Mclaughlin", + "gender": "male", + "age": 59, + "address": { + "state": "Utah", + "city": "Caron" + } + }, + { + "id": 9487, + "name": "Walsh Garner", + "gender": "male", + "age": 41, + "address": { + "state": "South Dakota", + "city": "Hillsboro" + } + }, + { + "id": 9488, + "name": "Deanne Todd", + "gender": "female", + "age": 25, + "address": { + "state": "Oregon", + "city": "Dunbar" + } + }, + { + "id": 9489, + "name": "Stephenson Hays", + "gender": "male", + "age": 45, + "address": { + "state": "Delaware", + "city": "Taft" + } + }, + { + "id": 9490, + "name": "Bradshaw Guthrie", + "gender": "male", + "age": 51, + "address": { + "state": "North Carolina", + "city": "Galesville" + } + }, + { + "id": 9491, + "name": "Roman Cervantes", + "gender": "male", + "age": 24, + "address": { + "state": "Florida", + "city": "Warren" + } + }, + { + "id": 9492, + "name": "Wilkerson Burt", + "gender": "male", + "age": 73, + "address": { + "state": "New Jersey", + "city": "Elfrida" + } + }, + { + "id": 9493, + "name": "Horn King", + "gender": "male", + "age": 31, + "address": { + "state": "Kentucky", + "city": "Bowmansville" + } + }, + { + "id": 9494, + "name": "Koch Knight", + "gender": "male", + "age": 74, + "address": { + "state": "Michigan", + "city": "Aurora" + } + }, + { + "id": 9495, + "name": "Espinoza Hendricks", + "gender": "male", + "age": 52, + "address": { + "state": "Connecticut", + "city": "Trail" + } + }, + { + "id": 9496, + "name": "Trudy Walker", + "gender": "female", + "age": 31, + "address": { + "state": "Indiana", + "city": "Marbury" + } + }, + { + "id": 9497, + "name": "Terrie Coffey", + "gender": "female", + "age": 36, + "address": { + "state": "Maryland", + "city": "Succasunna" + } + }, + { + "id": 9498, + "name": "Erin Wright", + "gender": "female", + "age": 59, + "address": { + "state": "Colorado", + "city": "Cataract" + } + }, + { + "id": 9499, + "name": "Russell Solis", + "gender": "male", + "age": 76, + "address": { + "state": "Alaska", + "city": "Longbranch" + } + }, + { + "id": 9500, + "name": "Roach Gordon", + "gender": "male", + "age": 65, + "address": { + "state": "Minnesota", + "city": "Onton" + } + }, + { + "id": 9501, + "name": "Lola Daniel", + "gender": "female", + "age": 37, + "address": { + "state": "Massachusetts", + "city": "Lumberton" + } + }, + { + "id": 9502, + "name": "Laurel Camacho", + "gender": "female", + "age": 41, + "address": { + "state": "New York", + "city": "Helen" + } + }, + { + "id": 9503, + "name": "Lamb Rasmussen", + "gender": "male", + "age": 72, + "address": { + "state": "West Virginia", + "city": "Vaughn" + } + }, + { + "id": 9504, + "name": "Nanette Hodges", + "gender": "female", + "age": 72, + "address": { + "state": "Kansas", + "city": "Orovada" + } + }, + { + "id": 9505, + "name": "Porter Rutledge", + "gender": "male", + "age": 24, + "address": { + "state": "Nevada", + "city": "Bynum" + } + }, + { + "id": 9506, + "name": "Ollie Gates", + "gender": "female", + "age": 34, + "address": { + "state": "Wyoming", + "city": "Draper" + } + }, + { + "id": 9507, + "name": "Burton Wilkerson", + "gender": "male", + "age": 35, + "address": { + "state": "North Carolina", + "city": "Fidelis" + } + }, + { + "id": 9508, + "name": "Bailey Zamora", + "gender": "male", + "age": 72, + "address": { + "state": "Missouri", + "city": "Gallina" + } + }, + { + "id": 9509, + "name": "Banks Lane", + "gender": "male", + "age": 73, + "address": { + "state": "New York", + "city": "Moscow" + } + }, + { + "id": 9510, + "name": "Burch Morris", + "gender": "male", + "age": 37, + "address": { + "state": "Maine", + "city": "Lydia" + } + }, + { + "id": 9511, + "name": "Pamela Dudley", + "gender": "female", + "age": 72, + "address": { + "state": "Florida", + "city": "Eggertsville" + } + }, + { + "id": 9512, + "name": "Tricia Underwood", + "gender": "female", + "age": 69, + "address": { + "state": "Indiana", + "city": "Finderne" + } + }, + { + "id": 9513, + "name": "Lora Cervantes", + "gender": "female", + "age": 52, + "address": { + "state": "Utah", + "city": "Sunnyside" + } + }, + { + "id": 9514, + "name": "Smith Lloyd", + "gender": "male", + "age": 39, + "address": { + "state": "Nebraska", + "city": "Hamilton" + } + }, + { + "id": 9515, + "name": "Harrison Bruce", + "gender": "male", + "age": 42, + "address": { + "state": "Pennsylvania", + "city": "Kula" + } + }, + { + "id": 9516, + "name": "Lawanda Flowers", + "gender": "female", + "age": 34, + "address": { + "state": "Oregon", + "city": "Century" + } + }, + { + "id": 9517, + "name": "Tran Berger", + "gender": "male", + "age": 38, + "address": { + "state": "Tennessee", + "city": "Rosewood" + } + }, + { + "id": 9518, + "name": "Howard Lang", + "gender": "male", + "age": 72, + "address": { + "state": "South Carolina", + "city": "Rivera" + } + }, + { + "id": 9519, + "name": "Mejia Turner", + "gender": "male", + "age": 45, + "address": { + "state": "Alabama", + "city": "Holtville" + } + }, + { + "id": 9520, + "name": "Kirkland Strickland", + "gender": "male", + "age": 42, + "address": { + "state": "Michigan", + "city": "Curtice" + } + }, + { + "id": 9521, + "name": "Lindsey Gregory", + "gender": "female", + "age": 25, + "address": { + "state": "South Dakota", + "city": "Duryea" + } + }, + { + "id": 9522, + "name": "Gertrude Dominguez", + "gender": "female", + "age": 41, + "address": { + "state": "Idaho", + "city": "Elizaville" + } + }, + { + "id": 9523, + "name": "Stacie Vance", + "gender": "female", + "age": 38, + "address": { + "state": "Wisconsin", + "city": "Efland" + } + }, + { + "id": 9524, + "name": "Cecilia Clayton", + "gender": "female", + "age": 74, + "address": { + "state": "Maryland", + "city": "Dundee" + } + }, + { + "id": 9525, + "name": "Shelley Sexton", + "gender": "female", + "age": 29, + "address": { + "state": "New Jersey", + "city": "Nord" + } + }, + { + "id": 9526, + "name": "Wood Graves", + "gender": "male", + "age": 48, + "address": { + "state": "Delaware", + "city": "Rushford" + } + }, + { + "id": 9527, + "name": "Rochelle Livingston", + "gender": "female", + "age": 68, + "address": { + "state": "Mississippi", + "city": "Bethpage" + } + }, + { + "id": 9528, + "name": "Tonya Kline", + "gender": "female", + "age": 67, + "address": { + "state": "Texas", + "city": "Albany" + } + }, + { + "id": 9529, + "name": "Allie Randall", + "gender": "female", + "age": 50, + "address": { + "state": "Kansas", + "city": "Muir" + } + }, + { + "id": 9530, + "name": "Skinner Blackburn", + "gender": "male", + "age": 41, + "address": { + "state": "Vermont", + "city": "Mappsville" + } + }, + { + "id": 9531, + "name": "Henry Farrell", + "gender": "male", + "age": 36, + "address": { + "state": "Rhode Island", + "city": "Coyote" + } + }, + { + "id": 9532, + "name": "Adriana Morse", + "gender": "female", + "age": 56, + "address": { + "state": "Alaska", + "city": "Kenmar" + } + }, + { + "id": 9533, + "name": "Evelyn Hart", + "gender": "female", + "age": 60, + "address": { + "state": "Montana", + "city": "Longoria" + } + }, + { + "id": 9534, + "name": "Meghan Reeves", + "gender": "female", + "age": 74, + "address": { + "state": "Illinois", + "city": "Cleary" + } + }, + { + "id": 9535, + "name": "Rene Wilder", + "gender": "female", + "age": 75, + "address": { + "state": "New Hampshire", + "city": "Bowmansville" + } + }, + { + "id": 9536, + "name": "Meredith Santiago", + "gender": "female", + "age": 21, + "address": { + "state": "Georgia", + "city": "Zeba" + } + }, + { + "id": 9537, + "name": "Angelita Porter", + "gender": "female", + "age": 70, + "address": { + "state": "Massachusetts", + "city": "Homeworth" + } + }, + { + "id": 9538, + "name": "Patsy Rocha", + "gender": "female", + "age": 64, + "address": { + "state": "Ohio", + "city": "Riviera" + } + }, + { + "id": 9539, + "name": "Parrish Pruitt", + "gender": "male", + "age": 30, + "address": { + "state": "Washington", + "city": "Manitou" + } + }, + { + "id": 9540, + "name": "Lowe Tillman", + "gender": "male", + "age": 60, + "address": { + "state": "California", + "city": "Thynedale" + } + }, + { + "id": 9541, + "name": "Freda Bowen", + "gender": "female", + "age": 60, + "address": { + "state": "Iowa", + "city": "Robinette" + } + }, + { + "id": 9542, + "name": "Louise Hall", + "gender": "female", + "age": 42, + "address": { + "state": "Nevada", + "city": "Genoa" + } + }, + { + "id": 9543, + "name": "Lott Woods", + "gender": "male", + "age": 76, + "address": { + "state": "Connecticut", + "city": "Gambrills" + } + }, + { + "id": 9544, + "name": "Nanette Hughes", + "gender": "female", + "age": 79, + "address": { + "state": "Arizona", + "city": "Riceville" + } + }, + { + "id": 9545, + "name": "Huber Hunter", + "gender": "male", + "age": 27, + "address": { + "state": "Virginia", + "city": "Basye" + } + }, + { + "id": 9546, + "name": "Bette Mills", + "gender": "female", + "age": 32, + "address": { + "state": "Kentucky", + "city": "Cobbtown" + } + }, + { + "id": 9547, + "name": "Marie Melton", + "gender": "female", + "age": 31, + "address": { + "state": "North Dakota", + "city": "Nelson" + } + }, + { + "id": 9548, + "name": "Goodman Cannon", + "gender": "male", + "age": 77, + "address": { + "state": "Minnesota", + "city": "Westmoreland" + } + }, + { + "id": 9549, + "name": "Velazquez Neal", + "gender": "male", + "age": 70, + "address": { + "state": "Oklahoma", + "city": "Shaft" + } + }, + { + "id": 9550, + "name": "Reynolds Wilcox", + "gender": "male", + "age": 71, + "address": { + "state": "New Mexico", + "city": "Omar" + } + }, + { + "id": 9551, + "name": "Robbie Shelton", + "gender": "female", + "age": 50, + "address": { + "state": "Arkansas", + "city": "Hollins" + } + }, + { + "id": 9552, + "name": "Shelly Mcbride", + "gender": "female", + "age": 40, + "address": { + "state": "Colorado", + "city": "Boomer" + } + }, + { + "id": 9553, + "name": "Salas Ross", + "gender": "male", + "age": 47, + "address": { + "state": "West Virginia", + "city": "Chamberino" + } + }, + { + "id": 9554, + "name": "Acosta Gibson", + "gender": "male", + "age": 60, + "address": { + "state": "Hawaii", + "city": "Lindcove" + } + }, + { + "id": 9555, + "name": "April Conley", + "gender": "female", + "age": 76, + "address": { + "state": "Iowa", + "city": "Lowell" + } + }, + { + "id": 9556, + "name": "Santana Good", + "gender": "male", + "age": 19, + "address": { + "state": "Indiana", + "city": "Darlington" + } + }, + { + "id": 9557, + "name": "Rivera Tillman", + "gender": "male", + "age": 59, + "address": { + "state": "Alabama", + "city": "Knowlton" + } + }, + { + "id": 9558, + "name": "Amanda Holden", + "gender": "female", + "age": 21, + "address": { + "state": "South Carolina", + "city": "Brecon" + } + }, + { + "id": 9559, + "name": "Velez Snyder", + "gender": "male", + "age": 70, + "address": { + "state": "Missouri", + "city": "Elrama" + } + }, + { + "id": 9560, + "name": "Stuart Goodwin", + "gender": "male", + "age": 52, + "address": { + "state": "Idaho", + "city": "Kaka" + } + }, + { + "id": 9561, + "name": "Smith Gilmore", + "gender": "male", + "age": 46, + "address": { + "state": "Virginia", + "city": "Greenock" + } + }, + { + "id": 9562, + "name": "Jimmie Gentry", + "gender": "female", + "age": 19, + "address": { + "state": "Wisconsin", + "city": "Curtice" + } + }, + { + "id": 9563, + "name": "Phelps Holland", + "gender": "male", + "age": 17, + "address": { + "state": "Texas", + "city": "Florence" + } + }, + { + "id": 9564, + "name": "Bonnie Tate", + "gender": "female", + "age": 21, + "address": { + "state": "Pennsylvania", + "city": "Wyano" + } + }, + { + "id": 9565, + "name": "Tillman Mercer", + "gender": "male", + "age": 44, + "address": { + "state": "Louisiana", + "city": "Concho" + } + }, + { + "id": 9566, + "name": "Helga Charles", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Wakarusa" + } + }, + { + "id": 9567, + "name": "Mendoza Gay", + "gender": "male", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Foxworth" + } + }, + { + "id": 9568, + "name": "Lenora Cantrell", + "gender": "female", + "age": 78, + "address": { + "state": "Minnesota", + "city": "Coventry" + } + }, + { + "id": 9569, + "name": "Williams Richard", + "gender": "male", + "age": 75, + "address": { + "state": "Florida", + "city": "Cliffside" + } + }, + { + "id": 9570, + "name": "Houston Poole", + "gender": "male", + "age": 30, + "address": { + "state": "New York", + "city": "Norfolk" + } + }, + { + "id": 9571, + "name": "Lara Ford", + "gender": "female", + "age": 34, + "address": { + "state": "West Virginia", + "city": "Eagletown" + } + }, + { + "id": 9572, + "name": "Byers Travis", + "gender": "male", + "age": 65, + "address": { + "state": "Colorado", + "city": "Woodruff" + } + }, + { + "id": 9573, + "name": "Lynette Waller", + "gender": "female", + "age": 27, + "address": { + "state": "Maine", + "city": "Downsville" + } + }, + { + "id": 9574, + "name": "Lyons Hawkins", + "gender": "male", + "age": 73, + "address": { + "state": "Kansas", + "city": "Blanford" + } + }, + { + "id": 9575, + "name": "Alma Brennan", + "gender": "female", + "age": 76, + "address": { + "state": "Rhode Island", + "city": "Bluffview" + } + }, + { + "id": 9576, + "name": "Johnnie Bruce", + "gender": "female", + "age": 69, + "address": { + "state": "Georgia", + "city": "Thermal" + } + }, + { + "id": 9577, + "name": "Jenifer Santana", + "gender": "female", + "age": 36, + "address": { + "state": "New Jersey", + "city": "Greenbackville" + } + }, + { + "id": 9578, + "name": "Terry Wilkerson", + "gender": "male", + "age": 51, + "address": { + "state": "Vermont", + "city": "Fruitdale" + } + }, + { + "id": 9579, + "name": "Cummings Sawyer", + "gender": "male", + "age": 72, + "address": { + "state": "Montana", + "city": "Nescatunga" + } + }, + { + "id": 9580, + "name": "Dolores Huber", + "gender": "female", + "age": 55, + "address": { + "state": "Nebraska", + "city": "Kilbourne" + } + }, + { + "id": 9581, + "name": "Douglas Roberts", + "gender": "male", + "age": 30, + "address": { + "state": "Mississippi", + "city": "Somerset" + } + }, + { + "id": 9582, + "name": "Flowers Pickett", + "gender": "male", + "age": 63, + "address": { + "state": "Washington", + "city": "Conway" + } + }, + { + "id": 9583, + "name": "Miranda Bass", + "gender": "female", + "age": 48, + "address": { + "state": "Utah", + "city": "Neahkahnie" + } + }, + { + "id": 9584, + "name": "Hallie Hubbard", + "gender": "female", + "age": 57, + "address": { + "state": "Tennessee", + "city": "Garberville" + } + }, + { + "id": 9585, + "name": "Katrina Hogan", + "gender": "female", + "age": 82, + "address": { + "state": "Illinois", + "city": "Fontanelle" + } + }, + { + "id": 9586, + "name": "Durham Scott", + "gender": "male", + "age": 63, + "address": { + "state": "California", + "city": "Lemoyne" + } + }, + { + "id": 9587, + "name": "Adele Santiago", + "gender": "female", + "age": 63, + "address": { + "state": "Connecticut", + "city": "Avalon" + } + }, + { + "id": 9588, + "name": "Francisca French", + "gender": "female", + "age": 24, + "address": { + "state": "Oregon", + "city": "Magnolia" + } + }, + { + "id": 9589, + "name": "Ofelia Stark", + "gender": "female", + "age": 40, + "address": { + "state": "North Carolina", + "city": "Chestnut" + } + }, + { + "id": 9590, + "name": "Sonja Palmer", + "gender": "female", + "age": 19, + "address": { + "state": "New Mexico", + "city": "Glidden" + } + }, + { + "id": 9591, + "name": "Heath Barry", + "gender": "male", + "age": 79, + "address": { + "state": "Hawaii", + "city": "Coinjock" + } + }, + { + "id": 9592, + "name": "Hendricks Obrien", + "gender": "male", + "age": 75, + "address": { + "state": "South Dakota", + "city": "Driftwood" + } + }, + { + "id": 9593, + "name": "Sanchez Terry", + "gender": "male", + "age": 33, + "address": { + "state": "Delaware", + "city": "Harrison" + } + }, + { + "id": 9594, + "name": "Nora Norris", + "gender": "female", + "age": 70, + "address": { + "state": "Michigan", + "city": "Stockwell" + } + }, + { + "id": 9595, + "name": "Henson Richards", + "gender": "male", + "age": 41, + "address": { + "state": "Maryland", + "city": "Newry" + } + }, + { + "id": 9596, + "name": "Claudine Pena", + "gender": "female", + "age": 79, + "address": { + "state": "North Dakota", + "city": "Weogufka" + } + }, + { + "id": 9597, + "name": "Holman Acevedo", + "gender": "male", + "age": 18, + "address": { + "state": "Ohio", + "city": "Nicholson" + } + }, + { + "id": 9598, + "name": "Earline Espinoza", + "gender": "female", + "age": 19, + "address": { + "state": "Arkansas", + "city": "Efland" + } + }, + { + "id": 9599, + "name": "Whitney Mcneil", + "gender": "female", + "age": 37, + "address": { + "state": "Kentucky", + "city": "Lacomb" + } + }, + { + "id": 9600, + "name": "Meredith Chapman", + "gender": "female", + "age": 24, + "address": { + "state": "Nevada", + "city": "Sandston" + } + }, + { + "id": 9601, + "name": "Amparo Stone", + "gender": "female", + "age": 28, + "address": { + "state": "Arizona", + "city": "Loveland" + } + }, + { + "id": 9602, + "name": "Sally Gaines", + "gender": "female", + "age": 72, + "address": { + "state": "Alaska", + "city": "Ticonderoga" + } + }, + { + "id": 9603, + "name": "Ward Jefferson", + "gender": "male", + "age": 79, + "address": { + "state": "Wyoming", + "city": "Axis" + } + }, + { + "id": 9604, + "name": "Hodges Gross", + "gender": "male", + "age": 20, + "address": { + "state": "South Carolina", + "city": "Genoa" + } + }, + { + "id": 9605, + "name": "Francine Levine", + "gender": "female", + "age": 24, + "address": { + "state": "Hawaii", + "city": "Spelter" + } + }, + { + "id": 9606, + "name": "Finch Levy", + "gender": "male", + "age": 64, + "address": { + "state": "Missouri", + "city": "Homeworth" + } + }, + { + "id": 9607, + "name": "Kristi Good", + "gender": "female", + "age": 59, + "address": { + "state": "Illinois", + "city": "Inkerman" + } + }, + { + "id": 9608, + "name": "Brady Schroeder", + "gender": "male", + "age": 52, + "address": { + "state": "Indiana", + "city": "Gracey" + } + }, + { + "id": 9609, + "name": "Jodie Gilmore", + "gender": "female", + "age": 74, + "address": { + "state": "Rhode Island", + "city": "Kingstowne" + } + }, + { + "id": 9610, + "name": "Cortez Perez", + "gender": "male", + "age": 63, + "address": { + "state": "Vermont", + "city": "Tuttle" + } + }, + { + "id": 9611, + "name": "Nancy Cooper", + "gender": "female", + "age": 59, + "address": { + "state": "Georgia", + "city": "Sanders" + } + }, + { + "id": 9612, + "name": "Eve Hill", + "gender": "female", + "age": 78, + "address": { + "state": "Alaska", + "city": "Kieler" + } + }, + { + "id": 9613, + "name": "Bernice Dickson", + "gender": "female", + "age": 61, + "address": { + "state": "Tennessee", + "city": "Sattley" + } + }, + { + "id": 9614, + "name": "Collins Gallagher", + "gender": "male", + "age": 31, + "address": { + "state": "Washington", + "city": "Kipp" + } + }, + { + "id": 9615, + "name": "Velasquez Horne", + "gender": "male", + "age": 60, + "address": { + "state": "North Dakota", + "city": "Nelson" + } + }, + { + "id": 9616, + "name": "Downs Jarvis", + "gender": "male", + "age": 38, + "address": { + "state": "Minnesota", + "city": "Charco" + } + }, + { + "id": 9617, + "name": "Ernestine Vincent", + "gender": "female", + "age": 54, + "address": { + "state": "Colorado", + "city": "Hollins" + } + }, + { + "id": 9618, + "name": "Bertha Dillon", + "gender": "female", + "age": 30, + "address": { + "state": "Oklahoma", + "city": "Rote" + } + }, + { + "id": 9619, + "name": "Debbie Reynolds", + "gender": "female", + "age": 59, + "address": { + "state": "Texas", + "city": "Ripley" + } + }, + { + "id": 9620, + "name": "Deann Serrano", + "gender": "female", + "age": 60, + "address": { + "state": "Arkansas", + "city": "Irwin" + } + }, + { + "id": 9621, + "name": "Elizabeth Jimenez", + "gender": "female", + "age": 75, + "address": { + "state": "Idaho", + "city": "Davenport" + } + }, + { + "id": 9622, + "name": "Owen Hull", + "gender": "male", + "age": 48, + "address": { + "state": "Massachusetts", + "city": "Calvary" + } + }, + { + "id": 9623, + "name": "Heidi Powell", + "gender": "female", + "age": 68, + "address": { + "state": "West Virginia", + "city": "Moraida" + } + }, + { + "id": 9624, + "name": "Curtis Rosa", + "gender": "male", + "age": 22, + "address": { + "state": "Kentucky", + "city": "Wakulla" + } + }, + { + "id": 9625, + "name": "Booker Byers", + "gender": "male", + "age": 41, + "address": { + "state": "Mississippi", + "city": "Lorraine" + } + }, + { + "id": 9626, + "name": "Odom Ball", + "gender": "male", + "age": 67, + "address": { + "state": "Virginia", + "city": "Malo" + } + }, + { + "id": 9627, + "name": "Manning Hart", + "gender": "male", + "age": 46, + "address": { + "state": "Pennsylvania", + "city": "Brogan" + } + }, + { + "id": 9628, + "name": "Simmons Blankenship", + "gender": "male", + "age": 60, + "address": { + "state": "Montana", + "city": "Baker" + } + }, + { + "id": 9629, + "name": "Mattie Cherry", + "gender": "female", + "age": 61, + "address": { + "state": "Ohio", + "city": "Loveland" + } + }, + { + "id": 9630, + "name": "Gwen Walton", + "gender": "female", + "age": 75, + "address": { + "state": "Delaware", + "city": "Goochland" + } + }, + { + "id": 9631, + "name": "Bradshaw Phillips", + "gender": "male", + "age": 77, + "address": { + "state": "Kansas", + "city": "Conway" + } + }, + { + "id": 9632, + "name": "Mcmillan Kemp", + "gender": "male", + "age": 62, + "address": { + "state": "New Jersey", + "city": "Deltaville" + } + }, + { + "id": 9633, + "name": "House Knox", + "gender": "male", + "age": 28, + "address": { + "state": "Maine", + "city": "Cresaptown" + } + }, + { + "id": 9634, + "name": "Leola Taylor", + "gender": "female", + "age": 68, + "address": { + "state": "Iowa", + "city": "Sunwest" + } + }, + { + "id": 9635, + "name": "Miranda Brooks", + "gender": "male", + "age": 45, + "address": { + "state": "Nevada", + "city": "Alleghenyville" + } + }, + { + "id": 9636, + "name": "Kaitlin Gilliam", + "gender": "female", + "age": 68, + "address": { + "state": "California", + "city": "Curtice" + } + }, + { + "id": 9637, + "name": "Nannie Allen", + "gender": "female", + "age": 31, + "address": { + "state": "Utah", + "city": "Websterville" + } + }, + { + "id": 9638, + "name": "Calhoun Robertson", + "gender": "male", + "age": 53, + "address": { + "state": "Michigan", + "city": "Trexlertown" + } + }, + { + "id": 9639, + "name": "Benjamin Lawson", + "gender": "male", + "age": 81, + "address": { + "state": "Oregon", + "city": "Caron" + } + }, + { + "id": 9640, + "name": "Bartlett Hooper", + "gender": "male", + "age": 62, + "address": { + "state": "Alabama", + "city": "Woodlands" + } + }, + { + "id": 9641, + "name": "Muriel Buck", + "gender": "female", + "age": 70, + "address": { + "state": "Wisconsin", + "city": "Gloucester" + } + }, + { + "id": 9642, + "name": "Jan Frederick", + "gender": "female", + "age": 44, + "address": { + "state": "Connecticut", + "city": "Hardyville" + } + }, + { + "id": 9643, + "name": "Paula Mckenzie", + "gender": "female", + "age": 41, + "address": { + "state": "New York", + "city": "Eastmont" + } + }, + { + "id": 9644, + "name": "Thelma Alvarez", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Finderne" + } + }, + { + "id": 9645, + "name": "Lina Burke", + "gender": "female", + "age": 17, + "address": { + "state": "Arizona", + "city": "Tryon" + } + }, + { + "id": 9646, + "name": "Staci Price", + "gender": "female", + "age": 52, + "address": { + "state": "Wyoming", + "city": "Brenton" + } + }, + { + "id": 9647, + "name": "Fletcher Gallegos", + "gender": "male", + "age": 24, + "address": { + "state": "New Mexico", + "city": "Rutherford" + } + }, + { + "id": 9648, + "name": "Frederick Blair", + "gender": "male", + "age": 26, + "address": { + "state": "Nebraska", + "city": "Cobbtown" + } + }, + { + "id": 9649, + "name": "Jones Mcdaniel", + "gender": "male", + "age": 45, + "address": { + "state": "North Carolina", + "city": "Norfolk" + } + }, + { + "id": 9650, + "name": "Leona Fields", + "gender": "female", + "age": 64, + "address": { + "state": "Maryland", + "city": "Corinne" + } + }, + { + "id": 9651, + "name": "Dixie Wilson", + "gender": "female", + "age": 71, + "address": { + "state": "Louisiana", + "city": "Snelling" + } + }, + { + "id": 9652, + "name": "Angelica Olsen", + "gender": "female", + "age": 58, + "address": { + "state": "South Dakota", + "city": "Fillmore" + } + }, + { + "id": 9653, + "name": "Harmon Little", + "gender": "male", + "age": 76, + "address": { + "state": "Minnesota", + "city": "Neahkahnie" + } + }, + { + "id": 9654, + "name": "Waller Huber", + "gender": "male", + "age": 54, + "address": { + "state": "Texas", + "city": "Dellview" + } + }, + { + "id": 9655, + "name": "Chambers Jones", + "gender": "male", + "age": 18, + "address": { + "state": "Michigan", + "city": "Swartzville" + } + }, + { + "id": 9656, + "name": "Olga Wooten", + "gender": "female", + "age": 54, + "address": { + "state": "Mississippi", + "city": "Choctaw" + } + }, + { + "id": 9657, + "name": "Sherry Romero", + "gender": "female", + "age": 52, + "address": { + "state": "Rhode Island", + "city": "Coyote" + } + }, + { + "id": 9658, + "name": "Tonia Tate", + "gender": "female", + "age": 78, + "address": { + "state": "Ohio", + "city": "Dorneyville" + } + }, + { + "id": 9659, + "name": "Donna Talley", + "gender": "female", + "age": 51, + "address": { + "state": "West Virginia", + "city": "Springdale" + } + }, + { + "id": 9660, + "name": "Cecilia Hoover", + "gender": "female", + "age": 59, + "address": { + "state": "Washington", + "city": "Allendale" + } + }, + { + "id": 9661, + "name": "Kris Parrish", + "gender": "female", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Shindler" + } + }, + { + "id": 9662, + "name": "Leola Richmond", + "gender": "female", + "age": 34, + "address": { + "state": "Hawaii", + "city": "Williams" + } + }, + { + "id": 9663, + "name": "Guadalupe Meyers", + "gender": "female", + "age": 20, + "address": { + "state": "South Dakota", + "city": "Murillo" + } + }, + { + "id": 9664, + "name": "Freida Roy", + "gender": "female", + "age": 48, + "address": { + "state": "Georgia", + "city": "Rivera" + } + }, + { + "id": 9665, + "name": "Trina Miranda", + "gender": "female", + "age": 71, + "address": { + "state": "South Carolina", + "city": "Ferney" + } + }, + { + "id": 9666, + "name": "Francis Noble", + "gender": "male", + "age": 20, + "address": { + "state": "Indiana", + "city": "Rehrersburg" + } + }, + { + "id": 9667, + "name": "Cantu Moody", + "gender": "male", + "age": 79, + "address": { + "state": "California", + "city": "Longoria" + } + }, + { + "id": 9668, + "name": "Dickson Fitzgerald", + "gender": "male", + "age": 47, + "address": { + "state": "New Hampshire", + "city": "Trona" + } + }, + { + "id": 9669, + "name": "Fuentes Farmer", + "gender": "male", + "age": 80, + "address": { + "state": "Louisiana", + "city": "Caberfae" + } + }, + { + "id": 9670, + "name": "Ida Campos", + "gender": "female", + "age": 30, + "address": { + "state": "New York", + "city": "Rossmore" + } + }, + { + "id": 9671, + "name": "Carol Perez", + "gender": "female", + "age": 37, + "address": { + "state": "Maryland", + "city": "Cutter" + } + }, + { + "id": 9672, + "name": "Hampton Lowe", + "gender": "male", + "age": 47, + "address": { + "state": "Alabama", + "city": "Garnet" + } + }, + { + "id": 9673, + "name": "Simpson Collier", + "gender": "male", + "age": 33, + "address": { + "state": "Montana", + "city": "Graniteville" + } + }, + { + "id": 9674, + "name": "Shaffer Rosales", + "gender": "male", + "age": 44, + "address": { + "state": "Virginia", + "city": "Blodgett" + } + }, + { + "id": 9675, + "name": "Rocha Sawyer", + "gender": "male", + "age": 75, + "address": { + "state": "Connecticut", + "city": "Fidelis" + } + }, + { + "id": 9676, + "name": "Patti Jensen", + "gender": "female", + "age": 74, + "address": { + "state": "North Carolina", + "city": "Sena" + } + }, + { + "id": 9677, + "name": "Yvonne Gibbs", + "gender": "female", + "age": 76, + "address": { + "state": "Nevada", + "city": "Curtice" + } + }, + { + "id": 9678, + "name": "Weeks Moore", + "gender": "male", + "age": 43, + "address": { + "state": "Iowa", + "city": "Glenshaw" + } + }, + { + "id": 9679, + "name": "Consuelo Horn", + "gender": "female", + "age": 64, + "address": { + "state": "Wyoming", + "city": "Staples" + } + }, + { + "id": 9680, + "name": "Aguilar Spence", + "gender": "male", + "age": 53, + "address": { + "state": "Arkansas", + "city": "Kempton" + } + }, + { + "id": 9681, + "name": "Suzanne Montoya", + "gender": "female", + "age": 54, + "address": { + "state": "Alaska", + "city": "Thatcher" + } + }, + { + "id": 9682, + "name": "Yates Santana", + "gender": "male", + "age": 56, + "address": { + "state": "Utah", + "city": "Boykin" + } + }, + { + "id": 9683, + "name": "Stanley Sosa", + "gender": "male", + "age": 28, + "address": { + "state": "Idaho", + "city": "Nile" + } + }, + { + "id": 9684, + "name": "Georgina Maldonado", + "gender": "female", + "age": 38, + "address": { + "state": "Kansas", + "city": "Helen" + } + }, + { + "id": 9685, + "name": "Vera Aguilar", + "gender": "female", + "age": 32, + "address": { + "state": "Florida", + "city": "Harborton" + } + }, + { + "id": 9686, + "name": "Elvia Matthews", + "gender": "female", + "age": 22, + "address": { + "state": "Missouri", + "city": "Hemlock" + } + }, + { + "id": 9687, + "name": "Angie Schmidt", + "gender": "female", + "age": 80, + "address": { + "state": "Delaware", + "city": "Byrnedale" + } + }, + { + "id": 9688, + "name": "Clara Haney", + "gender": "female", + "age": 22, + "address": { + "state": "Arizona", + "city": "Cochranville" + } + }, + { + "id": 9689, + "name": "Kristie Gregory", + "gender": "female", + "age": 53, + "address": { + "state": "North Dakota", + "city": "Marenisco" + } + }, + { + "id": 9690, + "name": "Lupe Stout", + "gender": "female", + "age": 26, + "address": { + "state": "Vermont", + "city": "Centerville" + } + }, + { + "id": 9691, + "name": "Maria Sharpe", + "gender": "female", + "age": 61, + "address": { + "state": "New Mexico", + "city": "Dexter" + } + }, + { + "id": 9692, + "name": "Peck Rosa", + "gender": "male", + "age": 55, + "address": { + "state": "Pennsylvania", + "city": "Suitland" + } + }, + { + "id": 9693, + "name": "Ingram Miller", + "gender": "male", + "age": 67, + "address": { + "state": "Tennessee", + "city": "Herald" + } + }, + { + "id": 9694, + "name": "Wolf West", + "gender": "male", + "age": 28, + "address": { + "state": "Maine", + "city": "Mulino" + } + }, + { + "id": 9695, + "name": "Brennan Garner", + "gender": "male", + "age": 54, + "address": { + "state": "Massachusetts", + "city": "Singer" + } + }, + { + "id": 9696, + "name": "Kelsey Anthony", + "gender": "female", + "age": 78, + "address": { + "state": "Oregon", + "city": "Clinton" + } + }, + { + "id": 9697, + "name": "Rose Macdonald", + "gender": "female", + "age": 81, + "address": { + "state": "Kentucky", + "city": "Dubois" + } + }, + { + "id": 9698, + "name": "Ruiz Kramer", + "gender": "male", + "age": 40, + "address": { + "state": "Illinois", + "city": "Holtville" + } + }, + { + "id": 9699, + "name": "Bridges Battle", + "gender": "male", + "age": 62, + "address": { + "state": "Colorado", + "city": "Englevale" + } + }, + { + "id": 9700, + "name": "Ellen Schneider", + "gender": "female", + "age": 76, + "address": { + "state": "Nebraska", + "city": "Wescosville" + } + }, + { + "id": 9701, + "name": "Sue Sanders", + "gender": "female", + "age": 48, + "address": { + "state": "Oklahoma", + "city": "Bison" + } + }, + { + "id": 9702, + "name": "Decker Savage", + "gender": "male", + "age": 58, + "address": { + "state": "Missouri", + "city": "Longoria" + } + }, + { + "id": 9703, + "name": "Dixon Avery", + "gender": "male", + "age": 52, + "address": { + "state": "Arkansas", + "city": "Waverly" + } + }, + { + "id": 9704, + "name": "Lowe Lawson", + "gender": "male", + "age": 29, + "address": { + "state": "Texas", + "city": "Echo" + } + }, + { + "id": 9705, + "name": "Roberta Odom", + "gender": "female", + "age": 67, + "address": { + "state": "New Hampshire", + "city": "Dixonville" + } + }, + { + "id": 9706, + "name": "Marguerite Glass", + "gender": "female", + "age": 37, + "address": { + "state": "Pennsylvania", + "city": "Winston" + } + }, + { + "id": 9707, + "name": "Petersen Cooper", + "gender": "male", + "age": 17, + "address": { + "state": "Oregon", + "city": "Faxon" + } + }, + { + "id": 9708, + "name": "Scott Ryan", + "gender": "male", + "age": 19, + "address": { + "state": "Michigan", + "city": "Ronco" + } + }, + { + "id": 9709, + "name": "Odom Key", + "gender": "male", + "age": 23, + "address": { + "state": "Nevada", + "city": "Corriganville" + } + }, + { + "id": 9710, + "name": "Muriel Cruz", + "gender": "female", + "age": 33, + "address": { + "state": "Nebraska", + "city": "Kennedyville" + } + }, + { + "id": 9711, + "name": "Alberta Anthony", + "gender": "female", + "age": 74, + "address": { + "state": "Arizona", + "city": "Welch" + } + }, + { + "id": 9712, + "name": "Bridges Walter", + "gender": "male", + "age": 57, + "address": { + "state": "Indiana", + "city": "Chumuckla" + } + }, + { + "id": 9713, + "name": "Duncan Buck", + "gender": "male", + "age": 81, + "address": { + "state": "California", + "city": "Verdi" + } + }, + { + "id": 9714, + "name": "Liza Reeves", + "gender": "female", + "age": 60, + "address": { + "state": "West Virginia", + "city": "Rew" + } + }, + { + "id": 9715, + "name": "Best David", + "gender": "male", + "age": 54, + "address": { + "state": "South Carolina", + "city": "Harrison" + } + }, + { + "id": 9716, + "name": "Alma Burns", + "gender": "female", + "age": 34, + "address": { + "state": "Idaho", + "city": "Hayden" + } + }, + { + "id": 9717, + "name": "Orr Levine", + "gender": "male", + "age": 69, + "address": { + "state": "Utah", + "city": "Levant" + } + }, + { + "id": 9718, + "name": "Bowman Harrington", + "gender": "male", + "age": 18, + "address": { + "state": "Kentucky", + "city": "Hilltop" + } + }, + { + "id": 9719, + "name": "Schneider Stokes", + "gender": "male", + "age": 76, + "address": { + "state": "Montana", + "city": "Sanborn" + } + }, + { + "id": 9720, + "name": "Nona Rowe", + "gender": "female", + "age": 66, + "address": { + "state": "Colorado", + "city": "Bentonville" + } + }, + { + "id": 9721, + "name": "Obrien Jimenez", + "gender": "male", + "age": 20, + "address": { + "state": "Massachusetts", + "city": "Grenelefe" + } + }, + { + "id": 9722, + "name": "Francis Estes", + "gender": "male", + "age": 31, + "address": { + "state": "Louisiana", + "city": "Glenville" + } + }, + { + "id": 9723, + "name": "Shauna Hopper", + "gender": "female", + "age": 62, + "address": { + "state": "Vermont", + "city": "Walker" + } + }, + { + "id": 9724, + "name": "Wynn Valdez", + "gender": "male", + "age": 44, + "address": { + "state": "Mississippi", + "city": "Jamestown" + } + }, + { + "id": 9725, + "name": "Ollie Rice", + "gender": "female", + "age": 26, + "address": { + "state": "Washington", + "city": "Martinez" + } + }, + { + "id": 9726, + "name": "Sybil Valentine", + "gender": "female", + "age": 31, + "address": { + "state": "Maryland", + "city": "Florence" + } + }, + { + "id": 9727, + "name": "Kathryn Vinson", + "gender": "female", + "age": 41, + "address": { + "state": "Florida", + "city": "Lafferty" + } + }, + { + "id": 9728, + "name": "Schroeder Bates", + "gender": "male", + "age": 25, + "address": { + "state": "Wyoming", + "city": "Gilmore" + } + }, + { + "id": 9729, + "name": "Christian Brewer", + "gender": "male", + "age": 62, + "address": { + "state": "Tennessee", + "city": "Fresno" + } + }, + { + "id": 9730, + "name": "Kathleen Gallagher", + "gender": "female", + "age": 53, + "address": { + "state": "New Mexico", + "city": "Westmoreland" + } + }, + { + "id": 9731, + "name": "Rosalind William", + "gender": "female", + "age": 42, + "address": { + "state": "Delaware", + "city": "Bakersville" + } + }, + { + "id": 9732, + "name": "Shelton Boone", + "gender": "male", + "age": 81, + "address": { + "state": "Maine", + "city": "Urbana" + } + }, + { + "id": 9733, + "name": "Latisha Guthrie", + "gender": "female", + "age": 24, + "address": { + "state": "Minnesota", + "city": "Lutsen" + } + }, + { + "id": 9734, + "name": "Garner Dudley", + "gender": "male", + "age": 41, + "address": { + "state": "South Dakota", + "city": "Henrietta" + } + }, + { + "id": 9735, + "name": "Winters Chaney", + "gender": "male", + "age": 38, + "address": { + "state": "Georgia", + "city": "Klondike" + } + }, + { + "id": 9736, + "name": "Leticia Schwartz", + "gender": "female", + "age": 69, + "address": { + "state": "Kansas", + "city": "Nanafalia" + } + }, + { + "id": 9737, + "name": "Ramona Ingram", + "gender": "female", + "age": 27, + "address": { + "state": "Ohio", + "city": "Holcombe" + } + }, + { + "id": 9738, + "name": "Jimenez Wiggins", + "gender": "male", + "age": 59, + "address": { + "state": "Rhode Island", + "city": "Brenton" + } + }, + { + "id": 9739, + "name": "Mcmillan Mcfarland", + "gender": "male", + "age": 82, + "address": { + "state": "New Jersey", + "city": "Devon" + } + }, + { + "id": 9740, + "name": "Flores Lucas", + "gender": "male", + "age": 62, + "address": { + "state": "Oklahoma", + "city": "Faywood" + } + }, + { + "id": 9741, + "name": "Smith Weaver", + "gender": "male", + "age": 67, + "address": { + "state": "Iowa", + "city": "Richville" + } + }, + { + "id": 9742, + "name": "Christian Carrillo", + "gender": "female", + "age": 24, + "address": { + "state": "North Carolina", + "city": "Diaperville" + } + }, + { + "id": 9743, + "name": "Sweeney Mooney", + "gender": "male", + "age": 54, + "address": { + "state": "Alaska", + "city": "Chesapeake" + } + }, + { + "id": 9744, + "name": "Dorsey Dixon", + "gender": "male", + "age": 18, + "address": { + "state": "Alabama", + "city": "Grantville" + } + }, + { + "id": 9745, + "name": "Gill Landry", + "gender": "male", + "age": 53, + "address": { + "state": "Connecticut", + "city": "Linganore" + } + }, + { + "id": 9746, + "name": "Annie Skinner", + "gender": "female", + "age": 61, + "address": { + "state": "New York", + "city": "Thermal" + } + }, + { + "id": 9747, + "name": "Desiree Duran", + "gender": "female", + "age": 69, + "address": { + "state": "Illinois", + "city": "Coventry" + } + }, + { + "id": 9748, + "name": "Lacey Wolfe", + "gender": "female", + "age": 71, + "address": { + "state": "North Dakota", + "city": "Conestoga" + } + }, + { + "id": 9749, + "name": "Bolton Christensen", + "gender": "male", + "age": 34, + "address": { + "state": "Wisconsin", + "city": "Libertytown" + } + }, + { + "id": 9750, + "name": "Romero Villarreal", + "gender": "male", + "age": 22, + "address": { + "state": "Virginia", + "city": "Strong" + } + }, + { + "id": 9751, + "name": "Haney Ford", + "gender": "male", + "age": 28, + "address": { + "state": "Colorado", + "city": "Nogal" + } + }, + { + "id": 9752, + "name": "Bruce Cunningham", + "gender": "male", + "age": 52, + "address": { + "state": "Montana", + "city": "Montura" + } + }, + { + "id": 9753, + "name": "Olivia Sexton", + "gender": "female", + "age": 71, + "address": { + "state": "Missouri", + "city": "Lodoga" + } + }, + { + "id": 9754, + "name": "Minerva Pittman", + "gender": "female", + "age": 60, + "address": { + "state": "Alaska", + "city": "Mathews" + } + }, + { + "id": 9755, + "name": "Lorrie Carr", + "gender": "female", + "age": 28, + "address": { + "state": "Ohio", + "city": "Witmer" + } + }, + { + "id": 9756, + "name": "Vaughan Craft", + "gender": "male", + "age": 57, + "address": { + "state": "South Carolina", + "city": "Loveland" + } + }, + { + "id": 9757, + "name": "Blevins Thompson", + "gender": "male", + "age": 28, + "address": { + "state": "Maryland", + "city": "Coldiron" + } + }, + { + "id": 9758, + "name": "Kelsey Newman", + "gender": "female", + "age": 75, + "address": { + "state": "Virginia", + "city": "Veyo" + } + }, + { + "id": 9759, + "name": "Jillian Daugherty", + "gender": "female", + "age": 44, + "address": { + "state": "Mississippi", + "city": "Crown" + } + }, + { + "id": 9760, + "name": "Young Bauer", + "gender": "female", + "age": 34, + "address": { + "state": "Louisiana", + "city": "Matthews" + } + }, + { + "id": 9761, + "name": "Martha Crane", + "gender": "female", + "age": 54, + "address": { + "state": "Connecticut", + "city": "Brethren" + } + }, + { + "id": 9762, + "name": "Huber Andrews", + "gender": "male", + "age": 32, + "address": { + "state": "Texas", + "city": "Blanford" + } + }, + { + "id": 9763, + "name": "Vazquez Walsh", + "gender": "male", + "age": 38, + "address": { + "state": "Michigan", + "city": "Jardine" + } + }, + { + "id": 9764, + "name": "Wiley Ray", + "gender": "male", + "age": 54, + "address": { + "state": "Idaho", + "city": "Farmers" + } + }, + { + "id": 9765, + "name": "Dionne Webb", + "gender": "female", + "age": 82, + "address": { + "state": "Delaware", + "city": "Brookfield" + } + }, + { + "id": 9766, + "name": "Sallie Martinez", + "gender": "female", + "age": 42, + "address": { + "state": "North Dakota", + "city": "Bedias" + } + }, + { + "id": 9767, + "name": "Underwood Mcpherson", + "gender": "male", + "age": 52, + "address": { + "state": "Florida", + "city": "Chelsea" + } + }, + { + "id": 9768, + "name": "Schneider Vance", + "gender": "male", + "age": 36, + "address": { + "state": "Iowa", + "city": "Unionville" + } + }, + { + "id": 9769, + "name": "Pickett Goff", + "gender": "male", + "age": 73, + "address": { + "state": "Maine", + "city": "Riner" + } + }, + { + "id": 9770, + "name": "Coffey Hebert", + "gender": "male", + "age": 29, + "address": { + "state": "Tennessee", + "city": "Groveville" + } + }, + { + "id": 9771, + "name": "Cherry Peters", + "gender": "male", + "age": 18, + "address": { + "state": "Minnesota", + "city": "Oasis" + } + }, + { + "id": 9772, + "name": "Marquita Kinney", + "gender": "female", + "age": 54, + "address": { + "state": "New Hampshire", + "city": "Albrightsville" + } + }, + { + "id": 9773, + "name": "Benton Strickland", + "gender": "male", + "age": 22, + "address": { + "state": "Wyoming", + "city": "Wilmington" + } + }, + { + "id": 9774, + "name": "Lourdes Mooney", + "gender": "female", + "age": 17, + "address": { + "state": "New Jersey", + "city": "Lupton" + } + }, + { + "id": 9775, + "name": "Marina Edwards", + "gender": "female", + "age": 81, + "address": { + "state": "Kansas", + "city": "Barrelville" + } + }, + { + "id": 9776, + "name": "Brennan Boone", + "gender": "male", + "age": 55, + "address": { + "state": "Illinois", + "city": "Joes" + } + }, + { + "id": 9777, + "name": "Leonard Aguirre", + "gender": "male", + "age": 21, + "address": { + "state": "South Dakota", + "city": "Wilsonia" + } + }, + { + "id": 9778, + "name": "Byrd Snow", + "gender": "male", + "age": 61, + "address": { + "state": "California", + "city": "Blende" + } + }, + { + "id": 9779, + "name": "Sawyer Norris", + "gender": "male", + "age": 67, + "address": { + "state": "Nevada", + "city": "Nanafalia" + } + }, + { + "id": 9780, + "name": "Bowman Long", + "gender": "male", + "age": 81, + "address": { + "state": "Arkansas", + "city": "Leeper" + } + }, + { + "id": 9781, + "name": "Shanna Whitehead", + "gender": "female", + "age": 25, + "address": { + "state": "Massachusetts", + "city": "Ticonderoga" + } + }, + { + "id": 9782, + "name": "Tanisha Soto", + "gender": "female", + "age": 51, + "address": { + "state": "Kentucky", + "city": "Salix" + } + }, + { + "id": 9783, + "name": "Kristen Brewer", + "gender": "female", + "age": 53, + "address": { + "state": "Vermont", + "city": "Vale" + } + }, + { + "id": 9784, + "name": "Johnnie Hatfield", + "gender": "female", + "age": 52, + "address": { + "state": "West Virginia", + "city": "Vincent" + } + }, + { + "id": 9785, + "name": "Hardin Lyons", + "gender": "male", + "age": 19, + "address": { + "state": "Alabama", + "city": "Cannondale" + } + }, + { + "id": 9786, + "name": "Catalina Ramsey", + "gender": "female", + "age": 20, + "address": { + "state": "New York", + "city": "Singer" + } + }, + { + "id": 9787, + "name": "Mendoza Santana", + "gender": "male", + "age": 38, + "address": { + "state": "Pennsylvania", + "city": "Olney" + } + }, + { + "id": 9788, + "name": "Porter Noel", + "gender": "male", + "age": 45, + "address": { + "state": "Indiana", + "city": "Comptche" + } + }, + { + "id": 9789, + "name": "Boone Barrett", + "gender": "male", + "age": 24, + "address": { + "state": "Arizona", + "city": "Rose" + } + }, + { + "id": 9790, + "name": "Abby Bright", + "gender": "female", + "age": 34, + "address": { + "state": "Georgia", + "city": "Bennett" + } + }, + { + "id": 9791, + "name": "Lindsay Banks", + "gender": "male", + "age": 37, + "address": { + "state": "Utah", + "city": "Dotsero" + } + }, + { + "id": 9792, + "name": "Ayers Melendez", + "gender": "male", + "age": 68, + "address": { + "state": "Wisconsin", + "city": "Indio" + } + }, + { + "id": 9793, + "name": "Welch Butler", + "gender": "male", + "age": 25, + "address": { + "state": "Rhode Island", + "city": "Bordelonville" + } + }, + { + "id": 9794, + "name": "Michael Hamilton", + "gender": "male", + "age": 74, + "address": { + "state": "Oregon", + "city": "Dubois" + } + }, + { + "id": 9795, + "name": "Fulton Jones", + "gender": "male", + "age": 58, + "address": { + "state": "North Carolina", + "city": "Kiskimere" + } + }, + { + "id": 9796, + "name": "Chavez Mcbride", + "gender": "male", + "age": 29, + "address": { + "state": "Oklahoma", + "city": "Soudan" + } + }, + { + "id": 9797, + "name": "Darlene Barron", + "gender": "female", + "age": 53, + "address": { + "state": "New Mexico", + "city": "Gardiner" + } + }, + { + "id": 9798, + "name": "Twila Osborne", + "gender": "female", + "age": 45, + "address": { + "state": "Nebraska", + "city": "Cliff" + } + }, + { + "id": 9799, + "name": "Cheri Patrick", + "gender": "female", + "age": 78, + "address": { + "state": "Washington", + "city": "Gilmore" + } + }, + { + "id": 9800, + "name": "Kate Mccarthy", + "gender": "female", + "age": 24, + "address": { + "state": "Louisiana", + "city": "Wauhillau" + } + }, + { + "id": 9801, + "name": "Gertrude Reyes", + "gender": "female", + "age": 43, + "address": { + "state": "Delaware", + "city": "Coalmont" + } + }, + { + "id": 9802, + "name": "Elsa Bowen", + "gender": "female", + "age": 25, + "address": { + "state": "Connecticut", + "city": "Lacomb" + } + }, + { + "id": 9803, + "name": "Aurora Robbins", + "gender": "female", + "age": 45, + "address": { + "state": "North Dakota", + "city": "Weogufka" + } + }, + { + "id": 9804, + "name": "Strickland Key", + "gender": "male", + "age": 29, + "address": { + "state": "Texas", + "city": "Sanford" + } + }, + { + "id": 9805, + "name": "Lea Brady", + "gender": "female", + "age": 32, + "address": { + "state": "Alaska", + "city": "Wheatfields" + } + }, + { + "id": 9806, + "name": "Patricia Mcgowan", + "gender": "female", + "age": 71, + "address": { + "state": "Kentucky", + "city": "Lupton" + } + }, + { + "id": 9807, + "name": "Wheeler Hoffman", + "gender": "male", + "age": 62, + "address": { + "state": "Maine", + "city": "Hoehne" + } + }, + { + "id": 9808, + "name": "Snider Burton", + "gender": "male", + "age": 79, + "address": { + "state": "Arizona", + "city": "Blodgett" + } + }, + { + "id": 9809, + "name": "Yang Beach", + "gender": "male", + "age": 26, + "address": { + "state": "Oregon", + "city": "Bluffview" + } + }, + { + "id": 9810, + "name": "Penny Anthony", + "gender": "female", + "age": 18, + "address": { + "state": "South Carolina", + "city": "Collins" + } + }, + { + "id": 9811, + "name": "Rasmussen Myers", + "gender": "male", + "age": 53, + "address": { + "state": "Maryland", + "city": "Imperial" + } + }, + { + "id": 9812, + "name": "Pickett Gay", + "gender": "male", + "age": 82, + "address": { + "state": "Arkansas", + "city": "Graball" + } + }, + { + "id": 9813, + "name": "Knowles Rosales", + "gender": "male", + "age": 26, + "address": { + "state": "Minnesota", + "city": "Brambleton" + } + }, + { + "id": 9814, + "name": "Alice Sims", + "gender": "female", + "age": 30, + "address": { + "state": "Montana", + "city": "Denio" + } + }, + { + "id": 9815, + "name": "Chrystal Miller", + "gender": "female", + "age": 73, + "address": { + "state": "Florida", + "city": "Greenbush" + } + }, + { + "id": 9816, + "name": "Mueller Burnett", + "gender": "male", + "age": 22, + "address": { + "state": "Mississippi", + "city": "Healy" + } + }, + { + "id": 9817, + "name": "Fuller Estes", + "gender": "male", + "age": 61, + "address": { + "state": "Iowa", + "city": "Bedias" + } + }, + { + "id": 9818, + "name": "Ferguson Summers", + "gender": "male", + "age": 53, + "address": { + "state": "Massachusetts", + "city": "Eureka" + } + }, + { + "id": 9819, + "name": "Jacquelyn Salas", + "gender": "female", + "age": 75, + "address": { + "state": "Kansas", + "city": "Ticonderoga" + } + }, + { + "id": 9820, + "name": "Sonia Beasley", + "gender": "female", + "age": 57, + "address": { + "state": "West Virginia", + "city": "Riverton" + } + }, + { + "id": 9821, + "name": "Tracy Wooten", + "gender": "female", + "age": 73, + "address": { + "state": "New Hampshire", + "city": "Gambrills" + } + }, + { + "id": 9822, + "name": "Atkins Crosby", + "gender": "male", + "age": 80, + "address": { + "state": "Wyoming", + "city": "Escondida" + } + }, + { + "id": 9823, + "name": "Ruthie Petty", + "gender": "female", + "age": 57, + "address": { + "state": "Oklahoma", + "city": "Hiseville" + } + }, + { + "id": 9824, + "name": "Mildred Macias", + "gender": "female", + "age": 44, + "address": { + "state": "Pennsylvania", + "city": "Mayfair" + } + }, + { + "id": 9825, + "name": "Mclaughlin Rodriguez", + "gender": "male", + "age": 81, + "address": { + "state": "Rhode Island", + "city": "Robinson" + } + }, + { + "id": 9826, + "name": "Juarez Ramirez", + "gender": "male", + "age": 18, + "address": { + "state": "New Jersey", + "city": "Snyderville" + } + }, + { + "id": 9827, + "name": "Moore Gaines", + "gender": "male", + "age": 41, + "address": { + "state": "Georgia", + "city": "Sunbury" + } + }, + { + "id": 9828, + "name": "Bradford Palmer", + "gender": "male", + "age": 23, + "address": { + "state": "South Dakota", + "city": "Nadine" + } + }, + { + "id": 9829, + "name": "Allen Gallagher", + "gender": "male", + "age": 31, + "address": { + "state": "Ohio", + "city": "Topanga" + } + }, + { + "id": 9830, + "name": "Millie Cortez", + "gender": "female", + "age": 50, + "address": { + "state": "Washington", + "city": "Aurora" + } + }, + { + "id": 9831, + "name": "Pennington Roy", + "gender": "male", + "age": 26, + "address": { + "state": "New York", + "city": "Titanic" + } + }, + { + "id": 9832, + "name": "Lucille Bell", + "gender": "female", + "age": 64, + "address": { + "state": "Colorado", + "city": "Lydia" + } + }, + { + "id": 9833, + "name": "Ruby Mayo", + "gender": "female", + "age": 60, + "address": { + "state": "Tennessee", + "city": "Riner" + } + }, + { + "id": 9834, + "name": "Pugh James", + "gender": "male", + "age": 72, + "address": { + "state": "Utah", + "city": "Savannah" + } + }, + { + "id": 9835, + "name": "Walton Frost", + "gender": "male", + "age": 53, + "address": { + "state": "Vermont", + "city": "Orin" + } + }, + { + "id": 9836, + "name": "Sawyer Blair", + "gender": "male", + "age": 33, + "address": { + "state": "New Mexico", + "city": "Fivepointville" + } + }, + { + "id": 9837, + "name": "Teresa King", + "gender": "female", + "age": 79, + "address": { + "state": "Michigan", + "city": "Verdi" + } + }, + { + "id": 9838, + "name": "Janelle Rush", + "gender": "female", + "age": 46, + "address": { + "state": "Indiana", + "city": "Albany" + } + }, + { + "id": 9839, + "name": "Hutchinson Jordan", + "gender": "male", + "age": 36, + "address": { + "state": "Nevada", + "city": "Fruitdale" + } + }, + { + "id": 9840, + "name": "Nolan Fry", + "gender": "male", + "age": 60, + "address": { + "state": "North Carolina", + "city": "Wadsworth" + } + }, + { + "id": 9841, + "name": "Dixon Nelson", + "gender": "male", + "age": 48, + "address": { + "state": "Wisconsin", + "city": "Rosine" + } + }, + { + "id": 9842, + "name": "Barry Holloway", + "gender": "male", + "age": 56, + "address": { + "state": "California", + "city": "Toftrees" + } + }, + { + "id": 9843, + "name": "Christa Edwards", + "gender": "female", + "age": 62, + "address": { + "state": "Hawaii", + "city": "Summerset" + } + }, + { + "id": 9844, + "name": "Karyn Howell", + "gender": "female", + "age": 74, + "address": { + "state": "Nebraska", + "city": "Esmont" + } + }, + { + "id": 9845, + "name": "Heather Chandler", + "gender": "female", + "age": 35, + "address": { + "state": "Illinois", + "city": "Nelson" + } + }, + { + "id": 9846, + "name": "Mayra Olsen", + "gender": "female", + "age": 51, + "address": { + "state": "Alabama", + "city": "Sanborn" + } + }, + { + "id": 9847, + "name": "Kathie Oliver", + "gender": "female", + "age": 55, + "address": { + "state": "Missouri", + "city": "Gorham" + } + }, + { + "id": 9848, + "name": "Estela Williamson", + "gender": "female", + "age": 71, + "address": { + "state": "Idaho", + "city": "Laurelton" + } + }, + { + "id": 9849, + "name": "Fry Duncan", + "gender": "male", + "age": 20, + "address": { + "state": "Maine", + "city": "Conway" + } + }, + { + "id": 9850, + "name": "Carver Aguilar", + "gender": "male", + "age": 66, + "address": { + "state": "Rhode Island", + "city": "Stouchsburg" + } + }, + { + "id": 9851, + "name": "Tamara Bolton", + "gender": "female", + "age": 17, + "address": { + "state": "Oregon", + "city": "Gadsden" + } + }, + { + "id": 9852, + "name": "Moore Maynard", + "gender": "male", + "age": 79, + "address": { + "state": "Hawaii", + "city": "Silkworth" + } + }, + { + "id": 9853, + "name": "Fulton Osborne", + "gender": "male", + "age": 54, + "address": { + "state": "North Carolina", + "city": "Matheny" + } + }, + { + "id": 9854, + "name": "Twila Keller", + "gender": "female", + "age": 59, + "address": { + "state": "California", + "city": "Brandywine" + } + }, + { + "id": 9855, + "name": "Erickson Sykes", + "gender": "male", + "age": 66, + "address": { + "state": "South Carolina", + "city": "Wheaton" + } + }, + { + "id": 9856, + "name": "Nellie Hammond", + "gender": "female", + "age": 77, + "address": { + "state": "New York", + "city": "Adelino" + } + }, + { + "id": 9857, + "name": "Bell Hawkins", + "gender": "male", + "age": 51, + "address": { + "state": "Montana", + "city": "Wilmington" + } + }, + { + "id": 9858, + "name": "Marianne Hernandez", + "gender": "female", + "age": 48, + "address": { + "state": "Wyoming", + "city": "Oneida" + } + }, + { + "id": 9859, + "name": "Hilda Carey", + "gender": "female", + "age": 72, + "address": { + "state": "Illinois", + "city": "Loyalhanna" + } + }, + { + "id": 9860, + "name": "Lang Sloan", + "gender": "male", + "age": 57, + "address": { + "state": "North Dakota", + "city": "Hiseville" + } + }, + { + "id": 9861, + "name": "Aileen Bradshaw", + "gender": "female", + "age": 18, + "address": { + "state": "Alaska", + "city": "Deputy" + } + }, + { + "id": 9862, + "name": "Rosalyn Madden", + "gender": "female", + "age": 17, + "address": { + "state": "Alabama", + "city": "Escondida" + } + }, + { + "id": 9863, + "name": "Georgette Baird", + "gender": "female", + "age": 53, + "address": { + "state": "Nebraska", + "city": "Gouglersville" + } + }, + { + "id": 9864, + "name": "Krystal Jacobs", + "gender": "female", + "age": 45, + "address": { + "state": "Nevada", + "city": "Lisco" + } + }, + { + "id": 9865, + "name": "Rhonda Jennings", + "gender": "female", + "age": 80, + "address": { + "state": "Connecticut", + "city": "Kingstowne" + } + }, + { + "id": 9866, + "name": "Mcmahon Joseph", + "gender": "male", + "age": 47, + "address": { + "state": "Minnesota", + "city": "Columbus" + } + }, + { + "id": 9867, + "name": "Holden Sims", + "gender": "male", + "age": 30, + "address": { + "state": "Pennsylvania", + "city": "Nadine" + } + }, + { + "id": 9868, + "name": "Patton Russo", + "gender": "male", + "age": 19, + "address": { + "state": "Vermont", + "city": "Kapowsin" + } + }, + { + "id": 9869, + "name": "Bonner Norman", + "gender": "male", + "age": 62, + "address": { + "state": "Iowa", + "city": "Rossmore" + } + }, + { + "id": 9870, + "name": "Josefina Payne", + "gender": "female", + "age": 41, + "address": { + "state": "Delaware", + "city": "Lawrence" + } + }, + { + "id": 9871, + "name": "Lowery Farley", + "gender": "male", + "age": 78, + "address": { + "state": "Colorado", + "city": "Stewartville" + } + }, + { + "id": 9872, + "name": "Hughes Sargent", + "gender": "male", + "age": 38, + "address": { + "state": "Utah", + "city": "Kaka" + } + }, + { + "id": 9873, + "name": "Mindy Davenport", + "gender": "female", + "age": 61, + "address": { + "state": "Louisiana", + "city": "Esmont" + } + }, + { + "id": 9874, + "name": "Mullen Sosa", + "gender": "male", + "age": 57, + "address": { + "state": "Idaho", + "city": "Tyhee" + } + }, + { + "id": 9875, + "name": "Selma Noble", + "gender": "female", + "age": 18, + "address": { + "state": "Kentucky", + "city": "Neibert" + } + }, + { + "id": 9876, + "name": "Thornton Velez", + "gender": "male", + "age": 71, + "address": { + "state": "Texas", + "city": "Yogaville" + } + }, + { + "id": 9877, + "name": "Russell Shepherd", + "gender": "male", + "age": 39, + "address": { + "state": "New Jersey", + "city": "Gorham" + } + }, + { + "id": 9878, + "name": "Cindy Blackwell", + "gender": "female", + "age": 21, + "address": { + "state": "Maryland", + "city": "Elwood" + } + }, + { + "id": 9879, + "name": "Marla Church", + "gender": "female", + "age": 68, + "address": { + "state": "Indiana", + "city": "Bladensburg" + } + }, + { + "id": 9880, + "name": "Maryellen Norris", + "gender": "female", + "age": 32, + "address": { + "state": "New Mexico", + "city": "Haring" + } + }, + { + "id": 9881, + "name": "Morrison Garza", + "gender": "male", + "age": 38, + "address": { + "state": "Ohio", + "city": "Wollochet" + } + }, + { + "id": 9882, + "name": "Holly Short", + "gender": "female", + "age": 36, + "address": { + "state": "Arizona", + "city": "Vowinckel" + } + }, + { + "id": 9883, + "name": "Brooks Castillo", + "gender": "male", + "age": 53, + "address": { + "state": "Wisconsin", + "city": "Byrnedale" + } + }, + { + "id": 9884, + "name": "Rocha Rowland", + "gender": "male", + "age": 38, + "address": { + "state": "Missouri", + "city": "Tuttle" + } + }, + { + "id": 9885, + "name": "Harriett Atkinson", + "gender": "female", + "age": 50, + "address": { + "state": "Oklahoma", + "city": "Weeksville" + } + }, + { + "id": 9886, + "name": "Merritt Spencer", + "gender": "male", + "age": 54, + "address": { + "state": "Massachusetts", + "city": "Henrietta" + } + }, + { + "id": 9887, + "name": "Reba Finley", + "gender": "female", + "age": 77, + "address": { + "state": "Kansas", + "city": "Cressey" + } + }, + { + "id": 9888, + "name": "Baxter Ramsey", + "gender": "male", + "age": 51, + "address": { + "state": "Virginia", + "city": "Vandiver" + } + }, + { + "id": 9889, + "name": "Hubbard Stuart", + "gender": "male", + "age": 79, + "address": { + "state": "Michigan", + "city": "Cade" + } + }, + { + "id": 9890, + "name": "Zimmerman Montoya", + "gender": "male", + "age": 43, + "address": { + "state": "Washington", + "city": "Frank" + } + }, + { + "id": 9891, + "name": "Graham Goodwin", + "gender": "male", + "age": 55, + "address": { + "state": "Arkansas", + "city": "Heil" + } + }, + { + "id": 9892, + "name": "Johnson Golden", + "gender": "male", + "age": 29, + "address": { + "state": "Mississippi", + "city": "Nogal" + } + }, + { + "id": 9893, + "name": "Smith Duncan", + "gender": "male", + "age": 42, + "address": { + "state": "West Virginia", + "city": "Kula" + } + }, + { + "id": 9894, + "name": "Maureen Padilla", + "gender": "female", + "age": 25, + "address": { + "state": "New Hampshire", + "city": "Vienna" + } + }, + { + "id": 9895, + "name": "Lora Barnett", + "gender": "female", + "age": 26, + "address": { + "state": "South Dakota", + "city": "Freelandville" + } + }, + { + "id": 9896, + "name": "Benjamin Mcknight", + "gender": "male", + "age": 21, + "address": { + "state": "Florida", + "city": "Smock" + } + }, + { + "id": 9897, + "name": "Belinda Ferrell", + "gender": "female", + "age": 60, + "address": { + "state": "Georgia", + "city": "Harleigh" + } + }, + { + "id": 9898, + "name": "Valdez Manning", + "gender": "male", + "age": 70, + "address": { + "state": "Michigan", + "city": "Buxton" + } + }, + { + "id": 9899, + "name": "Ruthie Gilbert", + "gender": "female", + "age": 66, + "address": { + "state": "Oregon", + "city": "Ezel" + } + }, + { + "id": 9900, + "name": "Buck Lowery", + "gender": "male", + "age": 64, + "address": { + "state": "Nebraska", + "city": "Dale" + } + }, + { + "id": 9901, + "name": "Jill Kidd", + "gender": "female", + "age": 42, + "address": { + "state": "Kansas", + "city": "Bynum" + } + }, + { + "id": 9902, + "name": "Lori Harding", + "gender": "female", + "age": 46, + "address": { + "state": "Maine", + "city": "Fedora" + } + }, + { + "id": 9903, + "name": "Polly Watts", + "gender": "female", + "age": 21, + "address": { + "state": "Utah", + "city": "Finderne" + } + }, + { + "id": 9904, + "name": "Holly Witt", + "gender": "female", + "age": 21, + "address": { + "state": "Iowa", + "city": "Gila" + } + }, + { + "id": 9905, + "name": "Lacey Stone", + "gender": "female", + "age": 29, + "address": { + "state": "Vermont", + "city": "Wanship" + } + }, + { + "id": 9906, + "name": "Sweet Joyner", + "gender": "male", + "age": 65, + "address": { + "state": "New Mexico", + "city": "Coinjock" + } + }, + { + "id": 9907, + "name": "Wanda Townsend", + "gender": "female", + "age": 81, + "address": { + "state": "Idaho", + "city": "Century" + } + }, + { + "id": 9908, + "name": "Louella Dominguez", + "gender": "female", + "age": 40, + "address": { + "state": "Wyoming", + "city": "Summertown" + } + }, + { + "id": 9909, + "name": "Dickerson Maxwell", + "gender": "male", + "age": 37, + "address": { + "state": "Montana", + "city": "Imperial" + } + }, + { + "id": 9910, + "name": "Hoover Barlow", + "gender": "male", + "age": 71, + "address": { + "state": "Alabama", + "city": "Brogan" + } + }, + { + "id": 9911, + "name": "Schultz Weiss", + "gender": "male", + "age": 32, + "address": { + "state": "Connecticut", + "city": "Lowgap" + } + }, + { + "id": 9912, + "name": "Ruby Camacho", + "gender": "female", + "age": 41, + "address": { + "state": "Pennsylvania", + "city": "Choctaw" + } + }, + { + "id": 9913, + "name": "Lawson Blair", + "gender": "male", + "age": 64, + "address": { + "state": "New York", + "city": "Hoehne" + } + }, + { + "id": 9914, + "name": "Alford Rogers", + "gender": "male", + "age": 39, + "address": { + "state": "Indiana", + "city": "Mayfair" + } + }, + { + "id": 9915, + "name": "Evangeline Gill", + "gender": "female", + "age": 54, + "address": { + "state": "South Dakota", + "city": "Galesville" + } + }, + { + "id": 9916, + "name": "Gaines Graham", + "gender": "male", + "age": 37, + "address": { + "state": "Washington", + "city": "Tolu" + } + }, + { + "id": 9917, + "name": "Lucinda Goff", + "gender": "female", + "age": 57, + "address": { + "state": "Arizona", + "city": "Onton" + } + }, + { + "id": 9918, + "name": "Stuart Rich", + "gender": "male", + "age": 25, + "address": { + "state": "Georgia", + "city": "Springdale" + } + }, + { + "id": 9919, + "name": "Steele Michael", + "gender": "male", + "age": 52, + "address": { + "state": "Delaware", + "city": "Romeville" + } + }, + { + "id": 9920, + "name": "Betsy Cash", + "gender": "female", + "age": 73, + "address": { + "state": "Florida", + "city": "Lund" + } + }, + { + "id": 9921, + "name": "Singleton Macdonald", + "gender": "male", + "age": 58, + "address": { + "state": "Arkansas", + "city": "Warren" + } + }, + { + "id": 9922, + "name": "Thornton Griffith", + "gender": "male", + "age": 40, + "address": { + "state": "Massachusetts", + "city": "Nelson" + } + }, + { + "id": 9923, + "name": "Mamie Pittman", + "gender": "female", + "age": 35, + "address": { + "state": "Hawaii", + "city": "Mammoth" + } + }, + { + "id": 9924, + "name": "Katy Nunez", + "gender": "female", + "age": 48, + "address": { + "state": "Louisiana", + "city": "Ferney" + } + }, + { + "id": 9925, + "name": "Hughes Mckay", + "gender": "male", + "age": 24, + "address": { + "state": "Mississippi", + "city": "Toftrees" + } + }, + { + "id": 9926, + "name": "Chan Garcia", + "gender": "male", + "age": 53, + "address": { + "state": "Tennessee", + "city": "Farmington" + } + }, + { + "id": 9927, + "name": "Leanna Mclaughlin", + "gender": "female", + "age": 17, + "address": { + "state": "Wisconsin", + "city": "Waikele" + } + }, + { + "id": 9928, + "name": "Stacey Espinoza", + "gender": "female", + "age": 36, + "address": { + "state": "New Jersey", + "city": "Washington" + } + }, + { + "id": 9929, + "name": "Tracie Berry", + "gender": "female", + "age": 22, + "address": { + "state": "North Dakota", + "city": "Edgewater" + } + }, + { + "id": 9930, + "name": "Mills Cherry", + "gender": "male", + "age": 25, + "address": { + "state": "Kentucky", + "city": "Hemlock" + } + }, + { + "id": 9931, + "name": "Tania Bauer", + "gender": "female", + "age": 61, + "address": { + "state": "Oklahoma", + "city": "Chaparrito" + } + }, + { + "id": 9932, + "name": "Mable Montoya", + "gender": "female", + "age": 44, + "address": { + "state": "Missouri", + "city": "Henrietta" + } + }, + { + "id": 9933, + "name": "Arline Wilson", + "gender": "female", + "age": 36, + "address": { + "state": "Alaska", + "city": "Kenvil" + } + }, + { + "id": 9934, + "name": "Mathis Brock", + "gender": "male", + "age": 48, + "address": { + "state": "North Carolina", + "city": "Ernstville" + } + }, + { + "id": 9935, + "name": "Mcguire Higgins", + "gender": "male", + "age": 20, + "address": { + "state": "California", + "city": "Spokane" + } + }, + { + "id": 9936, + "name": "Baldwin Carroll", + "gender": "male", + "age": 32, + "address": { + "state": "South Carolina", + "city": "Ribera" + } + }, + { + "id": 9937, + "name": "Hernandez Ramos", + "gender": "male", + "age": 57, + "address": { + "state": "New Hampshire", + "city": "Woodburn" + } + }, + { + "id": 9938, + "name": "May Wallace", + "gender": "female", + "age": 32, + "address": { + "state": "Ohio", + "city": "Alamo" + } + }, + { + "id": 9939, + "name": "Joyce Sweet", + "gender": "female", + "age": 41, + "address": { + "state": "Colorado", + "city": "Longbranch" + } + }, + { + "id": 9940, + "name": "Natalia Benton", + "gender": "female", + "age": 45, + "address": { + "state": "Maryland", + "city": "Sidman" + } + }, + { + "id": 9941, + "name": "Kane Davidson", + "gender": "male", + "age": 62, + "address": { + "state": "West Virginia", + "city": "Dixie" + } + }, + { + "id": 9942, + "name": "Baird Roth", + "gender": "male", + "age": 67, + "address": { + "state": "Illinois", + "city": "Dante" + } + }, + { + "id": 9943, + "name": "Barron Alvarez", + "gender": "male", + "age": 19, + "address": { + "state": "Minnesota", + "city": "Enoree" + } + }, + { + "id": 9944, + "name": "Norris Garza", + "gender": "male", + "age": 68, + "address": { + "state": "Virginia", + "city": "Waverly" + } + }, + { + "id": 9945, + "name": "Eugenia Stanley", + "gender": "female", + "age": 61, + "address": { + "state": "Nevada", + "city": "Dexter" + } + }, + { + "id": 9946, + "name": "Hope Murphy", + "gender": "female", + "age": 72, + "address": { + "state": "Texas", + "city": "Wheatfields" + } + }, + { + "id": 9947, + "name": "Chang Garrison", + "gender": "male", + "age": 71, + "address": { + "state": "Delaware", + "city": "Caspar" + } + }, + { + "id": 9948, + "name": "Ryan Peck", + "gender": "male", + "age": 51, + "address": { + "state": "California", + "city": "Unionville" + } + }, + { + "id": 9949, + "name": "Marianne Bright", + "gender": "female", + "age": 39, + "address": { + "state": "New Hampshire", + "city": "Aurora" + } + }, + { + "id": 9950, + "name": "Ratliff Merritt", + "gender": "male", + "age": 30, + "address": { + "state": "Montana", + "city": "Rockbridge" + } + }, + { + "id": 9951, + "name": "Swanson Stevenson", + "gender": "male", + "age": 49, + "address": { + "state": "Louisiana", + "city": "Byrnedale" + } + }, + { + "id": 9952, + "name": "Beatrice Pitts", + "gender": "female", + "age": 78, + "address": { + "state": "Missouri", + "city": "Callaghan" + } + }, + { + "id": 9953, + "name": "Mable Hansen", + "gender": "female", + "age": 31, + "address": { + "state": "Colorado", + "city": "Bordelonville" + } + }, + { + "id": 9954, + "name": "Autumn Robles", + "gender": "female", + "age": 38, + "address": { + "state": "Pennsylvania", + "city": "Rosine" + } + }, + { + "id": 9955, + "name": "Jarvis Blackburn", + "gender": "male", + "age": 69, + "address": { + "state": "Michigan", + "city": "Interlochen" + } + }, + { + "id": 9956, + "name": "Kari Jennings", + "gender": "female", + "age": 20, + "address": { + "state": "New York", + "city": "Como" + } + }, + { + "id": 9957, + "name": "Bradley Crane", + "gender": "male", + "age": 75, + "address": { + "state": "Washington", + "city": "Watchtower" + } + }, + { + "id": 9958, + "name": "Hurst Shepard", + "gender": "male", + "age": 71, + "address": { + "state": "Kansas", + "city": "Gorst" + } + }, + { + "id": 9959, + "name": "House Bryant", + "gender": "male", + "age": 80, + "address": { + "state": "Arizona", + "city": "Waverly" + } + }, + { + "id": 9960, + "name": "Hope Norton", + "gender": "female", + "age": 41, + "address": { + "state": "Arkansas", + "city": "Grill" + } + }, + { + "id": 9961, + "name": "Wilma Montgomery", + "gender": "female", + "age": 43, + "address": { + "state": "Wisconsin", + "city": "Manila" + } + }, + { + "id": 9962, + "name": "Baldwin Donaldson", + "gender": "male", + "age": 22, + "address": { + "state": "Nebraska", + "city": "Kapowsin" + } + }, + { + "id": 9963, + "name": "Stark Chapman", + "gender": "male", + "age": 41, + "address": { + "state": "Illinois", + "city": "Greer" + } + }, + { + "id": 9964, + "name": "Sosa Burnett", + "gender": "male", + "age": 81, + "address": { + "state": "West Virginia", + "city": "Connerton" + } + }, + { + "id": 9965, + "name": "Mann Kline", + "gender": "male", + "age": 46, + "address": { + "state": "Nevada", + "city": "Ronco" + } + }, + { + "id": 9966, + "name": "Renee Gates", + "gender": "female", + "age": 23, + "address": { + "state": "Vermont", + "city": "Nettie" + } + }, + { + "id": 9967, + "name": "Kaufman Hogan", + "gender": "male", + "age": 81, + "address": { + "state": "New Jersey", + "city": "Tivoli" + } + }, + { + "id": 9968, + "name": "Emma Berger", + "gender": "female", + "age": 60, + "address": { + "state": "Texas", + "city": "Madrid" + } + }, + { + "id": 9969, + "name": "Jenkins Dennis", + "gender": "male", + "age": 73, + "address": { + "state": "Utah", + "city": "Gratton" + } + }, + { + "id": 9970, + "name": "Hopkins Fischer", + "gender": "male", + "age": 67, + "address": { + "state": "South Carolina", + "city": "Sexton" + } + }, + { + "id": 9971, + "name": "Opal Cox", + "gender": "female", + "age": 23, + "address": { + "state": "Tennessee", + "city": "Goochland" + } + }, + { + "id": 9972, + "name": "Janice Slater", + "gender": "female", + "age": 62, + "address": { + "state": "Alaska", + "city": "Hasty" + } + }, + { + "id": 9973, + "name": "Jerry Barron", + "gender": "female", + "age": 59, + "address": { + "state": "North Dakota", + "city": "Westwood" + } + }, + { + "id": 9974, + "name": "Randolph Day", + "gender": "male", + "age": 77, + "address": { + "state": "Ohio", + "city": "Genoa" + } + }, + { + "id": 9975, + "name": "Bessie Mcdaniel", + "gender": "female", + "age": 34, + "address": { + "state": "North Carolina", + "city": "Berlin" + } + }, + { + "id": 9976, + "name": "Pennington Hoover", + "gender": "male", + "age": 41, + "address": { + "state": "Oregon", + "city": "Holtville" + } + }, + { + "id": 9977, + "name": "Tamara Norman", + "gender": "female", + "age": 61, + "address": { + "state": "Iowa", + "city": "Garberville" + } + }, + { + "id": 9978, + "name": "Lupe Walls", + "gender": "female", + "age": 41, + "address": { + "state": "Connecticut", + "city": "Hickory" + } + }, + { + "id": 9979, + "name": "Navarro Barry", + "gender": "male", + "age": 78, + "address": { + "state": "South Dakota", + "city": "Wauhillau" + } + }, + { + "id": 9980, + "name": "Lessie Ashley", + "gender": "female", + "age": 66, + "address": { + "state": "Minnesota", + "city": "Cassel" + } + }, + { + "id": 9981, + "name": "Lucas Rivera", + "gender": "male", + "age": 52, + "address": { + "state": "Kentucky", + "city": "Hobucken" + } + }, + { + "id": 9982, + "name": "Ann Cochran", + "gender": "female", + "age": 38, + "address": { + "state": "Mississippi", + "city": "Orason" + } + }, + { + "id": 9983, + "name": "Duke Hawkins", + "gender": "male", + "age": 65, + "address": { + "state": "Massachusetts", + "city": "Verdi" + } + }, + { + "id": 9984, + "name": "Charlotte Lowe", + "gender": "female", + "age": 75, + "address": { + "state": "Hawaii", + "city": "Germanton" + } + }, + { + "id": 9985, + "name": "Sheryl Rice", + "gender": "female", + "age": 36, + "address": { + "state": "Idaho", + "city": "Warsaw" + } + }, + { + "id": 9986, + "name": "Griffin Pena", + "gender": "male", + "age": 66, + "address": { + "state": "Florida", + "city": "Vienna" + } + }, + { + "id": 9987, + "name": "Cleo Gill", + "gender": "female", + "age": 25, + "address": { + "state": "Georgia", + "city": "Alderpoint" + } + }, + { + "id": 9988, + "name": "Lynette York", + "gender": "female", + "age": 71, + "address": { + "state": "Wyoming", + "city": "Bagtown" + } + }, + { + "id": 9989, + "name": "Stevenson Marsh", + "gender": "male", + "age": 79, + "address": { + "state": "Indiana", + "city": "Bawcomville" + } + }, + { + "id": 9990, + "name": "Kathy Perkins", + "gender": "female", + "age": 18, + "address": { + "state": "Maryland", + "city": "Springdale" + } + }, + { + "id": 9991, + "name": "Knowles Oneil", + "gender": "male", + "age": 47, + "address": { + "state": "Oklahoma", + "city": "Sunnyside" + } + }, + { + "id": 9992, + "name": "Cherie Guthrie", + "gender": "female", + "age": 40, + "address": { + "state": "New Mexico", + "city": "Lumberton" + } + }, + { + "id": 9993, + "name": "Simpson Howard", + "gender": "male", + "age": 64, + "address": { + "state": "Alabama", + "city": "Summerfield" + } + }, + { + "id": 9994, + "name": "Patrica Rich", + "gender": "female", + "age": 23, + "address": { + "state": "Virginia", + "city": "Dana" + } + }, + { + "id": 9995, + "name": "Frazier Tillman", + "gender": "male", + "age": 18, + "address": { + "state": "Maine", + "city": "Taycheedah" + } + }, + { + "id": 9996, + "name": "Kristie Rutledge", + "gender": "female", + "age": 26, + "address": { + "state": "Alaska", + "city": "Bison" + } + }, + { + "id": 9997, + "name": "Reva Reese", + "gender": "female", + "age": 39, + "address": { + "state": "Ohio", + "city": "Templeton" + } + }, + { + "id": 9998, + "name": "Shirley Ellison", + "gender": "female", + "age": 25, + "address": { + "state": "New Mexico", + "city": "Walland" + } + }, + { + "id": 9999, + "name": "Bonita Black", + "gender": "female", + "age": 62, + "address": { + "state": "Virginia", + "city": "Coaldale" + } + } +] diff --git a/src/assets/data/company.json b/src/assets/data/company.json new file mode 100755 index 0000000..6d1b0f8 --- /dev/null +++ b/src/assets/data/company.json @@ -0,0 +1,505 @@ +[ + { + "name": "Ethel Price", + "gender": "female", + "company": "My company name is very long and funny because funny is fun", + "age": 22 + }, + { + "name": "Claudine Neal", + "gender": "female", + "company": "Sealoud", + "age": 55 + }, + { + "name": "Beryl Rice", + "gender": "female", + "company": "Velity", + "age": 67 + }, + { + "name": "Wilder Gonzales", + "gender": "male", + "company": "Geekko" + }, + { + "name": "Georgina Schultz", + "gender": "female", + "company": "Suretech" + }, + { + "name": "Carroll Buchanan", + "gender": "male", + "company": "Ecosys" + }, + { + "name": "Valarie Atkinson", + "gender": "female", + "company": "Hopeli" + }, + { + "name": "Schroeder Mathews", + "gender": "male", + "company": "Polarium" + }, + { + "name": "Lynda Mendoza", + "gender": "female", + "company": "Dogspa" + }, + { + "name": "Sarah Massey", + "gender": "female", + "company": "Bisba" + }, + { + "name": "Robles Boyle", + "gender": "male", + "company": "Comtract" + }, + { + "name": "Evans Hickman", + "gender": "male", + "company": "Parleynet" + }, + { + "name": "Dawson Barber", + "gender": "male", + "company": "Dymi" + }, + { + "name": "Bruce Strong", + "gender": "male", + "company": "Xyqag" + }, + { + "name": "Nellie Whitfield", + "gender": "female", + "company": "Exospace" + }, + { + "name": "Jackson Macias", + "gender": "male", + "company": "Aquamate" + }, + { + "name": "Pena Pena", + "gender": "male", + "company": "Quarx" + }, + { + "name": "Lelia Gates", + "gender": "female", + "company": "Proxsoft" + }, + { + "name": "Letitia Vasquez", + "gender": "female", + "company": "Slumberia" + }, + { + "name": "Trevino Moreno", + "gender": "male", + "company": "Conjurica" + }, + { + "name": "Barr Page", + "gender": "male", + "company": "Apex" + }, + { + "name": "Kirkland Merrill", + "gender": "male", + "company": "Utara" + }, + { + "name": "Blanche Conley", + "gender": "female", + "company": "Imkan" + }, + { + "name": "Atkins Dunlap", + "gender": "male", + "company": "Comveyor" + }, + { + "name": "Everett Foreman", + "gender": "male", + "company": "Maineland" + }, + { + "name": "Gould Randolph", + "gender": "male", + "company": "Intergeek" + }, + { + "name": "Kelli Leon", + "gender": "female", + "company": "Verbus" + }, + { + "name": "Freda Mason", + "gender": "female", + "company": "Accidency" + }, + { + "name": "Tucker Maxwell", + "gender": "male", + "company": "Lumbrex" + }, + { + "name": "Yvonne Parsons", + "gender": "female", + "company": "Zolar" + }, + { + "name": "Woods Key", + "gender": "male", + "company": "Bedder" + }, + { + "name": "Stephens Reilly", + "gender": "male", + "company": "Acusage" + }, + { + "name": "Mcfarland Sparks", + "gender": "male", + "company": "Comvey" + }, + { + "name": "Jocelyn Sawyer", + "gender": "female", + "company": "Fortean" + }, + { + "name": "Renee Barr", + "gender": "female", + "company": "Kiggle" + }, + { + "name": "Gaines Beck", + "gender": "male", + "company": "Sequitur" + }, + { + "name": "Luisa Farrell", + "gender": "female", + "company": "Cinesanct" + }, + { + "name": "Robyn Strickland", + "gender": "female", + "company": "Obones" + }, + { + "name": "Roseann Jarvis", + "gender": "female", + "company": "Aquazure" + }, + { + "name": "Johnston Park", + "gender": "male", + "company": "Netur" + }, + { + "name": "Wong Craft", + "gender": "male", + "company": "Opticall" + }, + { + "name": "Merritt Cole", + "gender": "male", + "company": "Techtrix" + }, + { + "name": "Dale Byrd", + "gender": "female", + "company": "Kneedles" + }, + { + "name": "Sara Delgado", + "gender": "female", + "company": "Netagy" + }, + { + "name": "Alisha Myers", + "gender": "female", + "company": "Intradisk" + }, + { + "name": "Felecia Smith", + "gender": "female", + "company": "Futurity" + }, + { + "name": "Neal Harvey", + "gender": "male", + "company": "Pyramax" + }, + { + "name": "Nola Miles", + "gender": "female", + "company": "Sonique" + }, + { + "name": "Herring Pierce", + "gender": "male", + "company": "Geeketron" + }, + { + "name": "Shelley Rodriquez", + "gender": "female", + "company": "Bostonic" + }, + { + "name": "Cora Chase", + "gender": "female", + "company": "Isonus" + }, + { + "name": "Mckay Santos", + "gender": "male", + "company": "Amtas" + }, + { + "name": "Hilda Crane", + "gender": "female", + "company": "Jumpstack" + }, + { + "name": "Jeanne Lindsay", + "gender": "female", + "company": "Genesynk" + }, + { + "name": "Frye Sharpe", + "gender": "male", + "company": "Eplode" + }, + { + "name": "Velma Fry", + "gender": "female", + "company": "Ronelon" + }, + { + "name": "Reyna Espinoza", + "gender": "female", + "company": "Prismatic" + }, + { + "name": "Spencer Sloan", + "gender": "male", + "company": "Comverges" + }, + { + "name": "Graham Marsh", + "gender": "male", + "company": "Medifax" + }, + { + "name": "Hale Boone", + "gender": "male", + "company": "Digial" + }, + { + "name": "Wiley Hubbard", + "gender": "male", + "company": "Zensus" + }, + { + "name": "Blackburn Drake", + "gender": "male", + "company": "Frenex" + }, + { + "name": "Franco Hunter", + "gender": "male", + "company": "Rockabye" + }, + { + "name": "Barnett Case", + "gender": "male", + "company": "Norali" + }, + { + "name": "Alexander Foley", + "gender": "male", + "company": "Geekosis" + }, + { + "name": "Lynette Stein", + "gender": "female", + "company": "Macronaut" + }, + { + "name": "Anthony Joyner", + "gender": "male", + "company": "Senmei" + }, + { + "name": "Garrett Brennan", + "gender": "male", + "company": "Bluegrain" + }, + { + "name": "Betsy Horton", + "gender": "female", + "company": "Zilla" + }, + { + "name": "Patton Small", + "gender": "male", + "company": "Genmex" + }, + { + "name": "Lakisha Huber", + "gender": "female", + "company": "Insource" + }, + { + "name": "Lindsay Avery", + "gender": "female", + "company": "Unq" + }, + { + "name": "Ayers Hood", + "gender": "male", + "company": "Accuprint" + }, + { + "name": "Torres Durham", + "gender": "male", + "company": "Uplinx" + }, + { + "name": "Vincent Hernandez", + "gender": "male", + "company": "Talendula" + }, + { + "name": "Baird Ryan", + "gender": "male", + "company": "Aquasseur" + }, + { + "name": "Georgia Mercer", + "gender": "female", + "company": "Skyplex" + }, + { + "name": "Francesca Elliott", + "gender": "female", + "company": "Nspire" + }, + { + "name": "Lyons Peters", + "gender": "male", + "company": "Quinex" + }, + { + "name": "Kristi Brewer", + "gender": "female", + "company": "Oronoko" + }, + { + "name": "Tonya Bray", + "gender": "female", + "company": "Insuron" + }, + { + "name": "Valenzuela Huff", + "gender": "male", + "company": "Applideck" + }, + { + "name": "Tiffany Anderson", + "gender": "female", + "company": "Zanymax" + }, + { + "name": "Jerri King", + "gender": "female", + "company": "Eventex" + }, + { + "name": "Rocha Meadows", + "gender": "male", + "company": "Goko" + }, + { + "name": "Marcy Green", + "gender": "female", + "company": "Pharmex" + }, + { + "name": "Kirk Cross", + "gender": "male", + "company": "Portico" + }, + { + "name": "Hattie Mullen", + "gender": "female", + "company": "Zilencio" + }, + { + "name": "Deann Bridges", + "gender": "female", + "company": "Equitox" + }, + { + "name": "Chaney Roach", + "gender": "male", + "company": "Qualitern" + }, + { + "name": "Consuelo Dickson", + "gender": "female", + "company": "Poshome" + }, + { + "name": "Billie Rowe", + "gender": "female", + "company": "Cemention" + }, + { + "name": "Bean Donovan", + "gender": "male", + "company": "Mantro" + }, + { + "name": "Lancaster Patel", + "gender": "male", + "company": "Krog" + }, + { + "name": "Rosa Dyer", + "gender": "female", + "company": "Netility" + }, + { + "name": "Christine Compton", + "gender": "female", + "company": "Bleeko" + }, + { + "name": "Milagros Finch", + "gender": "female", + "company": "Handshake" + }, + { + "name": "Ericka Alvarado", + "gender": "female", + "company": "Lyrichord" + }, + { + "name": "Sylvia Sosa", + "gender": "female", + "company": "Circum" + }, + { + "name": "Humphrey Curtis", + "gender": "male", + "company": "Corepan" + } +] diff --git a/src/assets/data/projects.json b/src/assets/data/projects.json new file mode 100755 index 0000000..e93ed4a --- /dev/null +++ b/src/assets/data/projects.json @@ -0,0 +1,31 @@ +[{ + "project": "UI Prototyping", + "date": 1427207139000, + "progress": 5 + }, + { + "project": "Design", + "date": 1427412725000, + "progress": 46 + }, + { + "project": "Development", + "date": 1427546580000, + "progress": 23 + }, + { + "project": "Testing and Delivery", + "date": 1427891640000, + "progress": 67 + }, + { + "project": "Ongoing Maintanance", + "date": 1428830580000, + "progress": 12 + }, + { + "project": "Minimal review", + "date": 1428830580000, + "progress": 12 + } +] diff --git a/src/assets/data/security.json b/src/assets/data/security.json new file mode 100755 index 0000000..b208c91 --- /dev/null +++ b/src/assets/data/security.json @@ -0,0 +1,88670 @@ +[ + { + "Type": "File", + "Value": "7E281760D1118EABF9BB855936F13CB1", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c796a041bb60336e8c0fde04b4d20e32b5f5b15cc831e728143d26985cf3be65.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FBC93B9EA436D0B37310008FE7CE155F", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/20a00eb122ed59db03836a97d564742077eff6fa902941f28b15f7e7e1204443.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C808914A22129AC7D673287A317BA634 : 9147E22497D0074D790AE67D5B906F13EE76A3C273F260166BA37C6D107C3F2E", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=c808914a22129ac7d673287a317ba634", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9B592EA4C18E09D2B898FE46558C12AC : AE07A32A7C4BE4F3E83CF9C14005D577E63BF20E811E9DBEFD800EC5258E4C0E", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=9b592ea4c18e09d2b898fe46558c12ac", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CEE62243785B7C0D5B936C17C1D1E2E9", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9EA027545D76B47117ACB391A9B10016", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "410A46CF0A94B596F6B3897756723100", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0FF1463604065A026989FA2C4B30BB17", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F0FC35C4BF3B1133D2D0143CB99F549C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "754B49AE7B92FAED0A8371B2F4218BC3", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EFF85D0C782179E07D4E39F835397E91", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9329574127B61ADD134D81031788543B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63663B3171E6F6EC795353C09A0CDBBC", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B315C590C3AD691604597EA41F8DD84E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5A39A887CF5988602E3C93ED7E455F5D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F89F5360A89841B932CC8BE825C3DA15", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "35C391DCB68910224A55B7A3C25F0EA1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "59AFF6650D2DC17521CE1930E920C7D1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7D278339B8D5261D718CEBBC1BBD530F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19F850A5BE06C7513950A7535FBBED9E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E2AF11EAC27AE37D121CC3559D5B76DD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3A42221BADC253CC3CDDD56DE1EECEFB", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5DF490987FB13C1885FCF55CBAE2C768", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11D20BCCC8F8B5AB03BA2FEA0D248113", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "31963075ABEC1CA51A7C8416BAF097F2", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F6945E0CC9298F70D892A29E747F171F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FE98ABC2DAB2F0F63A5F78DF5334130C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F7EBB593794545DBD1B3AA95EE7FB36C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "69978C76CC8DE0051E50768B575CBF1A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "12222FC2955965D9147302E767431657", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6100A90EBF87DD89B10F53BBB4998300", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0103F5CAD533CE51154068108718DA06", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9EFFA0D39B59B610CED5A3DD019A7E6E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8ADF81B6B974B8E2E9E3B6665BD78712", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7D5D5E617ED0CA113AD544758235E6F1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DA41099F724FD2EEBAC94AAFEF629889", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "67BE2A90BC44095E047FF5F000EB2DAD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EDC92591CDE8DB15A35F72043F8A0127", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F3855D7C83C07B3636E3FC89442DA8AD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FC5444532B92A90563EA6C496621760D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "68555A4235FDE27D15F51520A7899C76", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2A87F6E20241592BB6AA09AB4571FDAC", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EF8996E44D76B94E2D01436F83DA8841", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C62DBC8CCB60A9E325A128AA9C9BC297", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8835E9F8F9C32FF8BCBE7F30F2608B07", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9E74795B03266CB71D96007901B9ABA9", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA06D5BCC191B4FA7DF8B4C46B50B044", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0BC484BFC40483208307741F4F73784D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CEEF37FECED45763C4F1C60BDE42BA2C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5B6F2D99C2CF2F0260C671A6049EDDF1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2E6D8B5844ABB9ECF873FBB0C36ECBD1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5C67E7D7E7AD12186B2FC8A5D8D4071", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "73B9236547E31079491C7264C6F74310", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7EA57B3005971C9E88BC36422F8C8DEC", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "985112D8EE2A1F66FAA333BEDA00752B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B167D64BBC5C3D0E1BAFE5F7ACF8205D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "725655C9760E9B1D7632F2125A5D4C4A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1DFF6CC5E68B16F4D9F3300DD21E32FB", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E657F181097912906CBF2BF4894FC044", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BCFBA71BA7928FA1FF8DF7C13287ED4E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A1DE1EF4ED57B14E54A860549745A9A3", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ED5D15CEDD7033D2292BB168A04052FA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7A6FE4FDB644CC97C88097176F5481F1", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f0b3bef7ab495c3244f5b417b7a79e708b0186cb634766af9dec0377932328d2.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BDC8AB42F8C2C4BD846C8C2AF25D1B04", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/6ddfbb57741cdad0a3d25ca4ca0c8eafecbede97637027e9e65ae106a895c97d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6BB91DCE52704787F038F106776880F6", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/db9b24417d9f4d9fcd9c91c6cdbe553e41cf799b42feb4315d0c6bd725aa49a5.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7CC1C1EB93A8AC2096E927EE8BCB2F2F", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/6ef8c1f67775f9ffb07260002cc40bed313a8cf260c7f3c8785f1c3a2c2fba5d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "EEFC6BB9493AB9876CE6761B1F873F6C", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d43b22c6e4fa0d518556a896d91ec31c568ebefad6e1e55579c8e5294074084f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4C1B4032A51584F684E6E0F3096F6FDB", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=4c1b4032a51584f684e6e0f3096f6fdb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "339E13A60456F4321956559FA12E25E7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e994b797e04e05536f1c137d64396310b26edb82d9c15d7901bd29e64bf7a0ea.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "43BA498D6A2E1A0D457605952C088F51 : 86138C558089ED860ED2999351B7C43B81CDCE97B83E5AFF0A9CDE1DC3479201", + "Organization": "PDFExaminer Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=43ba498d6a2e1a0d457605952c088f51", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "85E04F43BA63CE35799296FF2B8E93C7", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/03f661bf45a9494d0666f5b28a62885470d2abdbd57bd95f4d4745068f656cfb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9C46F3B3DB7B9A791AD493CE81D0A781", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7362fc645c1df7fb2b0895b34fca8651ae3e3a01b386ab6441ddbb8eccb288e1.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3624FE9C8F36CF41C8607606BA34CFC7", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2fca98fa86282ec8783f5dabc178d83ff69a70ced0a21f874f51e9722662b10a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4532C0AA0D1424CDC8760F7B1C9E3E6E", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/3ecb2e086f4582db7620441dbf16035a85bade213f423c6aa9febf6eaf4f551a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "18AC13B9389CCBF7EDC43525FBF29A04", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ddfa2e2b8728d7643ae6a51141f2963b2d7434a5ec9e1ab7583c0fa9f73a26cb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "81A4AEB1EA51C4B4343BBE90AA1AD047", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a2ca34482534ad94468cae7e06cfe6f9f6fa73e5be6784accdc74a8fd9bc576e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "D117F952B70FEA74CEFBEC5AD047B7B5", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/4e75a34dbacfd5992c5acc99e30e053955c32fb484f02d6aef8263ee92ff2bd8.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "72E820AB5619E2DB651A5E1EF597C6A4", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1bab41d765f8c67b294839c5b620dfb22b0a3c31dfb72c6205b9c395770cfa68.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "51CA0207F8E592497583A5D123C553F7", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2185c1014acf62cceca646bee5f2dda9698ee8427fc57a6f84fd983155ff2e65.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "313B0D391795CBD27AAD6110C04CEEBF", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/8b4783a4a0727732d204130c8341241741e4ef4c74a4d54155a01acadccbbf19.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "EmailAddress", + "Value": "teodorlg@abv.bg", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "oqiireha@w.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "janicetendhi88@fesabok.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "asdalomas@spamherelots.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "domingogarea@movistar.es", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ardianbujupitbrebir@spambog.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aepuda@pop.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "angusnorthcott35@rng.enticals.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "asdaloma@maileme101.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "s.er.gei.k.r.yts.kiq798@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "margert@web2web.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "picture010@moscowmail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "antoine-biscoe@ildefonso14.silkwomenshirts.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "erniewagner@tertinek43.glasslightbulbs.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "udonox@newmail.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "asdalomas@mailinater.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ser.gei.k.rytskiq798@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "eosopeho@m.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ninacn2vi@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "anastasiyaam8qpo@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "5quarles@comcast.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "kiki124mia@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "shea.l.anderson@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "bjork7676@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "esor2@comcast.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "foleyma@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "joyzhi@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "corey7473@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "fagannew@comcast.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "kwhite1620@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "nookie3730@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "tw.i.tt.ero.vi.ht.wit.er.sk.ii@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "jeromehf69@kilo.kappa.livefreemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "jabacklund@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aaron@whiteshutter.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "lstmartin71@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aarondadcox@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "rebeccalockett37@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F87A4AA167A944404DA3A530B03FC2C0", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/3a1c67775fbf9e5348e83f45b44f9d5c052e0cce992b4ef444f1a4224f7a71ba.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "10A394E18D5F8271602FBED56F2108DF", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2eb887801c5b382b457416e47f780e5db2fc9ceb9ed5b097d6d693d7691695e5.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "D9FB227094F38397DB323EBE4CB844F3", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c632859a39bbb528b66eb13928b85a7db433571ed3414a801c9bef961498fbb2.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "A690B60FC4C4CD4D50F51981E7F689C2", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/93c676dd690c64d2a7b9de04f3c85a5d149b3157610be38294f245652b73af15.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7739886987587D5D528A7586333079B9", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c532de88ff93f5d97f810d0d07c1fe052f389f3a5ecba5d95efcd81fa9867c14.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B368DBF695A9F166951A4F5191955571", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/fd496ee63fa9b4aaecebbf2884fcb3bd555e22cf6146aad78acc1d01b6d8b217.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9DC4ECF2C8BC531A8569B12F3BE91CB6", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ff7c32c13ff9f2e0daad70c23eb267e4298c8affef9cd111134247b53da0cf21.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "77715F63FB4FE427F8EA0582920BE293", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/675a5be549fcc7e8e7586f7d8581dcb42d44739f5043359c4566ff8c11a8182c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B2A55DA714A43A97C436775590140C2D", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c7fdca17bc96714db8c8ddbdd952c511329bf1640e3cbbda20e57016e6eb6014.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FF7AD42CB391107D9AF5E23BB43B7ACB : 252D0BB4A629263277B54CAFA4027434EDFBB0F79291304F6EC702C01FD3864D", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ff7ad42cb391107d9af5e23bb43b7acb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "822690511ADB2F1CA3FE51699ABAB642", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/4e552d84dc4dfe8f9fac6d23c4f5bb4eb43e1cec3ca0d9c539f41fc555bcb470.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FBD7989F97DC99EA590A6B3EA816994D", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ec183127ce1cdcd72f120d91e1885feb2e285ebd356908ff3794099f847817a4.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "12B4BAA14DEFC2AC5376A46112079977 : C54CA0EDFACC1FAAC7608F7A84855AFD5452877146019B3A20827880ECB7DE29", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=12b4baa14defc2ac5376a46112079977", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "36405265D3D869766941776EE85FD244", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/3543209e3138eb99ab88bef0ff1c8d73393ece399d82077ef2c224ef8dfe421d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "ECB78CEBD003939E3029C0A4BC9EBF87", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/dd5f890b00b6f7a119a09542e992ca5c6bf50857fab5fb7691acef8cebdedf04.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "938948C5A296647096701D18760E7A82", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c0c2edb6d2d163f1d853b1f775af0e9229531fc1bc3f42a16ee8c1215ad6782d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "uk1online89e.info", + "Organization": "AVG Website Safety Reports", + "Rating": 4, + "Confidence": 89, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://www.avgthreatlabs.com/ww-en/website-safety-reports/domain/uk1online89e.info/", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "greatsofware125.download", + "Organization": "AVG Website Safety Reports", + "Rating": 4, + "Confidence": 89, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://www.avgthreatlabs.com/ww-en/website-safety-reports/domain/greatsofware125.download/", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "urgent-issue-no16121-system.review", + "Organization": "AVG Website Safety Reports", + "Rating": 4, + "Confidence": 89, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://www.avgthreatlabs.com/ww-en/website-safety-reports/domain/urgent-issue-no16121-system.review/", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "885A3AF2F18A4DCA4265BFE6FC77BB23 : FF2C9A3ABAB3A542A15D01830E7B0B8FF737AF99BE6DA75BAD70DB99E0F62195", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=885a3af2f18a4dca4265bfe6fc77bb23", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "424880FE88289C4967D44A6AAADA38CE : 8A239DF67100085825588E6B27FA395327C1ED5553B36658977237E2152C1A01", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=424880fe88289c4967d44a6aaada38ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "vyohacxzoue32vvk.cp3yme.top", + "Organization": "abuse.ch Ransomware Tracker Source", + "Rating": 4, + "Confidence": 95, + "DateAdded": "11-06-2016", + "LastModified": "11-09-2016", + "Description": "Ransomware host.", + "Source": "https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Ransomware" + }, + { + "Type": "Host", + "Value": "vyohacxzoue32vvk.g7rst5.bid", + "Organization": "abuse.ch Ransomware Tracker Source", + "Rating": 4, + "Confidence": 95, + "DateAdded": "11-06-2016", + "LastModified": "11-09-2016", + "Description": "Ransomware host.", + "Source": "https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Ransomware" + }, + { + "Type": "Host", + "Value": "vyohacxzoue32vvk.ss8doe.top", + "Organization": "abuse.ch Ransomware Tracker Source", + "Rating": 4, + "Confidence": 95, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Ransomware host.", + "Source": "https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Ransomware" + }, + { + "Type": "Host", + "Value": "vyohacxzoue32vvk.ug6ewx.top", + "Organization": "abuse.ch Ransomware Tracker Source", + "Rating": 4, + "Confidence": 95, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "Ransomware host.", + "Source": "https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Ransomware" + }, + { + "Type": "File", + "Value": "81A7F75BA11EC7CCBA0C2CC17FC9B4BA", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d17b849098e07120cb11f231da97796c95cce55f3046f739a9104751dd9c608c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CB0C06ED8E7C4B0376DD4F1A6E8C6F76", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/adae6c2bbc2011fe587f71ead820a34cb083a8dad289597fae822aae0071bf69.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C155C195598EEB9B54136AF2E489F126", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/38360ae8bfca175904b7fba75a9be6aa7c7f9b1da89eabdc1b3fc76d883e46f4.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B72D8D990DE884AF4AC6BA25C8F6EE30", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5bf9d6b131f6b785ab048cd088412e65d748a980fb2702f49f7f489b2bab5e0b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7ACB1A1984B28B83214A04649F4D06E6", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2b5d0ec97e38e3198c5c1e7c2906ec0f24203cc45e1a5bf4496f1a4992804f73.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "EE31136BB02578BDB2C14C56D74169E9 : 5A0BB890225DF46E81AAE495DEFB49C898FD3BD3F6E489666B72EB639252DCC7", + "Organization": "PDFExaminer Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ee31136bb02578bdb2c14c56d74169e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "sungbocne.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "havaa.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "highlandsolar.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hightradingfrequency.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "h-miyoshi.ed.jp", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hobbis.cz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "interprofil.no", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "iwebsdns.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "omidak.ir", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "restaurant-traditional.ro", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "fourpair.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gremr.ma", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "grafa.cz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "grahamkennedy.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "greatmeeting.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "greenmodul.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "greenoceanpetroleum.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "greentic.univcasa.ma", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "grplink.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "guneynakliyat.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gushifengyun.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gxhedu.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hamburyhird.co.uk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hanak-nafotil.kvalitne.cz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "haneyslanding.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "happyrushop.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "galebtopola.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gambit.nysa.com.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gentscha.de", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "geodispo.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "giasungoaingu.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gingell.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "giochasach.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gisinecology.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "glassfusing.com.au", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "golden-bereg.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gpstrackerbali.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "friluftsgaarden.dk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "wimaj.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "alamanconsulting.at", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "all-kaigo.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "arabom.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "bmkgjateng.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dhmodel.cz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "fitnessrelax.sk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "focovi.cl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "frivill.hu", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "fu-k.jp", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "fungasoap.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "futurovision.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "g2m.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "bg-n.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "butscher.co", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "campingmclaren.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "ccilfov.ro", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "chinasymbolic.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "chmedonline.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "clickjv.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "cor-huizer.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dietafine.cz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "diwsj.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "djjaviermix.cl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dwunion.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "elegant-taste.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "aizheni.cn", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "ajooma.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "akram37.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "append.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "aquatica.at", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "armantrading.co.ir", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "asaproducoes.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "asianbuffet.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "avnbook.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "axwat.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "balkello-accommodation.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "basarinn.is", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "bbq-tech.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "belaket.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "bestoptic.eu", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "abercrombiesales.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "bepxep.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "chaturk.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "concern-block.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dmamart.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "020zz.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "0551gx.cn", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "168big.com.tw", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "1kupon.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "adj3.pt", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "africantickets.de", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "inzt.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "www.cutillas.fr", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "donrigsby.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "earthboundpermaculture.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "adriandomini.com.ar", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "ajmontanaro.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "alpermetalsanayi.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "antivirus.co.th", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "avon2you.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "babuandanji.jp", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "centinel.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "codanuscorp.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "competc.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dessde.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dinglihn.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dunyam.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "edrian.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "eroger.be", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "handsomegroup.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "smtp.goodcatch.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "soloautos.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "supp.ambiflorasul.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "test.gotoweb.pro", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "thisnspeel.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "vexerrais.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "villaamericana.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "waag-azhar.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "westjordanwrestling.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "westprod.fr", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "your-confirm-safety.co.nf", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "3-50-90.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "abclala.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "acrilion.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hockeylavalest.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "infodoza.biz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "jcereza.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "loterotal.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "maxhotel.it", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "model-meister.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "odinmanto.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "panselunel.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "radiopazhn.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "reckersdrees.de", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "setlab.it", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "sh207542.website.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "sinotogo.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "harmat.pt", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "harpen.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hassyuu.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hdmedia.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "heederik.eu", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "henanbusiness.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hetmangniew.friko.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hg-bikes.de", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "highlakehill.be", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "himichesko-varna.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hiro-eki.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hkyidianyuan.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "hockeyboy.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gastradebg.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gcw123.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "geethikabedcollege.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "ghaemshahr.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "giadinh24.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "giesn.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gloriajeanscoffees.co.th", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gogeshop.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "goodcatch.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "greatbi.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "grittivn.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gwyhome.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "halerblot.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "expomec.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "eyzimo.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "filomak.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "fitnesstips.dk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "florindumitrescu.ro", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "flurrbinh.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "fordcmaxclub.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "fototour.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "fuatbilgin.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "funeralcars.eu", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gallato.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gaoqing8.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "gardencreation.be", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "broonquipo.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "bustbomb.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "carindoauto.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "carrier-spb.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "choopchirk.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "coilgalvalumemurah.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "copperblues.ca", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "cosmobalance.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "cutillas.fr", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "dekoral.eu", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "doto.com.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "dowfrecap.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "edumarvm.com.ar", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "elleart.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "environment.ae", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "share.videocore.ro", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "tamviagensswitchfly.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "terms-page.at.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "tradingtherange.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "voipexito.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "warningfacebooksecurity.ga", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "ys5egue.dteted7f7r.et4.4656.5.t65.5.5875.dhirt.4989.rgkhr.594k.e.clearpointsupplies.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "50engineersroad.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "aloneadage.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "alrawfed.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "altrazione.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "arquivetro.com.ar", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "assetcomputers.com.au", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "blueerdos.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "breepes.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "compapremiada2016.websiteseguro.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "confirmhelp.at.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "drnatalinoautili.it", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "huboslochteren.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "ient.usaa.com.approve.securepayment.ientapprove.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "info-fb-recover.at.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "invictaonlini.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "latampromomultiplus.zyns.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "latamtravelswitchfly.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "paypal.com.dgetuptreegot.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "recover-fb-app.at.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "recoverinfo-fb.at.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "securednetwork.theonlinewoodshow.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "serasaexpean.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "vienspkt.hcmute.edu.vn", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "vikas-kohli.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "vodoprovod.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "waverentacar.com.ar", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "whatsmethi.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "whatswrongwithmoney.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "wizmen.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "yourinternetnetworkingsolutions.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "ywcoba.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "zharmonics-online.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "622s.oie.4.4e.4w.22e.2dvt.45tgt.vcs4.2edv.hu7.sw3.hj90.cdsa.wedxc.etyb.clearpointsupplies.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "aapi-bb-gerenciadorempresarial.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "batikdiajengsolo.co.id", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "bbvacontinentall.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "cadastro-mobille.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "restaurantebrasaojf.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "safetech-online.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "saleseekr.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "sayelemall.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "shreeambicaalloys.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "sloutionenglishdor.com.ng", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "solutionhour.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "srimancoir.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "swingdoblack.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "tdeasywebdemo.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "theunlockshop.ie", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "toddautobody.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "transferownerairtenantbnb.website", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "uk-weddingphotography.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "upgrdprocess.com.ng", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "matroluxe.net.ua", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "med-sources.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "melroseplazahotel.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "meucondominio.blog.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "mhnslife.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "michaeldferrell.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "mijnverificatieprocedure.beveiligde.controle.enibaba.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "msarchitects.co.za", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "newcastlecoins.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "newportportoes.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "pay.capfonstore.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "privaterealestatelending.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "privatteodontologia.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "purple-monkey.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "rdmpilot.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "grupomoro.com.py", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "hamiyannews.ir", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "hoverforms.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "icpet-intrometic.ro", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "icscards.nl.bymabogados.cl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "insta-contest.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "iyuejwkmo.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "j590148.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "joshdu2016.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "lastovo.hr", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "lenovoservicecenters.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "lmrports.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "loverofalllnation.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "malcom.biz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "creativeoxygen.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "cuhk.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "dngecfo.wirt16.bhlink.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "dsgasdgsadglwehrfwaehfgsakjgsad.co.nf", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "dzinr-shears.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "educatefortexas.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "enquete.ricardo.ch.home.customer.satisfaction.security.ssl.ecosonline.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "eserviceeee.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "eservicesss.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "eservicesssss.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "eservicew.myjino.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "euromedicalonline.it", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "expoagroguaxupe.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "facebooklovesispain.tk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "general-catalog.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "302ceo.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "adamsvpm.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "adventuregreathimalaya.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "alheraschool.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "ambbar.com.ar", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "ameensadegheen.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "arhpro.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "betsports888.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "bigtecnologia.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "cgagodrej.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "club59mas.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "crawdudes.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "File", + "Value": "DBE267B6D6F7BF6535B9730106796AF4", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/87b9138ea931858411ef920bbef186e80a663bceb30c68cd5f870a300c807a36.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E9586BEAD571F440DDD4DC6BB6E0B558", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/b71070b22c0b8cb7f809766f6413dd75e816f1351dc6c5a4acab856d0fdc9bac.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "criticalreport83.com", + "Organization": "AVG Website Safety Reports", + "Rating": 4, + "Confidence": 88, + "DateAdded": "11-06-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://www.avgthreatlabs.com/ww-en/website-safety-reports/domain/criticalreport83.com/", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "sstvirtual.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "alphaadrian.win", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Botnet" + }, + { + "Type": "Host", + "Value": "appleicloud.app-myios.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "appleteameu.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "bigwintour.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "cdafang.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "colorondreamz.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "corporatesoutsourcing.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "cozyculmy.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "cresersp.org.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "danielphughes.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "details.information.center.security.service.ppl.appdata-account.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "edibuzire.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Botnet" + }, + { + "Type": "Host", + "Value": "emiratez.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Botnet" + }, + { + "Type": "Host", + "Value": "extrastark.ch", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "force7media.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "fucinemute.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "gartenidylle.ch", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "georgesinthegrove.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "goldene-gerste.de", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "gzzzsm.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware" + }, + { + "Type": "Host", + "Value": "htz.fucine.it", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "ifonese.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "jhansonlaw.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "lionsd115cs.pt", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "melaniedurrant.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "milonecdream.ch", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "murfreesborodogtraining.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "nagrat.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "nctech.com.au", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "online-modifed-account-information-update.optifacil.com.ve", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "prismfoundation.org", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "simpletechnology.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "spacephysics.co.uk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "thylands.dk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "torrent-programs.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "spamhaus.org", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "traptrillhosts.top", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "zeustracker.abuse.ch", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "lopertison.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Scam" + }, + { + "Type": "Host", + "Value": "ahwfgg.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nymaim" + }, + { + "Type": "Host", + "Value": "andifyoudontknow.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "openphish.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "198zc.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "blog.dynamoo.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "betternature.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "7ut.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "blog.dynamoo.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "www.canilsamwaad.com.br", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "deadpuppetsociety.com.au", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "CSIRT", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "dzwiekowe.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "efabryka.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "eribusiness.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "fashioncheer.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "fibrotek.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "freemailguide.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "frejasvej.dk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "frumiel.cl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "furniturefactory.lk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "g2el.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "ge3epmup.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "geist.fr", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gestuet-sterzer.de", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "globalem.asia", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "globissys.co.id", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "goedvanstart.nu", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gokmasan.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gossipsjunction.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "gpsoft.pl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "guusdam.nl", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hairflicksmodelphotography.co.uk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hanami.cz", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "happyhands.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hayber.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "henrytye.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "hogsmeade.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "holmebjerg.dk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "magical-connection.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "pillorydowncommercials.co.uk", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "termoskan.ru", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Locky" + }, + { + "Type": "Host", + "Value": "casebody.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "chairconsider.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "chieftravel.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "cloudprice.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "deadserve.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "dvston.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Virut" + }, + { + "Type": "Host", + "Value": "heksed.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Virut" + }, + { + "Type": "Host", + "Value": "humanhouse.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "increasegeneral.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "journeynorth.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "keksia.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Pykspa" + }, + { + "Type": "Host", + "Value": "mostpaid.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "offerpeace.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "rockhouse.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "sickcroud.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "sightdance.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "sightmeet.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "surealartofstate.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Tinba" + }, + { + "Type": "Host", + "Value": "thoseduring.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "triedsuch.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "wishgift.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "xdngzcn.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Pykspa" + }, + { + "Type": "Host", + "Value": "yardover.net", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suppobox" + }, + { + "Type": "Host", + "Value": "zuiben.com.cn.xatyds.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "private", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Virut" + }, + { + "Type": "Host", + "Value": "auraplace.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "cro.moph.go.th", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "drjanellebicknell.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "grandprairierotary.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "impexo-sales.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "loelang.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "Host", + "Value": "sicredirelatorios.com", + "Organization": "Malware Domain Blocklist Source", + "Rating": 3, + "Confidence": 79, + "DateAdded": "11-08-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "phishtank.com", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Phishing" + }, + { + "Type": "File", + "Value": "155384CF1E04023E3C734AC1AA5B15F7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16A932F3EFFE6A387AAE1CA82671C275", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C56FB17D078779E52D0282896386791", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D0FC24B0E114A7A5061504AC61E2BB62", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1731C3858A3538B64FEB2F36ED670431", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "193C5D89A91E7F057A72800614766799", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ACB0B7BCED97154FF5D5A5D589F5ECB9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A4FE8FC585011995A1BD345A97571C6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1BD676C76B40BF7F5228FCB2F02759EA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "223D387C95A3B8064EDF818B20D2A031", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "423A07FDB517F4742EAB165C997CAC24", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A54FC37F9A170AF0BBFA88ACBBF90EE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F3ABEC2146DF08BD09B1ED40779BF5D3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4F24B89EF5F7976E65D92E974FD60610", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "86D22F279AC64033888854C8E69A732B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F5763B2958707E3DB082B9B3522F07A5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A9F964BDE17F65F0CAE52AA49B80A356", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22D9AB50F2DA896ADAAFEB20B6AA3CBF", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "33225CAB6AFFB3BA8A1279B136D777C0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C8BAFDE2F890413C948E6070777DF5A", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DB6A36C7461FAAC1E4EB1A870F53F70", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A0769A53E1E8E6984024CD12A8EE209", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E95E9063BCC8EEE81C702EB9155749F", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "21D5ED2D6EA72AF81FDBB1FD67D09B79", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DE095E8EC1FFA87EAB8E41402EF87C0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D4FD664B3278B0DBF6B53CAD6B5CFA1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E56D2A5DCBB7857D8721D07A7C73F56A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "123C92003A7C0DD70F6F0FC8819DE201", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D93A7217329F363F3033423CA6CC511", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0068F22AE945AE3C6560F8D79A196AEC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09E1D946CE01A51EB4C34596F6496F60", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DD6E68DDE5609754D7A78E0B33DAD01", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "70D864DA0A84285251D95FEA613704D4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "021B2EE089A08EDF0969D60224B3BD06", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A4A2AA50E75F122DDB4DD3A5D2F56CC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D471E0D7A16FBDA489DEDC593600843", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "278707BBB228725CD5322E03D8AE42CA", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "033176F932A5D155323B7025BE1F30AE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7285008D8B7E2B552BFF45C804553683", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4505F1F9B2C93F0EFF7972271490417D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07FEA45A8A830DCF669D29969F214669", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "00C64220F4A9246D8DCE0061FEEE9E1A", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1371F7005EB2C57CE6A24700EA3972C3", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "67E3AA59824236A033AF0DD3F8B37C76", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09B38B235D77013A5ADE9F8C60EC57C5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2FE0A94661B95C6BA2BB26616C5D7BC6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BCE9EF13D9176F55C6432790A6AA972C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1854660FA0F8F2237A7A8706B3F6D844", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D1E2FE3E69C7956840E7DD744C7C85A3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C694FEE4513ACDE4C66F8EC34DACA4B8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2A19756C15A276A4402C6F396424B09E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07D182544C060A5B06F5323D9B24B04C", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0CCB58F6129D5B662BB26635617DBD00", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1E0D5F06484ED1D1BFC90373C566B710", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "21755D1C3F9BBAE9D8B78F8C469A945C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E46A38551FC452A5728D4DBF0A881BCF", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "01F65AFB3ECC04B593EC3E28F5F662F2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "483D295E3F0BB91608B29294F009B1C2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4CA0E910DB8DA103C769F114F14A1EBB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "84A4075C114C90E55409262D36C58171", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "466E3002723F3DDD9329B5DA60C17105", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D05DAB31C6600F3A55548D894F50AC69", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0901C5759896D85692B7A49895C7F27C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "44822D453C929D5F1F1492DA95BA5D46", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1613FC98855A825EB576EFF944EAF1C9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5CCE6C42FAA1AE2567C2A4780C6C420D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "212F3FD25654A84E53DD39F5D5AB8BFE", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1EA824EEFBA43FC65D4D1306F07F3550", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "78C7BC684ECB02E01B80A96E44AEBA80", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "10231A3187F73E11C8DA977861B76EEE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "46938A2D35E9485A7CE37931FF688C28", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "45EFDCC3D67197C4228DF1BD7EA27C43", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "15A9F71FC4FB947F8913F630C6A58E7C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4B95E60D805C3AF6DB35079D7AB73D5A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3A15CB7910C6AF2DCB7147D8C2C72C0C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2AEB65089216FF3BCB335C5334927D52", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C2B36744BE3563FD3907E7623255BA5", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DEC202C326F5414C3563D93B75E155D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16E2AD6B3992F224E6140754A01F6B49", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1AEBB0F552C38028A633AB25FC9EA300", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4729799C28795645270A737D83492EBC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0EB213688FC846F2AF3A218CBF353F17", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "55AB72F9F5296D4C133FA096BDD13997", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "280690A84D085ECCFE294684041946CE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C25760744D986F2C7E33BD82F01E882", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0F6CA7400A3D31339D0504638819F5F1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "05A62F467CE00C325BF2FFC984A92F0F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "40DD503DD2B06902A9C75910C85CC789", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8AC12BC20C381B2B3B7E2D8CB50D4EB3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DA2AE2E3E48394DA04A535E4671DAC8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "24D46203E13A4A8B8FD44769A5976420", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "41FB9BE0E3C1236C30A04BAF35B8F559", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "112A5BD3C543F13DC0C186576D264820", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "43B6900909B3E88AFBEA06C579A82AA9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "08D595E57F8B072634C44276BE0EC1C8", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "53E19820508549266844A45CA798F164", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4529C81213630147EA61123BC3C8DFF7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1DDA43077F15DBE35F25390FBD85E255", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22A4A72CB4B6383B2049AC99CD9E6AE7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "465BF17F415EC3F52276CDC46EAD3C52", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2080D303796E04811BDF9C38264BF0A0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "164E58B58C9B774D3C77CF7D3143DDD0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "26EAED69F8386DA450C1BB3F22A15088", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "20179AA7F919EB4E297A7E80660E7931", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "630A5918E204EB6040AD48A24D5B0BDC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1E49BF46C2B6C6C3D83A67795F952461", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B2D44D983EC68CB4B225C7592E2D610B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F6F05604D122563F7561F14D2157A7C6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1949CD8771DBEBC9B980C43F026018B3", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2278ED17001AFC0274DA833D2EBD1601", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2941276102B0990788540C3C52018615", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "551EC86D621E934B356AE75D52A0E1F1", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2A415DEA5861907B59AE07A6E78468DC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4701E0B51C1FC2E94F192A1CF7259A71", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09DD608015A32A1E2B30734C09C1AE04", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2BC2B0CFCAFDB3247AD522A65B75FF2C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2489E16B2C18FD8AF95118940E40FD56", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19207937890E6B6979C48D582A81FC15", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "23E7CB87D09257641365012DF6E40F64", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2175E192030B741532180A0AAE4C8D82", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "10117C3FAE9112EBB4B231BF1E3CDCA0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0113708C64B2BDEEA2EE28307EEDB07D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "01D512D2F31286E59AA99BB0582DBA6A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5F24D2CEA06B1902083925B134FFD82B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C61A1D8472F9887FC5A75969AC6F2ECB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "23307314BDB632A3F0C203C312D47E51", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2BAB35D756A67A8D3054A5F1308B418B", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02105479F3B7739A9980703C9322FCEA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "17528085913AEF78A0AC9A813D6F7AC6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2F5360DCD4039A843717A4BAFEC21B88", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4DC969F593284CE67E2FC9FE0517B4F9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "77F805D259D54C7BC2F3EC8ECC476FB9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02F6FD550BB2F2B8B2137D1A9C474716", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07C0B685CE6B7631C4E8F12891120D5D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DB924C62F182907B27DD3FAC191F4C1E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2132D657077420FC28455246C2C534B0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D9462FD5CEBFCF999EE1978748824BED", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "222513CA2A904C8454C0A12E4B6F14B4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0AC3E4D7C7DE5B1262F57803C09979B0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2E5D0D35C0FA35FC116984258B6715FD", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "170C585B402AEAA78FE1F4F3CCB59882", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C3B9F8CDA56F9595043711920A3A29F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "27EF15DA9A11298388E28B2284404230", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02281AD8233B90D7C67D8E1DF7B6A7E9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2824DFD87A51F9D51FA2E3B384CEB1B1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3C64B780CE4A18EF81B85F59C48B48FD", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "464E9DF131F93010DE528EC7CE2BF46E", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "17907BE71E997DB90BA2A9AEE3E29A3E", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4069120B4B4691D24863E7F338C6A082", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "212BAEBC5E4506449FFBDA2C776E76A0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "42CE0CD6B04CCEE4A706DD6C9A2D5A68", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CCEBC22B783D6A68EB08C0B8D00ECE72", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19E1F9B55A27735BB3901B3845874A56", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "599599938697014E2A472A8F012172CA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D9D5FCA85F24AE533F579F17E061428", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "132B75852D0F6B3CF03DAE62A709CDF8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "20C831B2F88ABB2E9CD3603B5BD5572D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7A531265E6A0B4C60EC81DFD0F0B9A52", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C7B0218109B90C138EEBFA7BC04B818B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FB1A79DCC9AE8D46F0465E93CEA4BD9E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4518EFBBF2B62DDA16DEF8FA6BD48625", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4AE1DD5267B0B116B90EFF6BBBB24ADF", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0CF0AFAC5F07BF80C3E876987EA7AD2B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4210725F1688B9EAF83CB39F295F6951", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D0B8D56295A707478A591F7DD4F36B5A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0B400418405FE44FBDA876E7867B33FA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1249951371A8240015305B7D5A208A6B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "438556286AD43CFDF8F0B762D7D90D93", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2059D097C73DA00E3CB80CA84FD13F21", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "282D86903D744D0D3BFD4B1AF8195472", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "042DA68FA29C099688975E10198A0548", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2BE5579C94A8314A915033E3D52273B0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11C189B935E95FA539A16529B243F1F5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4DB74792A63310D25D28D0C8E7CB486C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4BB5D59ED6C4267F2C130981CDB5A9A6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2596BB1A00A9F014E8B62360AFBE2C8E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E403A716611B02E01FF3BF488EAB6C0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D89C0BB1A3DBCFF508651FF6B14B7D7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E6F8EDDA94545169105BCD162C5A5A57", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "112566C4DF66B3710FAD8E98D35F7B35", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "200E65B902288CDB1A5F08B709BAB119", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "492D97BC2B2A0F1EB251E4EC0C3EC189", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2FCCE5512E0E290DDD4D5AFC9BBC49E6", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9341611000978F4E860053EE57687A14", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6C8652BA46ADEB93B873BC9B2ECC8899", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1E0A69602615D32CA9F1E096094993C4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "242FF63E09307E2CCA75745A55BAF368", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "449B726F9039A56984F5A08B663D6E59", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D331F57BEB6351862BE805537A0D116", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16D3A7A10770D59DBF959AA615EEB811", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "17AF1025E78A3F31B4EB3076F4CD8A04", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "08BB71DAFF657C72A929562C2109F28E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4A5CE9C208BA601E6C979B66B94B29E3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "40352EC464C1A7FE1C7B412C40ADD0B0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C8A6C3E95EC629271A2CCCBCBDE2C193", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4EE0766087D0315006C39DEB17122A49", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "284617A997986D19750F40A5350C760F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/284617a997986d19750f40a5350c760f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5C27BF1D365AD2088E71AAE5C80DA452", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5c27bf1d365ad2088e71aae5c80da452", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Dropper.Heur.gen" + }, + { + "Type": "File", + "Value": "F2CCE70BF4E3E2B4688FC326E9B463DF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f2cce70bf4e3e2b4688fc326e9b463df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "44AF4DBB5E4E2C519EF1ACC7C405BBAB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/44af4dbb5e4e2c519ef1acc7c405bbab", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi.4235" + }, + { + "Type": "File", + "Value": "568366AA5407F6F21EEE37DC0E9C58C8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/568366aa5407f6f21eee37dc0e9c58c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "6541EB65E346049B06D778136B21D02C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6541eb65e346049b06d778136b21d02c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "C54367C54CBB28A01A13E4C032A05E57", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c54367c54cbb28a01a13e4c032a05e57", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm.Win32.Dropper.RA" + }, + { + "Type": "File", + "Value": "3E73089020169278B3F7B627145C8807", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3e73089020169278b3f7b627145c8807", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "D9A58951839866CD260758E0207D08BE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d9a58951839866cd260758e0207d08be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Poison.ds" + }, + { + "Type": "File", + "Value": "EC7C1F5576B465F91A44DB2903A0F892", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ec7c1f5576b465f91a44db2903a0f892", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Riskware.Dupatcher.A4" + }, + { + "Type": "File", + "Value": "033AEA8BBEC7333659390CAB0565C4CC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/033aea8bbec7333659390cab0565c4cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D21A6E876DCD923987AC229376623E64", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d21a6e876dcd923987ac229376623e64", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D4F0CB8B68699C124ACA9248436CA8A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2d4f0cb8b68699c124aca9248436ca8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EA95FD03B8916FE16C71C3BA078354B7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ea95fd03b8916fe16c71c3ba078354b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "950D590C46E14F4B3E075DE08BD40075", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/950d590c46e14f4b3e075de08bd40075", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Diztakun.015380" + }, + { + "Type": "File", + "Value": "76C5C8E7BA3E061433F51CE06C49A3EC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/76c5c8e7ba3e061433f51ce06c49a3ec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Bifrose.AE6" + }, + { + "Type": "File", + "Value": "E4FE56324C692CE3E0CB49899FC292D4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e4fe56324c692ce3e0cb49899fc292d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B988BFAC8F38E84D9FEAF63B9F54BC8A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b988bfac8f38e84d9feaf63b9f54bc8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "2FD929ED5FA011E8D96963AAA7B23AE2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2fd929ed5fa011e8d96963aaa7b23ae2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.PSW.QQPass.af" + }, + { + "Type": "File", + "Value": "6BE140E8D888CD46D48D46B743038C00", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6be140e8d888cd46d48d46b743038c00", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "980589439FE2E49FD38D6185BC078D5E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/980589439fe2e49fd38d6185bc078d5e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "806E45FAC9EC514908B9301CEA554159", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/806e45fac9ec514908b9301cea554159", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A2AC7C1417815C13AD4A4BB371DFAE3F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a2ac7c1417815c13ad4a4bb371dfae3f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Downloader.Heur.gen" + }, + { + "Type": "File", + "Value": "1DB8B00EC19E8480C96891C83CA8EF75", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1db8b00ec19e8480c96891c83ca8ef75", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "EICAR-Test-File" + }, + { + "Type": "File", + "Value": "CC3D622629D1CB461794AA39096B386F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cc3d622629d1cb461794aa39096b386f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "9BCF9199693FDD9A71C3BBE67588BB00", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9bcf9199693fdd9a71c3bbe67588bb00", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "8DEE81E0B7D4334B77FB8CD2698ACBB7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8dee81e0b7d4334b77fb8cd2698acbb7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Win32.FlyAgent.h" + }, + { + "Type": "File", + "Value": "427587AF615B2846F109FE18EB41988B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/427587af615b2846f109fe18eb41988b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.cplv" + }, + { + "Type": "File", + "Value": "0F48FCBA36787C0B9EDA4AEE45D663D4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0f48fcba36787c0b9eda4aee45d663d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "6017F8CA40710035C2526398D6B71A61", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6017f8ca40710035c2526398d6b71a61", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "RiskTool.ProcPatcher.dl" + }, + { + "Type": "File", + "Value": "FD00CC6C114D33B141A25CF7E7040D24", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd00cc6c114d33b141a25cf7e7040d24", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1B842976B7F82CBAC6169235825A6BB1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1b842976b7f82cbac6169235825a6bb1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "44D3A9FDB9F180F316938F097E855668", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/44d3a9fdb9f180f316938f097e855668", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E7926BAA8E11FEF1A01801066CB4AC1D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e7926baa8e11fef1a01801066cb4ac1d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Downloader.Genome.dcvj" + }, + { + "Type": "File", + "Value": "7E84563995B8FD950E4C0A72E78A111E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7e84563995b8fd950e4c0a72e78a111e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.CryptXXX.tb" + }, + { + "Type": "File", + "Value": "2DCEFB26C5C6ACA2D2476BB6BD1533F5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2dcefb26c5c6aca2d2476bb6bd1533f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D34D3E11553896B5EA99D70634A782D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4d34d3e11553896b5ea99d70634a782d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1894A913C6494C69CE69B829763D1E25", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1894a913c6494c69ce69b829763d1e25", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic" + }, + { + "Type": "File", + "Value": "6A75A747782D08AD2485B6E1E6E17E3E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6a75a747782d08ad2485b6e1e6e17e3e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Kazy.202631" + }, + { + "Type": "File", + "Value": "BA537ADC3EE515C922632B5CFBBBCAF3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ba537adc3ee515c922632b5cfbbbcaf3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Heuri.NewThreat.MVM" + }, + { + "Type": "File", + "Value": "8A34CE38370D05BB512A3A40FDA66555", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8a34ce38370d05bb512a3a40fda66555", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "107D8BC0017E88E41BAE22EE94F661DC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/107d8bc0017e88e41bae22ee94f661dc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "AA9F063966C5DF858441257B1B6FB284", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aa9f063966c5df858441257b1b6fb284", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDropper.Agent.brgk" + }, + { + "Type": "File", + "Value": "2C84D829388FF7F162F8FEA9BF0A95B7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2c84d829388ff7f162f8fea9bf0a95b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.ggzl" + }, + { + "Type": "File", + "Value": "FA860929A02D653500D4B8951294FBB7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fa860929a02d653500d4b8951294fbb7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "114D574F4535E8C8C53B756FF08163F6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/114d574f4535e8c8c53b756ff08163f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "43E3205738CBCE3703AD1F9782E780DD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/43e3205738cbce3703ad1f9782e780dd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "E72922E4B05D1CC92DC1A44690BA6B1A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e72922e4b05d1cc92dc1a44690ba6b1a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDownloader.Banload.bgks" + }, + { + "Type": "File", + "Value": "7964D59958EB4CB30D919510A1DE2C76", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7964d59958eb4cb30d919510a1de2c76", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "C0D1F14FC42A8E08906248D35DB9487D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c0d1f14fc42a8e08906248d35db9487d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "C2DEA87293912D25CDC200E9CA4116C4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c2dea87293912d25cdc200e9ca4116c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Heuri.NewThreat.MVM" + }, + { + "Type": "File", + "Value": "F756D856C32BF400F6216C08B2EBD4DD", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f756d856c32bf400f6216c08b2ebd4dd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5ECA1DDB4A2D7779D262CBE6B25E6843", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5eca1ddb4a2d7779d262cbe6b25e6843", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FD6C431F11C7291242448E9E66E26B54", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd6c431f11c7291242448e9e66e26b54", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2612C09BE27F771437F3D1C826A17E5C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2612c09be27f771437f3d1c826a17e5c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Riskware.Dupatcher.A4" + }, + { + "Type": "File", + "Value": "5E3253DB7073BCCF8E80BF91EDA0239F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5e3253db7073bccf8e80bf91eda0239f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "CF996D914B34D5671BE6C63ECB20553E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cf996d914b34d5671be6c63ecb20553e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bjihw" + }, + { + "Type": "File", + "Value": "953511A20C3C8421EC16AEFCB37DF89A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/953511a20c3c8421ec16aefcb37df89a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "657F9B71288390722AD7B0F85FCE6892", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/657f9b71288390722ad7b0f85fce6892", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/Linux.il" + }, + { + "Type": "File", + "Value": "297C041C672CC51EF33A9855CA9B1ADE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/297c041c672cc51ef33a9855ca9b1ade", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EDD5D8408DB36F00798FD9FF21AEBB69", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/edd5d8408db36f00798fd9ff21aebb69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "80C978E8DC77D8B830F741F3EEEBA698", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/80c978e8dc77d8b830f741f3eeeba698", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "00275BDDC8724BB9EFFDE4F4DBB18785", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/00275bddc8724bb9effde4f4dbb18785", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E3B357E86DA8BCE8671380F8517C50DF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e3b357e86da8bce8671380f8517c50df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "35852E6712CCE120D356C741B105FE09", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/35852e6712cce120d356c741b105fe09", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "9A36B1032D645D396531FD97A41BF180", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9a36b1032d645d396531fd97a41bf180", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "B66D232CE267AA9A83C6BF5737E153CA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b66d232ce267aa9a83c6bf5737e153ca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/Linux.ii" + }, + { + "Type": "File", + "Value": "CEF741A67BB07E7844ECA6C2531D3B25", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cef741a67bb07e7844eca6c2531d3b25", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Strictor.85142" + }, + { + "Type": "File", + "Value": "C5B2412B14419ECE9C976CCB7E26BA29", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c5b2412b14419ece9c976ccb7e26ba29", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH008.a.(kcloud)" + }, + { + "Type": "File", + "Value": "709DC5946FA7D7459543A758F47B7717", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/709dc5946fa7d7459543a758f47b7717", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1FA8571BDBFB7431BCEC13D8B7057512", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1fa8571bdbfb7431bcec13d8b7057512", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ACF35F2A88B0149A64B59D27B01B4260", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/acf35f2a88b0149a64b59d27b01b4260", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CCFFC6D58E0B07826B0EADC4214E5DF9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ccffc6d58e0b07826b0eadc4214e5df9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3B23D41A67FB19836D1B8C77F40B13CB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3b23d41a67fb19836d1b8c77f40b13cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Agent.bv.(kcloud)" + }, + { + "Type": "File", + "Value": "712BDA79F60B276F2F56E7C4F6157EA7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/712bda79f60b276f2f56e7c4f6157ea7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "9B8B60FF64FEC664688FB9D5BB840589", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9b8b60ff64fec664688fb9d5bb840589", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "324958BD6BD14E14D020A5A99CD52116", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/324958bd6bd14e14d020a5a99cd52116", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Variant:Hupigon.Lyut" + }, + { + "Type": "File", + "Value": "F795289A3B56476369AA7A39B8F3AD6D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f795289a3b56476369aa7a39b8f3ad6d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Genome.dcke" + }, + { + "Type": "File", + "Value": "FA19DF66D5278717DA75E8182403EFFF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fa19df66d5278717da75e8182403efff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "C694A5DF2F1DA27A31020CAF23DC087C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c694a5df2f1da27a31020caf23dc087c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Win32.FlyAgent.h" + }, + { + "Type": "File", + "Value": "60163551544CC55BE1F21C7756D0EC30", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/60163551544cc55be1f21c7756d0ec30", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "275E8F927A61A8BD109A54DEEA4A009E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/275e8f927a61a8bd109a54deea4a009e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.cewo" + }, + { + "Type": "File", + "Value": "33A374D9C69F2995173ACC139A3A0CC9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/33a374d9c69f2995173acc139a3a0cc9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "81F214FE57D68E1B67FA2E3281B4C475", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/81f214fe57d68e1b67fa2e3281b4c475", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Gimemo.han" + }, + { + "Type": "File", + "Value": "858B4D7A046B91FACB28ABCF4FB8E912", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/858b4d7a046b91facb28abcf4fb8e912", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2E9A52E206C2F2676294D774FDAE2C9F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2e9a52e206c2f2676294d774fdae2c9f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Murphy.David" + }, + { + "Type": "File", + "Value": "F0D00F8744303E7DA2074D06445AA2C7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f0d00f8744303e7da2074d06445aa2c7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FF72453CF4055D7BA90F454A2EF022C2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ff72453cf4055d7ba90f454a2ef022c2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "1714F6ABAE63FFBF8F0052D5EAB6850E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1714f6abae63ffbf8f0052d5eab6850e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "2421141A2D024EA5C09B6066DCC9C093", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2421141a2d024ea5c09b6066dcc9c093", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Graftor.111508" + }, + { + "Type": "File", + "Value": "51CABACDBDE45F22A1C3BA46C930EFFF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/51cabacdbde45f22a1c3ba46c930efff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "03AD2297D86FA3796E2E24802080FE29", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/03ad2297d86fa3796e2e24802080fe29", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Antavmu.eff" + }, + { + "Type": "File", + "Value": "71E79DAB847DDF01D408A5BF3848D7B6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/71e79dab847ddf01d408a5bf3848d7b6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A710536ED5043489F01FC5AF9E504020", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a710536ed5043489f01fc5af9e504020", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "98FF3FA4C8DA123F2D0FFC76213558CF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/98ff3fa4c8da123f2d0ffc76213558cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C7F608EE9E2595C38FB3D042393709DE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c7f608ee9e2595c38fb3d042393709de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDropper.Agent.byei" + }, + { + "Type": "File", + "Value": "AA39D632F040357685E0A9B91395736B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aa39d632f040357685e0a9b91395736b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "5A9136FC357985CBBBC88B2CDD8BD495", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5a9136fc357985cbbbc88b2cdd8bd495", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A15B45722D8160987E3C5A341F52422A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a15b45722d8160987e3c5a341f52422a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "244984565D83AF12BDCB5E539BEECFD0", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/244984565d83af12bdcb5e539beecfd0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4ACEC4242EF0B189B7DEFC17124BD20E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4acec4242ef0b189b7defc17124bd20e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C8BB3A493B4DD05A06CF21F773099E6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1c8bb3a493b4dd05a06cf21f773099e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.eiuw" + }, + { + "Type": "File", + "Value": "A8A93C34661628DC591B207C9E9F5C18", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a8a93c34661628dc591b207c9e9f5c18", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AF52A02E371489CF413D687283053305", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/af52a02e371489cf413d687283053305", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "285B4B0C4801D7DF590D8130CFC27438", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/285b4b0c4801d7df590d8130cfc27438", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A4E1E2C750A61D87D9D1EAB8BDE34881", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a4e1e2c750a61d87d9d1eab8bde34881", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.xov" + }, + { + "Type": "File", + "Value": "0250A94D7DCD249B80C33300815D350F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0250a94d7dcd249b80c33300815d350f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C016378329FCE747790140C4F56C9338", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c016378329fce747790140c4f56c9338", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "70D5149194D965015117E524AB2C7BAE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/70d5149194d965015117e524ab2c7bae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Vilsel.abet" + }, + { + "Type": "File", + "Value": "6E89693EA65F1EB155206D2C2110E630", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6e89693ea65f1eb155206d2c2110e630", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "D43E8908A25952528809EB6094297069", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d43e8908a25952528809eb6094297069", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1B29C99E1A048A11E76B60A07435C77F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1b29c99e1a048a11e76b60a07435c77f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C6F207CABB7BB71868AF5D4553578639", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c6f207cabb7bb71868af5d4553578639", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.Heur.gen" + }, + { + "Type": "File", + "Value": "DA02FBE10CB73135624F1C3CC84B598C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/da02fbe10cb73135624f1c3cc84b598c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "99CF0B2EA413F95920DC36BE10C14E47", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/99cf0b2ea413f95920dc36be10c14e47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "15A0427B579629CD59420B2C13F726C4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/15a0427b579629cd59420b2c13f726c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Packed.Krap.c.elpr.mg" + }, + { + "Type": "File", + "Value": "A0F6CEEE081FB6EE16EC32212C683318", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a0f6ceee081fb6ee16ec32212c683318", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "3B53F6B8D10BA184E2D9B3E3F50AEE64", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3b53f6b8d10ba184e2d9b3e3f50aee64", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "C50B45A0D82EA5BA120C6B025E69CA00", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c50b45a0d82ea5ba120c6b025e69ca00", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DC172B0C757DEB86B6CCE878903C49B1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dc172b0c757deb86b6cce878903c49b1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "24AAC42AE09982E1DA98F8D5562C86D8", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/24aac42ae09982e1da98f8d5562c86d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4E737FC5BEB61AC5838D192288DB2340", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4e737fc5beb61ac5838d192288db2340", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "ASP:Fileupload-A" + }, + { + "Type": "File", + "Value": "DB9E37D5FAB6C0F69419FB13A6109332", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/db9e37d5fab6c0f69419fb13a6109332", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E6DCA4275625FE145C4FFCE25D7E88B4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e6dca4275625fe145c4ffce25d7e88b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:006!Eldorado" + }, + { + "Type": "File", + "Value": "4B2F3D96EA30513D83F92454E6207394", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4b2f3d96ea30513d83f92454e6207394", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "8EB205A7F3C7F1890A2E8C36C7A0472D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8eb205a7f3c7f1890a2e8c36c7a0472d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious file" + }, + { + "Type": "File", + "Value": "2AAB6B7F86BC505E41E10C971AE0AE30", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2aab6b7f86bc505e41e10c971ae0ae30", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Exploit.CVE-2012-0151.a" + }, + { + "Type": "File", + "Value": "5597DB82CB84BBF51A40172E6106208C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5597db82cb84bbf51a40172e6106208c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "8B4443D0B3614FB439FBDEFE02F0AEE4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8b4443d0b3614fb439fbdefe02f0aee4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D3763A5A86DCB80C809D95DF9DFC7FEA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d3763a5a86dcb80c809d95df9dfc7fea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5B2024222A7B6FCAD376EAD4D455082", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c5b2024222a7b6fcad376ead4d455082", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6B592A9168A0420F6FA7739C12D93C64", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6b592a9168a0420f6fa7739c12d93c64", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F51413ACD88D9639D12B5564E16F7EE9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f51413acd88d9639d12b5564e16f7ee9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "87513279D67EBB982849901A204ABE32", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/87513279d67ebb982849901a204abe32", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "4D799F647016E1DC4E1AF8C54E4BECD9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4d799f647016e1dc4e1af8c54e4becd9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F4A5A702731796167AB50EB6F8856B0E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f4a5a702731796167ab50eb6f8856b0e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6ACAF65F1BE2502E38C450C874751234", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6acaf65f1be2502e38c450c874751234", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "68EDAE618D9DE040070F8B8AA7925F10", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/68edae618d9de040070f8b8aa7925f10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "E8DC3EC4AF685921570E45CAB326D0A3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e8dc3ec4af685921570e45cab326d0a3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "2536EA3D6A30FCCE06DE3C82C5A92FFC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2536ea3d6a30fcce06de3c82c5a92ffc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Adware.Agent" + }, + { + "Type": "File", + "Value": "F794CEF9ED8A661F0DB612761DA35A27", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f794cef9ed8a661f0db612761da35a27", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "88223CC74707A88B73413F56ADE567D4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/88223cc74707a88b73413f56ade567d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Posible_Worm32" + }, + { + "Type": "File", + "Value": "1E1B4CD0DD66073718DE217A5AECBF28", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1e1b4cd0dd66073718de217a5aecbf28", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A7C6622E96F2BD18872B0A81EFEC94F6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a7c6622e96f2bd18872b0a81efec94f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C295B5C13DA0EB1776B48927079D5857", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c295b5c13da0eb1776b48927079d5857", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2430AEAC9998F8EC70161BEC4A5A0110", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2430aeac9998f8ec70161bec4a5a0110", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic" + }, + { + "Type": "File", + "Value": "B7A26B7757C2672E777F41A6D306FA03", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b7a26b7757c2672e777f41a6d306fa03", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "9666AF70273DB0F67DD129902592DFB5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9666af70273db0f67dd129902592dfb5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "HackTool.Win32.Keygen" + }, + { + "Type": "File", + "Value": "26BCF613BE0AA8C2C09B4959FB2070B7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/26bcf613be0aa8c2c09b4959fb2070b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9E796EABBF3A13D962AADAFC2E60FC1E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9e796eabbf3a13d962aadafc2e60fc1e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8CA89C42E750EC9819EB619CEF55292A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8ca89c42e750ec9819eb619cef55292a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "0D4A3F30DEDFEAC7A5F4B74701FC4E88", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0d4a3f30dedfeac7a5f4b74701fc4e88", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "6DD205E1409408DACE70100488E72415", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6dd205e1409408dace70100488e72415", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CFEC40534359BE7C5F14D7158D015258", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cfec40534359be7c5f14d7158d015258", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "FB3CCE442AB8869000742B8D616EBC15", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fb3cce442ab8869000742b8d616ebc15", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bjihw" + }, + { + "Type": "File", + "Value": "552C999E7BC279FD1F194E7B988B16F4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/552c999e7bc279fd1f194e7b988b16f4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "EABE312184FEBC73B86A7DF7D89A1272", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/eabe312184febc73b86a7df7d89a1272", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Crypt.Heur.gen" + }, + { + "Type": "File", + "Value": "4B371726FB86DAAECE9D870C933D5673", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4b371726fb86daaece9d870c933d5673", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Downloader.gen.h" + }, + { + "Type": "File", + "Value": "90B12EF499DEEF7B2C4FB70BB39B4C2B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/90b12ef499deef7b2c4fb70bb39b4c2b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DD0DBC6B469D567C2AC3160C4AB2C7C4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dd0dbc6b469d567c2ac3160c4ab2c7c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "FC1CC9E9293BF41EB4BE837CDC7F37C3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fc1cc9e9293bf41eb4be837cdc7f37c3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.apcqi" + }, + { + "Type": "File", + "Value": "76D96F5D6A3D6D8DB057F9E102C118EE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/76d96f5d6a3d6d8db057f9e102c118ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm/FakeFolder.b" + }, + { + "Type": "File", + "Value": "11ED238717948333E34E62F2C90F04F1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/11ed238717948333e34e62f2c90f04f1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "2EA64D538EA9071ED646B81F03A22DE1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2ea64d538ea9071ed646b81f03a22de1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A0C685DAE89473E3A6B45C4E2CC153A7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a0c685dae89473e3a6b45c4e2cc153a7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "A4FD1C7B4CD1F565B2FF67A97DC77A64", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a4fd1c7b4cd1f565b2ff67a97dc77a64", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "PHP:Shell-FF" + }, + { + "Type": "File", + "Value": "4D65827B477029BF21C755A96AB660E3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4d65827b477029bf21c755a96ab660e3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Downloader.Agent.cthf" + }, + { + "Type": "File", + "Value": "E11D2E78A9BA12F0D71AF0C44717D9F6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e11d2e78a9ba12f0d71af0c44717d9f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1F967D2FF9650E6BCC5F52F0E4ED649E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1f967d2ff9650e6bcc5f52f0e4ed649e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "B855B91D7DB15C71F3D8D24806B433C8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b855b91d7db15c71f3d8d24806b433c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Agent.ac.(kcloud)" + }, + { + "Type": "File", + "Value": "A32D3EC632F8529DEF896B9285908776", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a32d3ec632f8529def896b9285908776", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B5DA802531BF6896342EBEB9342F8B11", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b5da802531bf6896342ebeb9342f8b11", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2A42BF39CFD52B8C17ADF9695A0E12DB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2a42bf39cfd52b8c17adf9695a0e12db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Riskware.Dupatcher.A4" + }, + { + "Type": "File", + "Value": "D2387CE3A37069BE674CDD09C21A1024", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d2387ce3a37069be674cdd09c21a1024", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5A5B083EDF50CA5F6F0D34BC26F656B8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5a5b083edf50ca5f6f0d34bc26f656b8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.foqj" + }, + { + "Type": "File", + "Value": "ED0D55C7C4C4D980B53650BD2031068A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ed0d55c7c4c4d980b53650bd2031068a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:TrojanDrop.VB.ahht.pzyq.mg" + }, + { + "Type": "File", + "Value": "900AF220B254E3EF34538386FA75C4B8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/900af220b254e3ef34538386fa75c4b8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "B37C216869A14B9FC7760D7DF252E12D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b37c216869a14b9fc7760d7df252e12d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "030177DAC539C8E37FC57605137A04C7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/030177dac539c8e37fc57605137a04c7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Malware-gen" + }, + { + "Type": "File", + "Value": "859DE08A94D539DC7A78891503994AEF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/859de08a94d539dc7a78891503994aef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Hacktool.Flystudio.016255" + }, + { + "Type": "File", + "Value": "E8BADA5EB383E506109977989194D11E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e8bada5eb383e506109977989194d11e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9E361826AE7A67AC33DD0F205C5E4B67", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9e361826ae7a67ac33dd0f205c5e4b67", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Android.Riskware.SmsPay.N" + }, + { + "Type": "File", + "Value": "3CF54E6E92C57B698B38FB1A7C17043A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3cf54e6e92c57b698b38fb1a7c17043a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "41E60B0824A6893AB9B00F3D2D32FF29", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/41e60b0824a6893ab9b00f3d2d32ff29", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "6B0569E10A838BF8B3714439C44272DA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6b0569e10a838bf8b3714439c44272da", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "RiskTool.HackKMS.w" + }, + { + "Type": "File", + "Value": "4C81E07EFD54D51D7C585EB905E1B911", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4c81e07efd54d51d7c585eb905e1b911", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "UnclassifiedMalware" + }, + { + "Type": "File", + "Value": "966EE6AA007C922E788FEC9ABAB17ECF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/966ee6aa007c922e788fec9abab17ecf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "B8853102F7DD96FCD9EF5450BFD0C8B5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b8853102f7dd96fcd9ef5450bfd0c8b5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F3324411B9A692A8051691318EB9ECC9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f3324411b9a692a8051691318eb9ecc9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "2259C798E892B13AB2593F1A6DB0BB35", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2259c798e892b13ab2593f1a6db0bb35", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CACFF2CB014084B07A556071A56B0492", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cacff2cb014084b07a556071a56b0492", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "7184CF5AD0443494F4AC67C850D7A717", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7184cf5ad0443494f4ac67c850d7a717", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "36C261BD25ACDD61ACB5119BE76418EF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/36c261bd25acdd61acb5119be76418ef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "A96BCCE95A0EFB2429C61DFDCE91D3A6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a96bcce95a0efb2429c61dfdce91d3a6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Adware.Heur.gen" + }, + { + "Type": "File", + "Value": "A9086923EDFCE6738D9210A61F21A6F5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a9086923edfce6738d9210a61f21a6f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Downloader.Agent.cthf" + }, + { + "Type": "File", + "Value": "F526855505FBD872D3EA1083F74046B2", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f526855505fbd872d3ea1083f74046b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9D98009DD76AC6822B9CD8A7EC261FDD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9d98009dd76ac6822b9cd8a7ec261fdd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious file" + }, + { + "Type": "File", + "Value": "439D1A9515C28226817615ADBE66C325", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/439d1a9515c28226817615adbe66c325", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "A0E13177BD14DB12D846C92F4F01F4EF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a0e13177bd14db12d846c92f4f01f4ef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Heur.RoundKick" + }, + { + "Type": "File", + "Value": "FD5E7A2E893EC5B68011E600E862FA6E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd5e7a2e893ec5b68011e600e862fa6e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2A36AB71EAF9968735A596A9E6464566", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2a36ab71eaf9968735a596a9e6464566", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "C3ABA0777F4B7416A8B50F2ADF92848A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c3aba0777f4b7416a8b50f2adf92848a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A117A96CC9F93C8491D20036C034499E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a117a96cc9f93c8491d20036c034499e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FA309EB213C3558077B67D950E885030", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fa309eb213c3558077b67d950e885030", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.bas" + }, + { + "Type": "File", + "Value": "1B34AC4F26ED8EA2CAEADCFDC334D149", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1b34ac4f26ed8ea2caeadcfdc334d149", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02B00DDE951F1DC6A01FA6F32C2542AA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/02b00dde951f1dc6a01fa6f32c2542aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "994218B7C248118810F1FA954D89BFC5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/994218b7c248118810f1fa954d89bfc5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F5E8B94F5DD4FE952DE7336DE575DE08", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f5e8b94f5dd4fe952de7336de575de08", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D168396E9DE76B2D4446B914A62A35CE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d168396e9de76b2d4446b914a62a35ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9C271FC78ED783EA1C4CE0B4C50C10E8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9c271fc78ed783ea1c4ce0b4c50c10e8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Heur.W32" + }, + { + "Type": "File", + "Value": "4EF6377B3942290CF8805CE3FA761289", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4ef6377b3942290cf8805ce3fa761289", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D7D6049B350EF47808BF6FD7BE0E5C22", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d7d6049b350ef47808bf6fd7be0e5c22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B0893D2CFEAE4B987B39F0D9297B76AE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b0893d2cfeae4b987b39f0d9297b76ae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "1775B96346D207F77759A796DAB79574", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1775b96346d207f77759a796dab79574", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8529EAEA7E1D0E70A6FE5F26DCF91AC1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8529eaea7e1d0e70a6fe5f26dcf91ac1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B6119A284BBB51099742AA3FF29E0961", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b6119a284bbb51099742aa3ff29e0961", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "0787C8D6EF69432E2433666AE4BAC379", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0787c8d6ef69432e2433666ae4bac379", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "082B417B3634FE92521A9068CBB52410", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/082b417b3634fe92521a9068cbb52410", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious file" + }, + { + "Type": "File", + "Value": "2A97ED9B74C4279534018DC516FB2BA2", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2a97ed9b74c4279534018dc516fb2ba2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F7E3B3E472693DF90E3B46AE9391B061", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f7e3b3e472693df90e3b46ae9391b061", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Crypt.lzl" + }, + { + "Type": "File", + "Value": "4903FDF6BA14515818D634D2CC9B61CC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4903fdf6ba14515818d634d2cc9b61cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bdqzc" + }, + { + "Type": "File", + "Value": "2CD579B098C95F20130ABA93E40EFF7D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2cd579b098c95f20130aba93e40eff7d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C4C9F8F247E1608DD6FF7548BE8A713", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1c4c9f8f247e1608dd6ff7548be8a713", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bkbsn" + }, + { + "Type": "File", + "Value": "719C93D8EFFE6D17163D6CCD28460535", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/719c93d8effe6d17163d6ccd28460535", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "52EBD40B4DE025AE0953F3E4FE790066", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/52ebd40b4de025ae0953f3e4fe790066", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/Parite.b" + }, + { + "Type": "File", + "Value": "B4E2B9661900FD9BBDEC7A995821CC8C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b4e2b9661900fd9bbdec7a995821cc8c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "49632F709199D34795A8F04EB5B41433", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/49632f709199d34795a8f04eb5b41433", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "38B03134470AD5DF7EBD801AE2DFA327", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/38b03134470ad5df7ebd801ae2dfa327", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Dropper.Heur.gen" + }, + { + "Type": "File", + "Value": "F17545CABC0041EAD3968B59F7C5BB8F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f17545cabc0041ead3968b59f7c5bb8f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Heur.Suspicious" + }, + { + "Type": "File", + "Value": "8766D7C63E1E045B8601C08A6F168BD0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8766d7c63e1e045b8601c08a6f168bd0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Posible_Worm32" + }, + { + "Type": "File", + "Value": "92E2763C9DB3DE168E695B82823D36BC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/92e2763c9db3de168e695b82823d36bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware.HTML.Iframe (paranoid heuristics)" + }, + { + "Type": "File", + "Value": "83FD1FC01795E7F261473DA7915D650D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/83fd1fc01795e7f261473da7915d650d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "1C68F10572EC9CA20A50B7CFA8D534C9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1c68f10572ec9ca20a50b7cfa8d534c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Behav-Heuristic-CorruptFile-EP" + }, + { + "Type": "File", + "Value": "002F050446E3E4F121C093C2C7E3E874", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/002f050446e3e4f121c093c2c7e3e874", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AEF37ACA28399FB239D41798695B8EFB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aef37aca28399fb239d41798695b8efb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D951FC3D00B9331886FA83169D7F90C7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d951fc3d00b9331886fa83169d7f90c7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "BC90A9EAE7F233CD411FCCA611B43320", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bc90a9eae7f233cd411fcca611b43320", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F7995A2848A682B4BCAEC1C0D456B083", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f7995a2848a682b4bcaec1c0d456b083", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "5907BF4F9C26A5362076820AF425C14C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5907bf4f9c26a5362076820af425c14c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "F82F1A8DABCD14B06DC51A9A3B8C4AB8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f82f1a8dabcd14b06dc51a9a3b8c4ab8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.1361FAA5" + }, + { + "Type": "File", + "Value": "65400A4FA016A216E0AA35632B1D3164", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/65400a4fa016a216e0aa35632b1d3164", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "685F931530A58E945B5AC38EA902C95A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/685f931530a58e945b5ac38ea902c95a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.AutoIt.gen.1" + }, + { + "Type": "File", + "Value": "2BEDBD1853862028E3C94CFE15B87D88", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2bedbd1853862028e3c94cfe15b87d88", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A7B3DD2EB2402175C98E760CC1EC093", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1a7b3dd2eb2402175c98e760cc1ec093", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "01275B5599CE7809008929541DBD01EB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/01275b5599ce7809008929541dbd01eb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "091F07EC37EE352CE999117CD2CA6473", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/091f07ec37ee352ce999117cd2ca6473", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "B1075BBCE1254DE8BCA7D7CA7F3B7A62", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b1075bbce1254de8bca7d7ca7f3b7a62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "485D2D808006DA15A58D4866877888EC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/485d2d808006da15a58d4866877888ec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Packed.Themida.ecpd" + }, + { + "Type": "File", + "Value": "41121BAE8792B7B48056E44F06F3CC5F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/41121bae8792b7b48056e44f06f3cc5f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "C0A442644F4961A99094CDEEF2EC1132", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c0a442644f4961a99094cdeef2ec1132", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14775FB858FE19DE842C712683908CA1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/14775fb858fe19de842c712683908ca1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "2A8A77ADFA6064F608C3056A9A37FE2A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2a8a77adfa6064f608c3056a9a37fe2a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5FEEC6ACD17578800ECECD2612D333F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c5feec6acd17578800ececd2612d333f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "00E30529A50ECE5C167084C6FEBAA24B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/00e30529a50ece5c167084c6febaa24b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5DEAF7C91C98200DD6304FAF04A27CCE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5deaf7c91c98200dd6304faf04a27cce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "996D8C2029B931BDDE7785C22A0301E8", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/996d8c2029b931bdde7785c22a0301e8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "68FD137BFF698298669DA817A1508E42", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/68fd137bff698298669da817a1508e42", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "82ABB76F206BC303AA17BBA8E3275159", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/82abb76f206bc303aa17bba8e3275159", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Packed.Klone.vdt" + }, + { + "Type": "File", + "Value": "2E10C2835728F425F6868684F77C1F72", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2e10c2835728f425f6868684f77c1f72", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D69058323165C65CC40CD72463FAF711", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d69058323165c65cc40cd72463faf711", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.01823" + }, + { + "Type": "File", + "Value": "4D14B070B54732500F16D03FEB5A5A4C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4d14b070b54732500f16d03feb5a5a4c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "4BAD471B91AA7DEC81C3C5FB3776B7F1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4bad471b91aa7dec81c3c5fb3776b7f1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CCAAA617CAAB9A88036A244C797A24CC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ccaaa617caab9a88036a244c797a24cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5A4CF9719070C75F354F29F187D52911", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5a4cf9719070c75f354f29f187d52911", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "AEF39330CB12809AEDC9B51E5A4A964C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aef39330cb12809aedc9b51e5a4a964c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "BScope.Heur.Trojan" + }, + { + "Type": "File", + "Value": "F2DCD53011FC92559BE834E11AFBDB36", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f2dcd53011fc92559be834e11afbdb36", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "A349654144E74F98C195C31848930AEA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a349654144e74f98c195c31848930aea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "E59B9FACC095845EDB047ADD2732E180", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e59b9facc095845edb047add2732e180", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C568CFCA7AA341E1B4B0AF5297CA874F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c568cfca7aa341e1b4b0af5297ca874f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "AB392E6D5735D116E7C6BE636A896AAD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ab392e6d5735d116e7c6be636a896aad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "86B3856C84D38B721FE05030FF9E23DF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/86b3856c84d38b721fe05030ff9e23df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BDA6540FA11EC5953201F256DC329739", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bda6540fa11ec5953201f256dc329739", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "70365BB0F32337A17AE5D109E2299A04", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/70365bb0f32337a17ae5d109e2299a04", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "7C45D240165F64FFC165CADAEB3DEB2B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7c45d240165f64ffc165cadaeb3deb2b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "51729746B0410D2442EDC303C4F7A0A3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/51729746b0410d2442edc303c4f7a0a3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "520DFFDA24B5D6428550FEA7ED7B54FE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/520dffda24b5d6428550fea7ed7b54fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.a.(kcloud)" + }, + { + "Type": "File", + "Value": "3CBAD48668CFE2BE993E23691D9E06A7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3cbad48668cfe2be993e23691d9e06a7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "2456179A38F2AC0CDDEFB77373331429", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2456179a38f2ac0cddefb77373331429", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Graftor.72571" + }, + { + "Type": "File", + "Value": "AC28FD3C06D9FFAADF627DE5E9CF2B89", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ac28fd3c06d9ffaadf627de5e9cf2b89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanSpy.Agent.aafg" + }, + { + "Type": "File", + "Value": "C98CBE086AFC263671563BD7D02EE1EF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c98cbe086afc263671563bd7d02ee1ef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "6B0AE7D000943EE18FB802D0D2D000B5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6b0ae7d000943ee18fb802d0d2d000b5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "7CE57C657F52420CAA31F1F29ADA4583", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7ce57c657f52420caa31f1f29ada4583", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B8BFE8B4472D65E12B4AD8CA46E69722", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b8bfe8b4472d65e12b4ad8ca46e69722", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "LNK.Exploit.Cpl.Gen" + }, + { + "Type": "File", + "Value": "075D0834D9C95A3AB80FAA923319A0D5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/075d0834d9c95a3ab80faa923319a0d5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.VBKryjetor.bua" + }, + { + "Type": "File", + "Value": "FB08D612A2F10D23C655F50E417D41EC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fb08d612a2f10d23c655f50e417d41ec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "78BDC0B807BE534D83384FC656C6FF56", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/78bdc0b807be534d83384fc656c6ff56", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "FD4FA2D821711E5B0263F9BD8C231C71", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd4fa2d821711e5b0263f9bd8c231c71", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C9AB51E16E350E6E7D695E8DDBF283C6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c9ab51e16e350e6e7d695e8ddbf283c6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "2D47FE8C368097D8704DBF3EE56DEE5D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2d47fe8c368097d8704dbf3ee56dee5d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/Trojan.97a" + }, + { + "Type": "File", + "Value": "CE98D59288A0780B245FA83F5F2DBC23", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ce98d59288a0780b245fa83f5f2dbc23", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "9C3870411E4942EF5CF2EA4219CE4BEE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9c3870411e4942ef5cf2ea4219ce4bee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.18837730" + }, + { + "Type": "File", + "Value": "13945FE1C1E11F471CECC8523FC30CB1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/13945fe1c1e11f471cecc8523fc30cb1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "29F09912210DDF1CDE24CF2D798614B4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/29f09912210ddf1cde24cf2d798614b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "87B1E8183AB87E6159D047A45B1409F4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/87b1e8183ab87e6159d047a45b1409f4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Agent.ac.(kcloud)" + }, + { + "Type": "File", + "Value": "0E05CF9CA931A8D05DE039CE29BD4B98", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0e05cf9ca931a8d05de039ce29bd4b98", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "774D04DE2299D6D4A4002BB1683BDA5D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/774d04de2299d6d4a4002bb1683bda5d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "BB15AEF7AF5D6145494105A5C9D09F2F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bb15aef7af5d6145494105a5c9d09f2f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Agent-AUFX" + }, + { + "Type": "File", + "Value": "0787EF42765B59F5A1E37277503195EF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0787ef42765b59f5a1e37277503195ef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7F03BDB5D46BC97979964770222B5DE5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7f03bdb5d46bc97979964770222b5de5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F4DFDF52FE123F852D15220EFEC79144", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f4dfdf52fe123f852d15220efec79144", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Packed.Themida.ecpd" + }, + { + "Type": "File", + "Value": "32B13920FF244E65B2D493A760F45406", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/32b13920ff244e65b2d493a760f45406", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "DC40681FEF3D38ED92B98A936FBB6A2E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dc40681fef3d38ed92b98a936fbb6a2e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "C1523FD9F20C358EEEA13F017FE1F830", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c1523fd9f20c358eeea13f017fe1f830", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "5A027B481E94982D4C3C16529E025622", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5a027b481e94982d4c3c16529e025622", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1BDABA51BBE3D65014313FB99416B970", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1bdaba51bbe3d65014313fb99416b970", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D26A64777A206DE874D6A3FBB1B2502A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d26a64777a206de874d6a3fbb1b2502a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "58BD0845B002E086D1FA6512BFF96329", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/58bd0845b002e086d1fa6512bff96329", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic Backdoor" + }, + { + "Type": "File", + "Value": "D1B1AD3B2CFABD41072A336B9D7F3BDC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d1b1ad3b2cfabd41072a336b9d7f3bdc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "7D4DF6B45203ED44C619357197C4A310", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7d4df6b45203ed44c619357197c4a310", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Blocker.nji" + }, + { + "Type": "File", + "Value": "2060BEDF79F8B5959B243812D2B17306", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2060bedf79f8b5959b243812d2b17306", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "D700CA1FC013C9706DACC1D818746702", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d700ca1fc013c9706dacc1d818746702", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DD330712CA75EB433A42285C6CBF7257", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dd330712ca75eb433a42285c6cbf7257", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9F795E246C12B5F641BBCC3241AD2490", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9f795e246c12b5f641bbcc3241ad2490", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C9D4A656535AA0A11C1ADBDEE24C9CAA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c9d4a656535aa0a11c1adbdee24c9caa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "7C435081D621DAC0AE003E1A9A6F602D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7c435081d621dac0ae003e1a9a6f602d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.clmh" + }, + { + "Type": "File", + "Value": "6B3DD94A1AD0C1448A6A5922A158281C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6b3dd94a1ad0c1448a6a5922a158281c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "842319BBCE8F98CDE5D07C4398BA2A92", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/842319bbce8f98cde5d07c4398ba2a92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "866AD30308913C4E7B04D11B1A3E92DE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/866ad30308913c4e7b04d11b1a3e92de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "18FEE4796EDBD5B746D7C4411BE0B18D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/18fee4796edbd5b746d7c4411be0b18d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "3856A7208C90DFAA4C7FECEF6C9D426C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3856a7208c90dfaa4c7fecef6c9d426c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "731602BA40EC24BDF3F1A26811C99228", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/731602ba40ec24bdf3f1a26811c99228", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "38ECBE43FC6EF86949185D9B30E96ED0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/38ecbe43fc6ef86949185d9b30e96ed0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Graftor.72571" + }, + { + "Type": "File", + "Value": "43441F189A834E01E2C3CAAF8E770FDF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/43441f189a834e01e2c3caaf8e770fdf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E6D2398DC43B3BC120C0E0AEB4DD312", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0e6d2398dc43b3bc120c0e0aeb4dd312", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "0488C46875BF7DF0625BE874FC2514B2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0488c46875bf7df0625be874fc2514b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Heur2.dd" + }, + { + "Type": "File", + "Value": "BDFBAF01F771AC1C487CCD5FC90AD6DE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bdfbaf01f771ac1c487ccd5fc90ad6de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C185CFA9B00262080B685F8FF5B5A81", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0c185cfa9b00262080b685f8ff5b5a81", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "48AC7E3A3FB327509BC60CF414EC84C4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/48ac7e3a3fb327509bc60cf414ec84c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH008.a.(kcloud)" + }, + { + "Type": "File", + "Value": "81BAC043927B19303DFC79F4F5C4481C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/81bac043927b19303dfc79f4f5c4481c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "154DB760D4F7F4FDF02C2E1526B83592", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/154db760d4f7f4fdf02c2e1526b83592", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "3050FC2C3E5B6457269279055B43C317", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3050fc2c3e5b6457269279055b43c317", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA8A62E4F0CF494829DE90D3B1439B9A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ba8a62e4f0cf494829de90d3b1439b9a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.cbyt" + }, + { + "Type": "File", + "Value": "DDEE819D3FFABD4E17141646907CDFA5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ddee819d3ffabd4e17141646907cdfa5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "2FD093D014C8A6940931407C5377E677", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2fd093d014c8a6940931407c5377e677", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "31902A5928E9C8869FF0ACB032BB5780", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/31902a5928e9c8869ff0acb032bb5780", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "78FC4ED7C97E7595D11E03AB59A95295", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/78fc4ed7c97e7595d11e03ab59a95295", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "A33FEB9F3488C7830C525322A7016B89", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a33feb9f3488c7830c525322a7016b89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "55265649D708B0ACB187A248DEE23290", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/55265649d708b0acb187a248dee23290", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DFFB7362518D23D85CC18E01A6296D69", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dffb7362518d23d85cc18e01a6296d69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "[Suspicious]" + }, + { + "Type": "File", + "Value": "AFBAB7772F8A8569F4F4A439890D8364", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/afbab7772f8a8569f4f4a439890d8364", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2C4DCF814AB7F37E281E0E64F35A85DA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2c4dcf814ab7f37e281e0e64f35a85da", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojWare.Win32.VB.baur" + }, + { + "Type": "File", + "Value": "EC5322398255CC09A28072EB022D9239", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ec5322398255cc09a28072eb022d9239", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDDoS.Linux.cb" + }, + { + "Type": "File", + "Value": "F8E9E4D3F57759B21BD2D1EAAA2126B3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f8e9e4d3f57759b21bd2d1eaaa2126b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Redosdru.C" + }, + { + "Type": "File", + "Value": "C12CA22900BE7E4F4F1D91C67AF9038C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c12ca22900be7e4f4f1d91c67af9038c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Variant:Trojan.Dropper.Agent.Cqln" + }, + { + "Type": "File", + "Value": "1ADC35F238FD31CD79B5F15C50AEEC68", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1adc35f238fd31cd79b5f15c50aeec68", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "CCAC833B321003EC72F37799CCA91A20", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ccac833b321003ec72f37799cca91a20", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "4B12DC9EAC6A43FB35414003119CB780", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4b12dc9eac6a43fb35414003119cb780", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C49A8DAB1B3A5DC1FF9EB2E600608D48", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c49a8dab1b3a5dc1ff9eb2e600608d48", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "631E8C23165FA225AFD574FAC7E44C34", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/631e8c23165fa225afd574fac7e44c34", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "535117193EBE50FC4BA3D597C79662AA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/535117193ebe50fc4ba3d597c79662aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "B1D87D3E1355F104A87A551E57BB59AF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b1d87d3e1355f104a87a551e57bb59af", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B5977BCD30CF9F3777914F81F0413546", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b5977bcd30cf9f3777914f81f0413546", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Adware.Heur.gen" + }, + { + "Type": "File", + "Value": "470DF339806C61CCFE30BDB39079DF99", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/470df339806c61ccfe30bdb39079df99", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Strictor.85142" + }, + { + "Type": "File", + "Value": "6648E291B2D377E0326A968F57EB0982", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6648e291b2d377e0326a968f57eb0982", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Vilsel.abet" + }, + { + "Type": "File", + "Value": "2341E11DBF78CC9547A71808D9B38C24", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2341e11dbf78cc9547a71808d9b38c24", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "RiskTool.ProcPatcher.dh" + }, + { + "Type": "File", + "Value": "58E75A0A89FD913666B0462472F7999F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/58e75a0a89fd913666b0462472f7999f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "6383847572EEF995C893F6D54E4A867F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6383847572eef995c893f6d54e4a867f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1D8FC50FEA24D88AD5CCECFDEC1DFBE1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1d8fc50fea24d88ad5ccecfdec1dfbe1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Genome.ai" + }, + { + "Type": "File", + "Value": "80163C9D3B8AEF4B819DB0E1A7F47F1F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/80163c9d3b8aef4b819db0e1a7f47f1f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "24949B50A99FF77820BFAEB385A05586", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/24949b50a99ff77820bfaeb385a05586", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojWare.Win32.Trojan.XPACK.Gen" + }, + { + "Type": "File", + "Value": "42FE6A8A20E304C35A01AF289EA3FAE8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/42fe6a8a20e304c35a01af289ea3fae8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "6B711650333ECCBE11D5FBCCFABA3A46", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6b711650333eccbe11d5fbccfaba3a46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F137E49F565BE94E5461C7C5F730D744", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f137e49f565be94e5461c7c5f730d744", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "9B143FBE3E4DA16BC4D7E0AF35F0A722", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9b143fbe3e4da16bc4d7e0af35f0a722", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "542C84FDC09E70AFF29EE3F436B7FC7D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/542c84fdc09e70aff29ee3f436b7fc7d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm.Win32.Dropper.RA" + }, + { + "Type": "File", + "Value": "0C36E3272344ABED4D71C931B94776ED", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0c36e3272344abed4d71c931b94776ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9904A69F2EC8559DEBECC76F668FCDC4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9904a69f2ec8559debecc76f668fcdc4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "F7861AAB076F7CA8C42AFB58109A29A1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f7861aab076f7ca8c42afb58109a29a1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "20E787218110D4A81EAD7B34BEBEF6D2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/20e787218110d4a81ead7b34bebef6d2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Backdoor.Heur.gen" + }, + { + "Type": "File", + "Value": "986AE7E307599064D2738C3F466C46F5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/986ae7e307599064d2738c3f466c46f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Dropper.Heur.gen" + }, + { + "Type": "File", + "Value": "086201E7EA955E7BBCCD1A6903539983", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/086201e7ea955e7bbccd1a6903539983", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F336165A318A826D7663FAA0A51A8B87", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f336165a318a826d7663faa0a51a8b87", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic Trojan" + }, + { + "Type": "File", + "Value": "9A94FCDC668AB2EBB13885B558B73C89", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9a94fcdc668ab2ebb13885b558b73c89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "C640BC9D64B98419748BA725B95EE459", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c640bc9d64b98419748ba725b95ee459", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "DE73F04DD3706A858A1F6714087DEDE7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/de73f04dd3706a858a1f6714087dede7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7079C60DDC2FBB3040D8FC7F4B0128E3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7079c60ddc2fbb3040d8fc7f4b0128e3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "E39715792AB5C42D6A8F8AD8CB24A051", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e39715792ab5c42d6a8f8ad8cb24a051", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "682D520CFBF983A45B8CBBDDA76584C4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/682d520cfbf983a45b8cbbdda76584c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "C955497ECBD554638836DF729DC9A8D0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c955497ecbd554638836df729dc9a8d0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware.UDM!4998" + }, + { + "Type": "File", + "Value": "ADD02498E26EEE6B5B50CE5DCEEBDC65", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/add02498e26eee6b5b50ce5dceebdc65", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7378F57C3A6BA4C179EAA098955B4A96", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7378f57c3a6ba4c179eaa098955b4a96", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6FD2DA8C3AC68BA51AF6826F8A4B90C0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6fd2da8c3ac68ba51af6826f8a4b90c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bbken" + }, + { + "Type": "File", + "Value": "845D48C0C8BBA40DBF0A72C02CE103DE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/845d48c0c8bba40dbf0a72c02ce103de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Exploit.Java.bku" + }, + { + "Type": "File", + "Value": "4689D3F89369DC7CD379D8F0255F3CFB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4689d3f89369dc7cd379d8f0255f3cfb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D12F07FF9E093E47651EA5EB4CA9A6A2", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d12f07ff9e093e47651ea5eb4ca9a6a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D3120F60E1BB9608F878EDC51782D7D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4d3120f60e1bb9608f878edc51782d7d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "3FA8C0F7EC6C00CC7E415E1BD4CDF9ED", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3fa8c0f7ec6c00cc7e415e1bd4cdf9ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FE78F1E9C53F226F56F44DB3FD7C6618", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fe78f1e9c53f226f56f44db3fd7c6618", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.PSW.QQPass.ib" + }, + { + "Type": "File", + "Value": "1E935302A2129D594ECC60BAECD836C5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1e935302a2129d594ecc60baecd836c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FE50491B74B4180DB7BA4CA7599815E3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fe50491b74b4180db7ba4ca7599815e3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Android.Riskware.Dropper.AM" + }, + { + "Type": "File", + "Value": "7725768659F076F65BF8010703105A77", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7725768659f076f65bf8010703105a77", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E5461DC9BF8840BF1B7F0CDB50BB222F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e5461dc9bf8840bf1b7f0cdb50bb222f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A06B5ECBFE9F64F049965E9F0A86230", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1a06b5ecbfe9f64f049965e9f0a86230", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Barys.8318" + }, + { + "Type": "File", + "Value": "0E41F3EF1767AEA75F42B248AF98ACA8", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0e41f3ef1767aea75f42b248af98aca8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D62470997961095F8F6A3C688EB27966", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d62470997961095f8f6a3c688eb27966", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07CD7D97FA4B79E186F82E29CD19FFFB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/07cd7d97fa4b79e186f82e29cd19fffb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "486440F8757AB8F81B708B00C5EA2AA0", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/486440f8757ab8f81b708b00c5ea2aa0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "67FC0E97A04405527F4850109FFEE1AD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/67fc0e97a04405527f4850109ffee1ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanSpy.Agent.zxz" + }, + { + "Type": "File", + "Value": "1783BFC7D2F130C1F3C431D4D9EF146B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1783bfc7d2f130c1f3c431d4d9ef146b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "39F8B04352EE18B14711AD81C0E8F617", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/39f8b04352ee18b14711ad81c0e8f617", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "BD0AAB53B87DA5144D727A78BAE20E3E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bd0aab53b87da5144d727a78bae20e3e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "24054E426C586042AFC856DDC130BDD5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/24054e426c586042afc856ddc130bdd5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Trojan.QQTen.NAN.vmge.mg" + }, + { + "Type": "File", + "Value": "27306AE3B43D2B20D5A05F0CD89FBB47", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/27306ae3b43d2b20d5a05f0cd89fbb47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "30AE7FD80F137DD0A7E034D16ACB9B22", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/30ae7fd80f137dd0a7e034d16acb9b22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "260C90F14B780533DC9A454CB5CCDA69", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/260c90f14b780533dc9a454cb5ccda69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B3788D6AF07616B47377D55D3F4F7B5E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b3788d6af07616b47377d55d3f4f7b5e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "7A180DEB8DDF16A0FB806EC78DB1A92F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7a180deb8ddf16a0fb806ec78db1a92f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Android.Adware.Youmi.A" + }, + { + "Type": "File", + "Value": "7B5C2AD7E45B99BE26E66F090433BE13", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7b5c2ad7e45b99be26e66f090433be13", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3B8B0A2C1F618C604F139C249BCF2D99", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3b8b0a2c1f618c604f139c249bcf2d99", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9AE02959C7B5D78109738FB8BB02CB1F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9ae02959c7b5d78109738fb8bb02cb1f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "3FCF7FD0D16A6FF3FD731D9DC0AC20DD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3fcf7fd0d16a6ff3fd731d9dc0ac20dd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "859C3CDB035FE72D1A4996B6CBB3DF91", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/859c3cdb035fe72d1a4996b6cbb3df91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.fgmp" + }, + { + "Type": "File", + "Value": "89F096218F42CA95D684E7E877C89B84", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/89f096218f42ca95d684e7e877c89b84", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "050178AD5AAF958CBCCF5A6F0C7BB9E8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/050178ad5aaf958cbccf5a6f0c7bb9e8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Trojan.Heur.RP.HEW@a4!VmPf" + }, + { + "Type": "File", + "Value": "93F679CC2AD3C7290B7F2FB3F9A31F3E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/93f679cc2ad3c7290b7f2fb3f9a31f3e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.01798" + }, + { + "Type": "File", + "Value": "B6AF1B60829FC459FA06974C373D8991", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b6af1b60829fc459fa06974c373d8991", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8DBB07CE3B50307E507BF6ACCD675EAC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8dbb07ce3b50307e507bf6accd675eac", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Lastsect_unkn!Eldorado" + }, + { + "Type": "File", + "Value": "1D79288FC248AC4BD995F1A763C9B31A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1d79288fc248ac4bd995f1a763c9b31a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "72B41AD47D570CEFD8848E0B3944791A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/72b41ad47d570cefd8848e0b3944791a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "E14C828728F87F19538F9E643AF4877E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e14c828728f87f19538f9e643af4877e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "CF1FC8CFFA840471E2A936D74CE60152", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cf1fc8cffa840471e2a936d74ce60152", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "60DFFA1C47A12F1CEBA44E0F61E5F6E1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/60dffa1c47a12f1ceba44e0f61e5f6e1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Trojan.Heur.JP.vuY@aGC9vCoi" + }, + { + "Type": "File", + "Value": "488BDFF5E0B20F11850CC04DFC65F80C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/488bdff5e0b20f11850cc04dfc65f80c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/Nbdd.ph" + }, + { + "Type": "File", + "Value": "BDADBCB81CE9B849FD3C118DAEF3EB5D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bdadbcb81ce9b849fd3c118daef3eb5d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "BCB2792F253976E054F11EE1677A426D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bcb2792f253976e054f11ee1677a426d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Generic.zvy" + }, + { + "Type": "File", + "Value": "A53F68D0467AA5E2B375019B08576AFC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a53f68d0467aa5e2b375019b08576afc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic.v.(kcloud)" + }, + { + "Type": "File", + "Value": "A20106FB4F545EAA8348B25773F5EEAD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a20106fb4f545eaa8348b25773f5eead", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.PSW.Agent.ne" + }, + { + "Type": "File", + "Value": "FD28D371B858011279549DE472264B58", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd28d371b858011279549de472264b58", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02EE5E20F25A596110C10800A24EF759", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/02ee5e20f25a596110c10800a24ef759", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "83632682C76A242BDF6BF381E8CC3D9B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/83632682c76a242bdf6bf381e8cc3d9b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "530B8EAF7230CBEA874EB2B47E635AC9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/530b8eaf7230cbea874eb2b47e635ac9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "511B24E450B61E421163E6D4874A7E00", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/511b24e450b61e421163e6d4874a7e00", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Vilsel.abet" + }, + { + "Type": "File", + "Value": "1653F8D10701945C2DBE944C3D075CB1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1653f8d10701945c2dbe944c3d075cb1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "BC53767607F1ECB9970161214C0D7316", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bc53767607f1ecb9970161214c0d7316", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "5FA2A2B0E55949CD5C078D5DC104B1D8", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5fa2a2b0e55949cd5c078d5dc104b1d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DB259FC64FFD1558F6B3A90FA1310697", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/db259fc64ffd1558f6b3a90fa1310697", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "AdWare.OSX.Adware" + }, + { + "Type": "File", + "Value": "2D10465DE8990D8EB6496BDDDE18458D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2d10465de8990d8eb6496bddde18458d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1B16DABC6347C0A80ACAE6CFFFB1E438", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1b16dabc6347c0a80acae6cfffb1e438", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic" + }, + { + "Type": "File", + "Value": "884339055D77119E8D41256902A1C7B3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/884339055d77119e8d41256902a1c7b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D45651AC99AFACCACB0F87B649BCA7F6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d45651ac99afaccacb0f87b649bca7f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "DCECF626E1EECFD471B84AE06AC16D43", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dcecf626e1eecfd471b84ae06ac16d43", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0CBB6ED136BFE3C088E9D2494F202CD2", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0cbb6ed136bfe3c088e9d2494f202cd2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "61098E7F2E0907D4D83DD1D419EF3BE6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/61098e7f2e0907d4d83dd1d419ef3be6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH015.a.(kcloud)" + }, + { + "Type": "File", + "Value": "B8870EB421E3DCB91E21AB2D3ACFD54E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b8870eb421e3dcb91e21ab2d3acfd54e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C92871860A1E090CD86854106E0A279B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c92871860a1e090cd86854106e0a279b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "D7C74D2ADFAC5EDBE2D6C71CD7AD15ED", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d7c74d2adfac5edbe2d6c71cd7ad15ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Packed.Confuser.B.bwyn.mg" + }, + { + "Type": "File", + "Value": "7907E005445409B2C80572E05BCC041A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7907e005445409b2c80572e05bcc041a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "C72A2D3C7A89E2241A6525547C6EB4CA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c72a2d3c7a89e2241a6525547c6eb4ca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "75D1CDEEA41758A12528A804AC6A238E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/75d1cdeea41758a12528a804ac6a238e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm/Carrier.yi" + }, + { + "Type": "File", + "Value": "5C388EDA36BEDF0E6696FAA6C963C589", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5c388eda36bedf0e6696faa6c963c589", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.PHP.WebShell" + }, + { + "Type": "File", + "Value": "227083933864A546E4F2F98937F62B7D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/227083933864a546e4f2f98937f62b7d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "B313DD9DD5D9E3ED7CD797A3B833AA1E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b313dd9dd5d9e3ed7cd797a3b833aa1e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "98A959B8C786052DE4A236C7FBBE89F0", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/98a959b8c786052de4a236c7fbbe89f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "39A000675C403407B35722AEEE2C1014", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/39a000675c403407b35722aeee2c1014", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Aksula.A" + }, + { + "Type": "File", + "Value": "ED7C3F1127293E24A4AFF96897378A0E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ed7c3f1127293e24a4aff96897378a0e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "833245671A443FD91027948851AD88FC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/833245671a443fd91027948851ad88fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:TrojanPSW.Agent.NFX.ycwh.mg" + }, + { + "Type": "File", + "Value": "83CD49CA0271EA9A36B85EC960E20052", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/83cd49ca0271ea9a36b85ec960e20052", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "92DDA1BA754FCFFCFB2F2CE4E6EEAE41", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/92dda1ba754fcffcfb2f2ce4e6eeae41", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "28500A0DBD0175AE13BFAAA7A375FF34", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/28500a0dbd0175ae13bfaaa7a375ff34", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.pak!cobra" + }, + { + "Type": "File", + "Value": "77C5A4E7C7D64E4637C19639339EDA2B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/77c5a4e7c7d64e4637c19639339eda2b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Mikey.35011" + }, + { + "Type": "File", + "Value": "500D8C9177DE43D3A5F4E98D4C904449", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/500d8c9177de43d3a5f4e98d4c904449", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "F02B68DDA2A9E65BEDD496E0E0FDE4FE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f02b68dda2a9e65bedd496e0e0fde4fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "A83E24502034823415572E12574449CF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a83e24502034823415572e12574449cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2E7298E1A66B47B7BB3ABF4AE81F213F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2e7298e1a66b47b7bb3abf4ae81f213f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F7B2FF37119D2D18F8006BD40A7DBF06", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f7b2ff37119d2d18f8006bd40a7dbf06", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Generic.afel" + }, + { + "Type": "File", + "Value": "018B25F3D70A9ABCE8405D39D92C8F77", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/018b25f3d70a9abce8405d39d92c8f77", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "857EE9206F8DAFB22473C630340961BF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/857ee9206f8dafb22473c630340961bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Porn-Tool.Agent.lg" + }, + { + "Type": "File", + "Value": "63D11E4DD9E77CFE9DB0F61794F65EC5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/63d11e4dd9e77cfe9db0f61794f65ec5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "4A98F185E7E7ACA9090328ADE1A0FF18", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4a98f185e7e7aca9090328ade1a0ff18", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "68976F568B8B51F6FCF948802BEDFF2E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/68976f568b8b51f6fcf948802bedff2e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19F8B9244324222F68F62FA0782B5429", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/19f8b9244324222f68f62fa0782b5429", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanSpy.Agent.zxz" + }, + { + "Type": "File", + "Value": "4046C17B7B1D6E6034E9F7FAA8451D31", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4046c17b7b1d6e6034e9f7faa8451d31", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "DCCDDB214071B008C38C8AC38FB68775", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dccddb214071b008c38c8ac38fb68775", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "31508140D999495D3E1ECE6897EE3C13", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/31508140d999495d3e1ece6897ee3c13", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.HTML.Ramnit.A- archive" + }, + { + "Type": "File", + "Value": "5782819C59D41381B3BC8EFC15EEED20", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5782819c59d41381b3bc8efc15eeed20", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Genome.aypb" + }, + { + "Type": "File", + "Value": "891FF11E16F8A9153BAC6E71068BEADC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/891ff11e16f8a9153bac6e71068beadc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3FAC8339A5FAFA2E6BC54B0555F6AE37", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3fac8339a5fafa2e6bc54b0555f6ae37", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "76CF59D775EDDDADD219531C88986CCB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/76cf59d775edddadd219531c88986ccb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E77E277C9175FDA43F28355939137377", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e77e277c9175fda43f28355939137377", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "811188188D7E35E7C252FAEC2589712F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/811188188d7e35e7c252faec2589712f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F5A2223708C50C7B7FB7D0A39D3DA3FE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f5a2223708c50c7b7fb7d0a39d3da3fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "06103E19A39B50AA7C45AC83B05E0B07", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/06103e19a39b50aa7c45ac83b05e0b07", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A5CBB177A6DBFF86ADC84C8B8760CA22", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a5cbb177a6dbff86adc84c8b8760ca22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "F6D0C1766A38132F38C945D1A19103D8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f6d0c1766a38132f38c945d1a19103d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "AA66B09FEC85169DE182964B745805FB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aa66b09fec85169de182964b745805fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "DEA0FFF40438A983CEC5F44E4BB31B13", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dea0fff40438a983cec5f44e4bb31b13", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3E45CB1C4399F0157248AEB79DF25E65", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3e45cb1c4399f0157248aeb79df25e65", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "DB4472F2DB48EF3CA1BC4D91DEA094EB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/db4472f2db48ef3ca1bc4d91dea094eb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "B509DD32CE0FFD4F027AF74FCD0213DF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b509dd32ce0ffd4f027af74fcd0213df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "21A2EAE8A619A4FA04B94CB5D49F80AD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/21a2eae8a619a4fa04b94cb5d49f80ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/Hupigon.bwfz" + }, + { + "Type": "File", + "Value": "7377B9E6B63326A9F6D4E4A7C18EEA0F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7377b9e6b63326a9f6d4e4a7c18eea0f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "02D8BCC1C4C3BD2C6C6F8CC3E49C4503", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/02d8bcc1c4c3bd2c6c6f8cc3e49c4503", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "BE8B23CF9FCDE34DD9F9CFF8A1EF5013", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/be8b23cf9fcde34dd9f9cff8a1ef5013", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "DBCB60AA10D8F563B9C064584959BDAE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dbcb60aa10d8f563b9c064584959bdae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "35E2DB8452F8AEC616F553687FBC2BBD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/35e2db8452f8aec616f553687fbc2bbd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "4F3B3B94140DE36794B45E4AF7B244AE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4f3b3b94140de36794b45e4af7b244ae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3DD0FF4C846BF6A6B467FD10A3DDCA2B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3dd0ff4c846bf6a6b467fd10a3ddca2b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "86709BF3CBDF497DCC23DB251B5F9854", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/86709bf3cbdf497dcc23db251b5f9854", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Adware-gen" + }, + { + "Type": "File", + "Value": "CB6F05D6DB546B9E3D7966713F70DEEF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cb6f05d6db546b9e3d7966713f70deef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "E3C211828C87D8B5C95856E32D19EF65", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e3c211828c87d8b5c95856e32d19ef65", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3171D32AAB6A8F3B5EB299349EAE22E8 : E5609E186EB60150D5574E1C343CFCD491686B44 : 60CB2CB1323096899AC02E498949AB1E202D59D491539D8A52C3F9FFBF067D56", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/60cb2cb1323096899ac02e498949ab1e202d59d491539d8a52c3f9ffbf067d56/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D4C74B1A5EE8E5D76B5F9DDF48DF6470 : AEB0DAF810BFBDBCF2CAA4DC7F78771BC97FB17C : 2A7CD30B1AD2A231D194541157DC6A286C43D8BC5D2210C19FDA4EC7A071E207", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2a7cd30b1ad2a231d194541157dc6a286c43d8bc5d2210c19fda4ec7a071e207/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "96BFEC46ACA552E19C274DD45EDAACB3 : 480F3CCDB5971BCE0033403E4E2A79B6810D1DEB : C680F6FD7BE34CBD33B700ACEC414C6057651D305B6609EDB61E709831FEC22F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c680f6fd7be34cbd33b700acec414c6057651d305b6609edb61e709831fec22f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "CE6F39B8F75AAC9614150A776F404819 : 77A6A3823156D0A84C920834C2E29CBD03DCCD62 : BC1D6CE941CAB4749202618709D1DF206B748C1D490F0CF980776A0D7147A98C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bc1d6ce941cab4749202618709d1df206b748c1d490f0cf980776a0d7147a98c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B1AB42AE893F255F063CBF704F9D88D6 : E6B533AD2D673FE844B9E23E40970D8F3C070298 : 7239C7DB3E440D6910F7536C7B6EAB5690AEFB61CBE65566DFB6FCE2EA23777E", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7239c7db3e440d6910f7536c7b6eab5690aefb61cbe65566dfb6fce2ea23777e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C24AA6640CBC5B98F9899533AE1403BB : 757E43CE0621D15E58A2B78095C27554B82ADFB8 : 8A275B1ABFD853F4E7EE7D362FE5AC8916AAD44EB6FE0DA29D2F3EA5A4C6ACC4", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8a275b1abfd853f4e7ee7d362fe5ac8916aad44eb6fe0da29d2f3ea5a4c6acc4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4C2620D8827BF4DE93ED47DFE0A70F9B : 6FFB5D0B7EEE3F60F7D9331EE5900A8D3344DFDD : 27CA3E26212FAB1B26C483A6204F095C7FBBED287511C9531CAD6ABB8B3E2147", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/27ca3e26212fab1b26c483a6204f095c7fbbed287511c9531cad6abb8b3e2147/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B732CC6D2437612BE04126A4CD5548AC : 4C6D6BD2C6726BCACCD1FF0FB82EFB822D774CA3 : 94915CBF1DF8C8165F9192F9F3161A1DA2625890FBF69C463FD1040BB5B69093", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/94915cbf1df8c8165f9192f9f3161a1da2625890fbf69c463fd1040bb5b69093/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BA5D4F65279522F8D0D9BBBD8F246204 : A1FDEC5E2D9B19DF0E7DA4A2313822BC6817B861 : 3984E8785089FF9863BCA7583EE7812BCE58EB9243D47B151247F57BBABC8B5B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3984e8785089ff9863bca7583ee7812bce58eb9243d47b151247f57bbabc8b5b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1201704DD896E65AE11A823487CBBC23 : 548D4E26734316EC8FD48739C933E83C441BC03C : 0CAFC21994FE5FBE30BCEA730A0772241E25E479B0ABE375CB8EDF1565A8E653", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0cafc21994fe5fbe30bcea730a0772241e25e479b0abe375cb8edf1565a8e653/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "HW32.Packed" + }, + { + "Type": "File", + "Value": "5025942EED2A43DF7C7CEF45BB5BE036 : AC5AA23739BC3D7A8ED3967CC89A6183DE3BFF21 : 754E699364F648E90AD5C7B5EE700A262345759FD1CAC14927136D2C62878F58", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/754e699364f648e90ad5c7b5ee700a262345759fd1cac14927136d2c62878f58/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FF3243B9ED207781232CF6868FFF780F : CA50D7EF961B5C6371D7B189BAE42013C94616D9 : D1DFFBB9BFF80AF672F41F976FA5F5DB80F030FAF4F5C2711F6E0ED3B3044571", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d1dffbb9bff80af672f41f976fa5f5db80f030faf4f5c2711f6e0ed3b3044571/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8AAAEE8D6C46EB4EADFFE941C12FCA2A : C69173E59A612D033FC904DBAAFFD908B68999DF : ACFF01BDE041C78AFF3010EE98C2D108D4DEF08684131850CFEC9B16DAA818C7", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/acff01bde041c78aff3010ee98c2d108d4def08684131850cfec9b16daa818c7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8951A68BEE38DECA62A7817C84C82BFC : 54AA05BB371375BFA513FD95ED8EB4490F8E7059 : FA8FFED146658FE92862E76E5C34AC67777C3D0EEC004D9EC60B6B6D5109F478", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fa8ffed146658fe92862e76e5c34ac67777c3d0eec004d9ec60b6b6d5109f478/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C572083080824AC98A8119370BA78074 : D34550B6A06B6F3825DD681FC0B4B5FC201E243C : 95ABD127A9730B98F68E56B6B7574DCC59E9244524A2F6BDBECA20C9678EFB7A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/95abd127a9730b98f68e56b6b7574dcc59e9244524a2f6bdbeca20c9678efb7a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "A0165D58F51AE45D3458BF88B9A7D8D1 : D3EDE7A81F5676915EE94D787DDB8107977B538F : F8B20C8C93288B3F42613A94DD1987A9C4F0254618FD346BF2FC7074F6AD9FDF", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f8b20c8c93288b3f42613a94dd1987a9c4f0254618fd346bf2fc7074f6ad9fdf/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F64DC1FB384EACD338BCEDF90D3E4D9D : D1FB3AAD2EBDC57022A5E1B794B7E36BE2B61BE0 : 63C6D056B1408E93BFA9426A0FB61E240F1AD0B0B6F619CA892AD99C25F45EA9", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/63c6d056b1408e93bfa9426a0fb61e240f1ad0b0b6f619ca892ad99c25f45ea9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "683BECC76691F61166703E346A2F615B : 04321216481D9D330932E72CD341551E01C6B13D : 6AA94015C86E8D924F632414E24570A788B77B1863C02A270EE7522DF0C54D9D", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6aa94015c86e8d924f632414e24570a788b77b1863c02a270ee7522df0c54d9d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Variant.Kazy" + }, + { + "Type": "File", + "Value": "348A1967F2F1A5970FF3A8C014026DF0 : A7D1630F0520675363F0B2FD12AC6F2A8EC67FBD : A47400C2111603EE3DB72BB4B0EBC040C5F881A6B73FFD064BB6B0C8C64638FA", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a47400c2111603ee3db72bb4b0ebc040c5f881a6b73ffd064bb6b0c8c64638fa/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C070ACD365E2B3FB37C37DE35013917E : 24DCD675DCE35730DFA4857F53B3DE64366DA6DF : 8156EEF2F501AAA0DBB337F238111C1A37D998050A62F6A7E560E25831B810AE", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8156eef2f501aaa0dbb337f238111c1a37d998050a62f6a7e560e25831b810ae/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8F81B0400CE17A2AF424803EEAAA549D : C6C9BD2E3214EE39E71C839F7852EE84A93374B3 : 3935173BC0B9A6498B73B1242383C8C03E04CD57D7672A1B7B9D69FFD74A79C6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3935173bc0b9a6498b73b1242383c8c03e04cd57d7672a1b7b9d69ffd74a79c6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "77F567D54605EFF8151680983C689E27 : 5B9EE0F9886A90862C7D16E2D69B349441948A31 : 43F8EABBCE92E28FF9E27DF24B261A8EBDF4869510A5C3CF3EC36412F9B339A6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/43f8eabbce92e28ff9e27df24b261a8ebdf4869510a5c3cf3ec36412f9b339a6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "JS:Trojan.JS.Downloader" + }, + { + "Type": "File", + "Value": "3EB88FC86FED46DAD8EF14BF7C919457 : E69FE5337E9E1A1D9137934AA81BE99F3BDF4AF4 : 7DA536EA7241E656CDA1FE629384CAF4C5C2CE206CDE6E267B01D8D347DC4E81", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7da536ea7241e656cda1fe629384caf4c5c2ce206cde6e267b01d8d347dc4e81/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "FF1F795BB4C2FBF1BD49F2CD54535A22 : AB9307028EF05EFDDE0DF381706126D92C102C24 : 958D0320673D7EFC61C5842D9043ED2A8DE805C3EEBF8BB5CCD11A1F6D1DC8F5", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/958d0320673d7efc61c5842d9043ed2a8de805c3eebf8bb5ccd11a1f6d1dc8f5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CF986D8F6E378636762BD41DA079B573 : 4B6AD4356CEE8ED4A1399483868C9B2B8C59952B : BF764EA78F8B57436764F96698C599849A9058202F2C334746667C57602ACA90", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bf764ea78f8b57436764f96698c599849a9058202f2c334746667c57602aca90/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4A540E03E55722EE973EC2918D07B589 : 8715ABBCDC749E5C079A006B406572E3BBC27F89 : A5F1B78800E8F1D92D7FD60C66F82F5C3008A9ED55DD6C0BF1AB94B1551A98B7", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a5f1b78800e8f1d92d7fd60c66f82f5c3008a9ed55dd6c0bf1ab94b1551a98b7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4A1C01917CC22DBF54EE626137E3B92E : 88FAB416A9EBDCDB52DC568989D57FB8F3F5B182 : 82BE500365F1084D3289CC34DF27AC0F096C9AF7C6B176E4511167A24BA44845", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/82be500365f1084d3289cc34df27ac0f096c9af7c6b176e4511167a24ba44845/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5A99414DB3737D75669DE4544DCEFB0A : ED3941AB8CC5D21035C2D43DB704E3DA65C32CB6 : C5DD8CEBBE1B8271076BFE1F906924B1FAA43A888401182E56A36FA43C42E7E6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c5dd8cebbe1b8271076bfe1f906924b1faa43a888401182e56a36fa43c42e7e6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DABFCB0905DD1E271DAA5BA95815D3EE : 5C4CB76BB7E4E1D935EB73D83C2A98046FBEEF76 : 1B415EA10DEF5564FD1644443B983DBBC859BE19449E3DB4AB76231C36422747", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1b415ea10def5564fd1644443b983dbbc859be19449e3db4ab76231c36422747/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "92DD507FFCFE523AFD14B90315C2B191 : 11102E9631A4A27CA259C8FBAC5EF4465031715F : A06B7736FC0565BCE74D3AD7DB2A5F1023D7798551F0B4AF0D9AF014F14E1436", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a06b7736fc0565bce74d3ad7db2a5f1023d7798551f0b4af0d9af014f14e1436/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8645FB0D31B635F15004A498523B75D7 : 32314285EBF08497A39897D008A8AD0C2EDB377E : 5AF85E1AF7EBD4E0219C8A0D2015A47DA79F51C1B73AC4CB9971C73CA34D95E9", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5af85e1af7ebd4e0219c8a0d2015a47da79f51c1b73ac4cb9971c73ca34d95e9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8D1B83D76BACA643998F0DFF1E6AE161 : 891B8755BF6E140400E2D5A89684A3021DB801F9 : 85B7449200CC49550FF72F5BE4B98082FA0438AAACDC815FAA105D8C24614616", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/85b7449200cc49550ff72f5be4b98082fa0438aaacdc815faa105d8c24614616/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "198B96D5D5BBC00D1260E0914CFFF9F2 : 02ACD7321AF429882C915E188638145412F2E177 : 1A75A81557B2B419AA3FEDC90A44E97A6E6603D5E6C790DC5737923E4D179FB1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1a75a81557b2b419aa3fedc90a44e97a6e6603d5e6c790dc5737923e4d179fb1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "74038AA65DFCAB3D0DD5131BAD82032E : 4F0D23D2FC312756AD7A701E310AF9C5837B20C1 : B635C8CB4D2E4E16A686C184EB0487DAACB248853279D794E21A9237D1722614", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b635c8cb4d2e4e16a686c184eb0487daacb248853279d794e21a9237d1722614/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "D1AD154DDBC05E9AF91AE3E150983A35 : 3E0C9571E758D8246096C4C5996335AF897F9180 : C449ED1690AE141C66578F99E0829FBE3DFC324D075EF1452A9501AB0EEF00EB", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c449ed1690ae141c66578f99e0829fbe3dfc324d075ef1452a9501ab0eef00eb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2BBD13A8DBD8AA88BF282A6210588451 : FFFE4A1ED7AC36A6049404F7B94F039D0BAA88B0 : DE6D3D97078C32A1CCB0244D3B3D6CA609613D941A07420FD8E400D61E0073DB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/de6d3d97078c32a1ccb0244d3b3d6ca609613d941a07420fd8e400d61e0073db/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6C2E87F717ED712F786F0D43D0076B89 : 8402C94201933317E7D4231D6B093262C089CF54 : E67E6D005EEBF84620AD32E9DAEC3B8F00E3BB05915E2EEC0C34E9DB276F0ED5", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e67e6d005eebf84620ad32e9daec3b8f00e3bb05915e2eec0c34e9db276f0ed5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "038972D01E9D035B84E886F67C865A4B : 18FACD6DB290DE6032C1EABE2949E8EA06B71176 : 0C96311FBD6DCD5AF7DFA4875FC72BEDA0C9E1C7470EC8D0CB54041201F94708", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0c96311fbd6dcd5af7dfa4875fc72beda0c9e1c7470ec8d0cb54041201f94708/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "06EC2E47734FDB180F6FBB97A15F9687 : 5D9872AB7AAD22748E900E7B984F07FE63BA0769 : A5BF080BA5D3624BC8C19B614C0CB78DAF241D22D6EDF41869835E18113F2203", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a5bf080ba5d3624bc8c19b614c0cb78daf241d22d6edf41869835e18113f2203/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B418C04C133C59D1BA98A701E37F02C5 : 89F026BA44E4D2DA53CDEC998B5630484606FA22 : 0582590153A317BC9307A76643E9D296B122B1B67CE314B1ACC7D5C67894161D", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0582590153a317bc9307a76643e9d296b122b1b67ce314b1acc7d5c67894161d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "F3846C5696D3F01167FDDA2A795A48DC : B3CA27B23C5E0EE01B615D1E6E3564511A1A833B : AC22556FA158E0593839839BC5CE857CF31F75E4C01F910BF9B9156B8460C746", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ac22556fa158e0593839839bc5ce857cf31f75e4c01f910bf9b9156b8460c746/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8468B1640A1A48D3AF3F357A663BBFCD : F25EB93DFE8C47073B7EECE2DBE59CC27A527D73 : B23781B385E1FE7522678F4F017431DAD9CAC9CD616019D9378EE97AC8410F0E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b23781b385e1fe7522678f4f017431dad9cac9cd616019d9378ee97ac8410f0e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "658D67C032CA227F04C12847D0A66830 : D8D9B4376C0F942547F6B709461E9EB1AC51D5A0 : 0EB31C4CD6B7EF92A3081EA2B2F6FB59E5BBFC28730A9F739EF531342F89F476", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0eb31c4cd6b7ef92a3081ea2b2f6fb59e5bbfc28730a9f739ef531342f89f476/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3173746B9B0D2B610BA6824C4E91D2F3 : 7BDFAB2F5EAD79C452915AC9F68E0FB64FB6937E : 1D215F3B0C78A5EF917058C2DA947F72C01C8842BF30CC72014C6BD919DB84DA", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1d215f3b0c78a5ef917058c2da947f72c01c8842bf30cc72014c6bd919db84da/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "D957FDCEFC3170DB98F96D33465A0243 : 36296978E54EB41C02E0B2F821471592C67C0F60 : 0A31461CBD79C8654EE3F4B5F72875BBDB6F96087A9DD8E3227AB997CA731C65", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0a31461cbd79c8654ee3f4b5f72875bbdb6f96087a9dd8e3227ab997ca731c65/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BECD198E4F1666502085D3C94A915C45 : 3D464C8C8E8F878179AD93C95FEC6E6EDF89438E : 2AD4C15DDA891C2CFF1D5720A7DBEAED52E7D3B05864D06431347D5AB2A729E5", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2ad4c15dda891c2cff1d5720a7dbeaed52e7d3b05864d06431347d5ab2a729e5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "68555A4235FDE27D15F51520A7899C76 : 5F3EB96969DC704E337C2B3902404D416DF34388 : 9E7C6A1AB775826A6490200A94DB34FF2212BD2E31B0A491A82242B0F14805C5", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9e7c6a1ab775826a6490200a94db34ff2212bd2e31b0a491a82242b0f14805c5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "6707E0A069888C77CCD3724E856A9081 : 8014831F69AA4DA99A7987D7543B4C475147C442 : DB725271F890E90EBF3B8D5DB4658C1082FAB069AEE85F153F29879AF8A555DB", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/db725271f890e90ebf3b8d5db4658c1082fab069aee85f153f29879af8a555db/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "33EFF3273C721B046934731317CED79F : 40224A07B8E46DC1B5CB55A00A75F887E73147F4 : 2B63628AD91199F4E0BA1E71DC2AD5485F083AAA47ED956ECABA5364FC47058E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2b63628ad91199f4e0ba1e71dc2ad5485f083aaa47ed956ecaba5364fc47058e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "182A722A9844684499ADF629A94ADDD7 : D446D8FD4D5204F895DC3931EF1D82D09F1B25CE : C607B2116DA9096D466C4C2D0EEAED2D2657CA627590323735FC1C5CBCCD6224", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c607b2116da9096d466c4c2d0eeaed2d2657ca627590323735fc1c5cbccd6224/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E8942FC065E9F8999106C341FBB1DB28 : CC7672DA90F292580BBB99DD733F5C2518D483D7 : AB775820B9DDD989C2DAE48E5D064F50DC9481064E78A891FC5F4901AF0B7F2F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ab775820b9ddd989c2dae48e5d064f50dc9481064e78a891fc5f4901af0b7f2f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "59825CE50696099C929D2A7C461A41C8 : EB266AC44AB006CD0E381CE31071CEAFA7865D5C : 38720E3DAB334B3FBD7FE9D8A7587FBD7DF57F50388A191A09AC9355D779B3A3", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/38720e3dab334b3fbd7fe9d8a7587fbd7df57f50388a191a09ac9355d779b3a3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E922B20E22D2C42A0BB94B61F417AAB : 03C480A49A7B9991170FDFAF416F9B8A63520F0F : B7A51000BC1D45EA1B216BACB5BC6344385BCE5A30326FB973CE0109563BE7BB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b7a51000bc1d45ea1b216bacb5bc6344385bce5a30326fb973ce0109563be7bb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1F0BBBEAC1BA44E47FB0F833F974BBA7 : 289CDEEE1088393A8872B2EEC7565B9FA56BB74A : 8D5722CB36A3454D88AB230A85FF9C880A8F9944B1E4C77A377FD82961B9EE42", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8d5722cb36a3454d88ab230a85ff9c880a8f9944b1e4c77a377fd82961b9ee42/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "00561BD2C5C21D7D846A714E5B2AC4C1 : EE0828A87BF26EE315D2EE24D9103603F4D5948C : 7605BE37E988C54A588BF4C8EBB03FB32D3A2776FFA26B5D7234C1D53FB582F2", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7605be37e988c54a588bf4c8ebb03fb32d3a2776ffa26b5d7234c1d53fb582f2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AA4E4C5259704F066CE6C2A06159DBCD : 8BD272C340E1D839269EA1E8EAD9766D8072EC91 : 619893D97EC8390B22E215170FA2C76E0B1626F7FD353EBD22EB95BC0F31F1C8", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/619893d97ec8390b22e215170fa2c76e0b1626f7fd353ebd22eb95bc0f31f1c8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7B02B0C855924A2503D323121348DF1A : F5CC3998EBCA8A52CC8E36011835A03D0B400BF0 : 75D3BB5DF5A99C1CC5BD3D4454288B3B927CFCF1C80D7C4F1BF72C622FBE3F2E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/75d3bb5df5a99c1cc5bd3d4454288b3b927cfcf1c80d7c4f1bf72c622fbe3f2e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "43BCC748A7E27A56ABB8E9FAECD47DDB : 483F9B34A98538580EEBF25B0FA245BB89B00668 : 36AFABABDBE59D3D41BD89A26FAFAD256BC7B80DD273ECB14ADD1D2542164676", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/36afababdbe59d3d41bd89a26fafad256bc7b80dd273ecb14add1d2542164676/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A6B313025F89A08C25613EB19DEE83C2 : 2662C514DA39CC575D81F4826C40B3A3C55611A7 : 6A956DCA42420CFA3BFB3B27C35D0684E477AF0FAC77444BBDC490A1410D2C69", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6a956dca42420cfa3bfb3b27c35d0684e477af0fac77444bbdc490a1410d2c69/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7D90CAADA53A03DBED3A4CE2EAAB6A0F : 0DB94571061C1548313422E6C705D6D91D037DF3 : D9A4F56EE9190969672F1B8636833FB5419D9C94E5C980093E16A5173AF5E1C9", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d9a4f56ee9190969672f1b8636833fb5419d9c94e5c980093e16a5173af5e1c9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Razy" + }, + { + "Type": "File", + "Value": "FF705FCACBC099BDBFA7A3B916A8822F : 8194BB2B9553B5EDA3CF74B13444B60977CBDCC3 : 64B46A0D05B19C1C86D8AC8257E356780AD7A327B9FC9EBD3C5DB5631EFC69DD", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/64b46a0d05b19c1c86d8ac8257e356780ad7a327b9fc9ebd3c5db5631efc69dd/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "497A4926D3491F9B9A158971E84D8BB5 : 8D5A3272450D827EA7EBE529B43FCAB3F3445996 : 66E73E4717379E03C7511459FF7275C99E68914B8471A7A4F714E8479D2876DD", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/66e73e4717379e03c7511459ff7275c99e68914b8471a7a4f714e8479d2876dd/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "AB90EBDEB35AFD592DCA1E3D7023DA80 : B9C2C25603F6A66439CF7CE3BC9896F19F567AAA : A80049DE708D13C0BB4A5FCA2CD3083524DB164CBC0629D46A3519516AFED889", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a80049de708d13c0bb4a5fca2cd3083524db164cbc0629d46a3519516afed889/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1BC0897E44B520A6767A0D62BE999F64 : 23901EFC152B79DCD302D1B8C39CFFE3BB031851 : 26FCBD7FCEAB375386AC6FB08558F365D43AC48A900541B2E1B64DE9D24F0721", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/26fcbd7fceab375386ac6fb08558f365d43ac48a900541b2e1b64de9d24f0721/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "141DE016FF7AA5DD833120E48783ED45 : 3991B5AC51D451D3D2E4FBA5CE57812F7F87D8AC : B3713308C5F37D1A86D60E26D0F5DDE3D448C6ECF319D6B30CCC66B26EE0714A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b3713308c5f37d1a86d60e26d0f5dde3d448c6ecf319d6b30ccc66b26ee0714a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "2E874400C7E89085A55F8F7EC8610563 : B86AC72F56330EE8F561BEA92E4A39D3CC0EB6C3 : 4EAF17B2E390F19F8BA65A63C6FAC7F6A30778160DCEECFDCFD48EA5181A4AF4", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4eaf17b2e390f19f8ba65a63c6fac7f6a30778160dceecfdcfd48ea5181a4af4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B2ED18909C4E6153B5B92AFA25858431 : 10FA9AB80C6495781C851913DB2B67B255C8C059 : A23F093524526F1AD5166D4F4189BCE1B6A58B185CDF9E3DEA8C487A27A62903", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a23f093524526f1ad5166d4f4189bce1b6a58b185cdf9e3dea8c487a27a62903/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "07E5E08BCB773A10132F87FCEB283A1E : 9CACC0D55B55598CC3764CFD6A1126F3E0C4B677 : F26B91B62C5BF624E36291AF26572BB3005025582CF5BB43046141ED3776A2F2", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f26b91b62c5bf624e36291af26572bb3005025582cf5bb43046141ed3776a2f2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "CD1BF6E922E28B386A3E3F469E07C4FB : 7C038555740CB4E145877DA0309C021DE128F666 : 9D93B66A274473786DF4147CE2F153E9138674BAAF48335296334CD44F70DB6D", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9d93b66a274473786df4147ce2f153e9138674baaf48335296334cd44f70db6d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4B94220A414A72D3EF913AFB64815C47 : 6422EC8BE47EEADBA8E3654D6B342EE69BBDCC7A : A0D8D0F01F03ACF54DE1890F4B6BCA80053202CA6E779F5D9DEBDD7A50EBE8C8", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a0d8d0f01f03acf54de1890f4b6bca80053202ca6e779f5d9debdd7a50ebe8c8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "14F7A96D9E05C12AE5704767685E57DD : F215AA9E0ED3541F9F71AE410956B98E2B43E430 : 9BFA606D4B3496D3F7987B1922A7604ECB4E8AFC12623C44BD59853756ADE521", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9bfa606d4b3496d3f7987b1922a7604ecb4e8afc12623c44bd59853756ade521/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "5BCC9AF0213E3D838238B2ADA0712C6B : FDF8F4F90FF48A5945B43434BE71E5CEBB1C9C2A : 2D79FE6BAB1BF12B8D21E8CE2EC8713089F8523D81760ACE0E3890A7A6897ED5", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2d79fe6bab1bf12b8d21e8ce2ec8713089f8523d81760ace0e3890a7a6897ed5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D35F17D8B826E7877066C02DE398E1C3 : A1E2BE082CA7C5EF693445C9D1B0D7453EF37043 : 9AA8F9FD6A0CA784AA567452211F7FA4AD6A7F6ABF1B5BD11036599B1A29869E", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9aa8f9fd6a0ca784aa567452211f7fa4ad6a7f6abf1b5bd11036599b1a29869e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "289AE0A36083ED85222017B6276C5D82 : 2F22B88339D51D15B54D36AA8C6CCE19358F5A4B : 5D7A84D05EF7DCFEE085EBB57A43F41004E13079FE231F6AE3C8A2059F6EEA12", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5d7a84d05ef7dcfee085ebb57a43f41004e13079fe231f6ae3c8a2059f6eea12/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9ED38EA2CF2230F97DFD4FA8EFF8D755 : BB9B4BC3590DBEBCACD4925133D55520F90D1557 : 40B4543BD154B98D622FFA5CBAEDD6B0B25FEAFEF6A76BF4F4EFAA512FD70680", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/40b4543bd154b98d622ffa5cbaedd6b0b25feafef6a76bf4f4efaa512fd70680/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "31290941EFDD9FB4223E2CCE65E7262A : 5BF07A79A4890D884A2ED07816D7CE87EAD9EB9E : 840D484C14E9A0A4077C7C808EE0B1D833F61ECDBAFB5510BCFE4C60DA2438C4", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/840d484c14e9a0a4077c7c808ee0b1d833f61ecdbafb5510bcfe4c60da2438c4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0071103F7BE90D7398682C436284E242 : 829B3A8B79E0EB96A1CA600068AF173C7E548AD9 : DE12D92F6FF0B4088D1763B0F69004BB75A3941DF63FD7A27B887869DE167EDB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/de12d92f6ff0b4088d1763b0f69004bb75a3941df63fd7a27b887869de167edb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E2AFF4467CE02971E9649F6594FE7BC8 : 340E7FF951FA224D1FAD30AAA88655AB4E721A8A : 5455E4D2A0AA0ECBDC7AD69100A9E0381B4B1A4E6F37838772A90AA1C7202920", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5455e4d2a0aa0ecbdc7ad69100a9e0381b4b1a4e6f37838772a90aa1c7202920/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5A18C06910A5DC44A66EA9D6A11B72B9 : B041359DD4C96979C71874F032D0ADA4078702A4 : 7A3D076947AEFEE5C287E54CAEF10DD5326BC3B640A650117C97DE6CCEDED149", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7a3d076947aefee5c287e54caef10dd5326bc3b640a650117c97de6cceded149/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "53D8A6AB65C4BA623C5D29E075849B55 : 77E376DE86C294A2C91C4329CC5859EFF2937819 : 9702822C50B7F0F583C0C152D2E1F0EBDB7D73A181FF81B5159EE4EF743FFE91", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9702822c50b7f0f583c0c152d2e1f0ebdb7d73a181ff81b5159ee4ef743ffe91/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "77161A86C0D835412E411F026DE8B03B : 7CA0D2297BBBD99322C18157140CFE8FB5762498 : C23EC310B20C92394863E1EB654DA07A170BC1D997BEED264CFF69D4FEF9989B", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c23ec310b20c92394863e1eb654da07a170bc1d997beed264cff69d4fef9989b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "234D9C7DD62CED6F33B4090E5C846F79 : EB27EED2808C9EBEE486EDC44F3D5CC3F4A8BE6B : 10299806C4E4C0EEC6DE0FFEA82E163CBC28FE37F1DFAE797FA749E08CA8DFD3", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/10299806c4e4c0eec6de0ffea82e163cbc28fe37f1dfae797fa749e08ca8dfd3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CAE6911DDB5B26C863DA877A08A2E7C0 : F820C7C5349FA8B78CDDE36EF0BACFBD71648409 : 11811DF7088DCB4C3738A451D374729283B691122793E8F70C095DCCE8036345", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/11811df7088dcb4c3738a451d374729283b691122793e8f70c095dcce8036345/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D03EE79DC344274245F39750E2001B85 : 6FD2A9B87C0620B574F1E3E4F0F583D9E070680E : 64F67227BBFC191028DB005530E3B55AEA7761060E63593CDFB131EF8A39FCD9", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/64f67227bbfc191028db005530e3b55aea7761060e63593cdfb131ef8a39fcd9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "0DDDC40CD210F3064DEF0751FCAAEBA2 : 72CD5296800961B75E7B468341A677BD29055BC8 : F65EF444A2C7B4DA84959BDD21E267CEFCA7EDAE119C47DE311ADFF9572632B0", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f65ef444a2c7b4da84959bdd21e267cefca7edae119c47de311adff9572632b0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "428469C41C9F740443B6DB735B5EC93C : E8416DB25BA9053A21C0258BE02E91DA58A80945 : F2F47DCD84C2D7FAC97BAD4C379D268390F3894F6F67CB6CE2B7D76DB41EFBF1", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f2f47dcd84c2d7fac97bad4c379d268390f3894f6f67cb6ce2b7d76db41efbf1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9D0675C11629610A97218742EC53A391 : DAAF5944BFEC4BB2A4C055078FFE6394B50A6DE9 : F1EEFB5FC943813E3B5E6A255BA162A32EA8C0162D54C4E10C34837A90DDDB80", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f1eefb5fc943813e3b5e6a255ba162a32ea8c0162d54c4e10c34837a90dddb80/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D51A81E663023015C5FAFAE8A43B4F15 : 3F3520309DDDB6CBFEE7F00737AFB0D9ED7C436D : F22804F242A5E6B26D76707726432C68FFBEDDB068B962435D0235A6F97348D2", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f22804f242a5e6b26d76707726432c68ffbeddb068b962435d0235a6f97348d2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "6F1D7323436B12872D468959C843FBDC : 7B90211232DA8663FDE0C42C36AB6E3D96EFA88E : 18AEC7CEFFE917EB661B75ADE70BD6996C31DF6689E233222CAD8952142D9356", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/18aec7ceffe917eb661b75ade70bd6996c31df6689e233222cad8952142d9356/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "13E0E887C4A9A2034D1F23CCF827BED8 : 677E583896B9077E41659D04EE917749A6AED6ED : 51C5FD16DCFF715C62F9B75F0B53730444D9B7B0EA4CF3D2B88335001C4B96F3", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/51c5fd16dcff715c62f9b75f0b53730444d9b7b0ea4cf3d2b88335001c4b96f3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6DDDD7E8E5FF88A15B7884A833FF893B : 813856F7B7C5A4EC55A6284AF6D334002A305333 : 115B1BA1A2E94A2D5B14295C85C3D62845741820EE356BE2441589DBEBA5B7F5", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/115b1ba1a2e94a2d5b14295c85c3d62845741820ee356be2441589dbeba5b7f5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4ADCF963E6C8CE27F072FA0331A108C3 : 622F726D81B301E20C9B3ED02A8F03B34B7D7272 : B007F7934932B23512085689890ADAFA643246F77C14546C78DE41E25BE55554", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b007f7934932b23512085689890adafa643246f77c14546c78de41e25be55554/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "EEA0F785AF2128A5DAC661F58C218E7B : F6D2E86A8B59AC55812EEE29833D773B6E3209B3 : 826947416C3312C687C24CA7E7D578CA2BB3160D39A2E580120B522BF246AC3F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/826947416c3312c687c24ca7e7d578ca2bb3160d39a2e580120b522bf246ac3f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "65F1A9FEE9F6E86146782B4961E36144 : 8CBBB6B822A0217900F9AE7B14ECD23B19A37D73 : CE62C4FDEE873AD13DD9202C84E766D2CFAF0A8F7629C5DAFABD29DD2855C7A6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ce62c4fdee873ad13dd9202c84e766d2cfaf0a8f7629c5dafabd29dd2855c7a6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "81D3A93D67677128AD9C0C6DE5D33B74 : 74D9905630D24A5FC9B4CC687587FD51CB8137CE : 936F2CCB5F42803CCD29EFC5DA8841486F904D059A6E46AFE416AE5DFAFEB886", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/936f2ccb5f42803ccd29efc5da8841486f904d059a6e46afe416ae5dfafeb886/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D5D8824EC5E1FD9F8F0FBEB2CC892F5 : 6D9C1E61E64C632C95C943FA8B51BB0D55090A75 : 891FD904DE10C723DDA6285A8B5F796FBB4BCA69E671BD9E0600A0BA3D11551A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/891fd904de10c723dda6285a8b5f796fbb4bca69e671bd9e0600a0ba3d11551a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E0858E827B45280EB10B2F9C69860A1D : 52CC4FD1FD410CF16F3E694313361D70F412EEFB : EED1469D0CE13290F8151B3833DE27C473CAFEEC97CF3AA9F7B060D1BA968613", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/eed1469d0ce13290f8151b3833de27c473cafeec97cf3aa9f7b060d1ba968613/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "52FAF50CC87FD31F21B577F27153D1AE : EACE82A0CA315C572870D4D6415DB4030031CA32 : B0743EF399FB1BED1908681A2E656428A2AFCD8A2F4637E5AD46250A6830500A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b0743ef399fb1bed1908681a2e656428a2afcd8a2f4637e5ad46250a6830500a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AFB62948C7BCE1C2E4D0233FF6B854AE : A78B1E40FC227002580289BC58993C9B831706F2 : 46FAE55E3EB9B6D5B6B5B179403B4D36DB3452F547ABDE9CAE7AF4992CF39BFB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/46fae55e3eb9b6d5b6b5b179403b4d36db3452f547abde9cae7af4992cf39bfb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Heur.AdvML" + }, + { + "Type": "File", + "Value": "78298D9A7EE49711DDC3C4D0F9988268 : C71AA3B25369F59119CDEFF16F33F44A43A2B93C : 88DB710E1C3733706EFB81DBE36B92179A49651DE8BF56A1EFF703F9D3D5EDB4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/88db710e1c3733706efb81dbe36b92179a49651de8bf56a1eff703f9d3d5edb4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "353409DC40CCDF8A69DBF50A81A53917 : DFF8ACD5F555360227B7846A3668CF5B4555C6AA : E4E641E5BE2EF8F773A691EBCDF824BBCACBC2176A2E65CDC76F2260DCF26449", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e4e641e5be2ef8f773a691ebcdf824bbcacbc2176a2e65cdc76f2260dcf26449/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DC279CE3329C7BC477DFED29E442F744 : 229D3D9F3F344457EB85B901CF4DDBB304575674 : 1B1FE3B65AF452B4C66D56D8D8DAB19C924ABCD1B7D174D1C0B8AE38E1B44926", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1b1fe3b65af452b4c66d56d8d8dab19c924abcd1b7d174d1c0b8ae38e1b44926/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C8ED43258847A5D35D2447A8C324442C : 071E6B46EC88C879287EB8ED3189913D2211182E : B41A6B22810BC6F41DDC32ED61B85548FCAC1F094670FD369B15936ED14F9754", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b41a6b22810bc6f41ddc32ed61b85548fcac1f094670fd369b15936ed14f9754/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "27AFFFC43F178CCD6E8A4C56205D0F93 : 035A2380D024B1CBDDADF1FACA9542EE741DAC94 : BF0B42F81345D14E826DBCE57D9A66CD5C53D5220E60A6AF860959B1E3629283", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bf0b42f81345d14e826dbce57d9a66cd5c53d5220e60a6af860959b1e3629283/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "83E74087F2524DAE6B55202096037951 : 335BB0617596C0C9EFA83403DED6B5B727216159 : DFC0B64758094017D4ED7F8BAE21613DF99F3C8F6C7C5E905B523E00B564CF0B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dfc0b64758094017d4ed7f8bae21613df99f3c8f6c7c5e905b523e00b564cf0b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "D81142A145B27FFC705F84573062FDEC : 846210661F46125D59C24E383674903E43FF108B : E2ADF567DB4B52DC4C7B8D810E0787A6DBDDB46638AA5609415124717F1D25B3", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e2adf567db4b52dc4c7b8d810e0787a6dbddb46638aa5609415124717f1d25b3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "8319620F505617E1162D9FF660027BE7 : E34582E25CAEB394AA5C3ADE6BD994775DD4A279 : D3423C695D53A402E927B980E2F16607014525872BF14416E8C597061318AD89", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d3423c695d53a402e927b980e2f16607014525872bf14416e8c597061318ad89/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "30CDE3718972177BE0EB027496C62EC5 : 367F0F9D21E196DD133993656ADF8359E31674F5 : 3BB51A44FAD3F80C006A9FDCD51C430B6E522AB250274E4E8FA7ACFC78D9B2BB", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3bb51a44fad3f80c006a9fdcd51c430b6e522ab250274e4e8fa7acfc78d9b2bb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "10B304EE7895A323CA554B911C6E3ED2 : BCA1ACCC7384DC392169868C1D2B64860E2603EB : 90FC7920D27D2CF412D4C08961DBF9B5551C51C4A569B304A36618769AC52994", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/90fc7920d27d2cf412d4c08961dbf9b5551c51c4a569b304a36618769ac52994/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C6E10545EEBE9BB22C10F8EE135E5160 : 47D956F4D009EC8D0F6B877976DE34670E99758E : 0A4B26A4545499727B04378879C5532895EBBF1E8506450BABDB2A01FBB6CAD4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0a4b26a4545499727b04378879c5532895ebbf1e8506450babdb2a01fbb6cad4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "85BBA2D71C589F951AB9196D37BE2B7B : B78F6ACAD1D42BDDBEF918AEACE53E5D15A5E1A5 : 336559F7A4EF130E55996ED5B76AA923B484380646A196C488AAAC8CDFFED997", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/336559f7a4ef130e55996ed5b76aa923b484380646a196c488aaac8cdffed997/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9E6B742DC180133EF10578D15DC5362C : 583583FA05D105E9CA5CAA6264C1A5770E0EF2EC : A6828AF772B8B80EC1A0881C5097EC885D00241CC8C1A0875453723389A3911C", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a6828af772b8b80ec1a0881c5097ec885d00241cc8c1a0875453723389a3911c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "F38980CF89703977B652CDD9278DD4AF : 84766F43DAAA173F610408F40A9CA434F00E17FB : 2236E8B43503364A1B5C0516DA05EB9F35351E5A2A0AA1850379BAD2B4F76590", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2236e8b43503364a1b5c0516da05eb9f35351e5a2a0aa1850379bad2b4f76590/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "431466778A8BA3C43C2833E0DF67A425 : A7B250D2E812349EC6D83D4EE0BF3EE6A5EA52C8 : 229EBDE26BCED910872FFAA039C90CD302BEEF31247604E9A316A4666EEF7B68", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/229ebde26bced910872ffaa039c90cd302beef31247604e9a316a4666eef7b68/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C769014DB2EC3067BC68162BB16F5E39 : 9D9A7D38C61E57BC855623628A4A7B510122B0B9 : AAA73A47BDBAD46BC2E725F56AA44E6F5605219D5E726B9F9D9CED9077A66534", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/aaa73a47bdbad46bc2e725f56aa44e6f5605219d5e726b9f9d9ced9077a66534/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "FB8E37B90154C40851DFF1AB94E2252E : B4C7300F95A662FC544849F427793B5A02D556AD : 5C3DEB18B30E50F0D9370C327DAE872E6BB636E86B52621ED12E700FE0339F91", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5c3deb18b30e50f0d9370c327dae872e6bb636e86b52621ed12e700fe0339f91/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "626104574C98D8E514E6F5DE97D9775B : D39728C1C3EF6FEF432CC4D67B6C37C8D2C9BA5B : 85FE11935889CB47D6042841CB519407DA2C38ED8F32A2F82C1A1BE6CD9816A0", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/85fe11935889cb47d6042841cb519407da2c38ed8f32a2f82c1a1be6cd9816a0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "829406528DF83132A37A151DC7594F69 : B76D2072575B41BA5AFD45B271F40D2790894EFB : 26C8F893C3E8C0ABB0924F0856B4742783040E2245A3867B0426FA188ADA4BDF", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/26c8f893c3e8c0abb0924f0856b4742783040e2245a3867b0426fa188ada4bdf/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8D269D1E894D430A9F532309F1A9E131 : 91B73AF0B7771CA2602E1EC4F7CAAE5B858F3219 : 1B9961498F4C7DB0E1E3236170A318B8DDE1BEC611FF183AABB8CFFECDF19CAD", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1b9961498f4c7db0e1e3236170a318b8dde1bec611ff183aabb8cffecdf19cad/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1E1E4C63D4B7E5844106DC8FCD29D619 : 1A73431B1614FF2FAD5C3E6C69A78A8F07C50DC3 : ED58E22B7285F30FFD5386FA33D0C0DF0380DEE6815BF949D400F423D8FFD79F", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ed58e22b7285f30ffd5386fa33d0c0df0380dee6815bf949d400f423d8ffd79f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3D53118D9B73CB763AACD54FD1691983 : B8752CA91C28F5C81DCD58BEE6E7719F6C11B57E : 5FCBED9F15FA35693A1FA0C9A90638A9AC303791A61393A5FD77F97763F5F5B4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5fcbed9f15fa35693a1fa0c9a90638a9ac303791a61393a5fd77f97763f5f5b4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E70C2BF49F1D99225540E63063CAB24 : 6D07FB7053A38DDB01E79BF85013BD2F84325451 : 77D090A085BA3EAEEE1E951054D6E71B452E26569D67BADB2A06EC53F16D3207", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/77d090a085ba3eaeee1e951054d6e71b452e26569d67badb2a06ec53f16d3207/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DEC668EF7C1F0FA67E1E89B4135443D2 : 7B25D90181B506BA11D6835E132F92435CEF53E6 : 02A6E2C4DDE27CD91C2B1941450BF63D8389D477030E4BE3E1487FC5D3192204", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/02a6e2c4dde27cd91c2b1941450bf63d8389d477030e4be3e1487fc5d3192204/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "4DE179813CE46849DD1D9DE27CAE83C4 : E96335A2E4D3B4F6ECA3C292504A83D14914FE33 : 90338BA3CDFDCC3497BD06818302988A0EBE5643C51586BFADD515E6C06EA2B1", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/90338ba3cdfdcc3497bd06818302988a0ebe5643c51586bfadd515e6c06ea2b1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "34DF08452ECA707E6BA9E8F9BE10703A : 3CE86D417A7133FAE8BEF65234ED43916042B448 : 21C5F808BEAD4EE10A0DAB6E228C33AC17D3DDCD98573681AF380DFE4B4DA0B4", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/21c5f808bead4ee10a0dab6e228c33ac17d3ddcd98573681af380dfe4b4da0b4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7C020353BC79F1AEB3D582DC8E9ADD66 : A08B9A262BED53566A1DAEF11103188032F4572C : ED16D8F9154A5F4ED5AB708F577C89A6BF789124A15E0412B61E7A501C0013F0", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ed16d8f9154a5f4ed5ab708f577c89a6bf789124a15e0412b61e7a501c0013f0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7DEE47408A95DCF9C13F55FC65596073 : 1B047FF952A924849B8192C246550219F048859D : 4E46384B0EE7D8FC46A4F18531F7E0F8C8077514038BC6AE8134182D123F0857", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4e46384b0ee7d8fc46a4f18531f7e0f8c8077514038bc6ae8134182d123f0857/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "BAC4DE5223EDC9571895C466216ED6AC : C34F859D1C029C369A78FCD8404A70C720EDE1E5 : FFB9304CC7BAB764328D72BB467E0FECF4B8A835D8964C35CBAD8E0F45115AB6", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ffb9304cc7bab764328d72bb467e0fecf4b8a835d8964c35cbad8e0f45115ab6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "93CBC3257CE66934B1724E9A6D895728 : 6BE30B6ED4D94E720A3535F2D5130E0AC9CE34CB : DB45A5B8859E7DF31AD7C9D0B6D738EAAC44CC920064225082516129777FAA23", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/db45a5b8859e7df31ad7c9d0b6d738eaac44cc920064225082516129777faa23/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E17FB8CA61C332557DEC120747828074 : 618DB07A1644F91CCBD779BEC1CEE056976B7A78 : 3C8DAA89C31066F0669C9A049E1CD4CD012EFA7A061810936CF9F4C70A8E4A4D", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3c8daa89c31066f0669c9a049e1cd4cd012efa7a061810936cf9f4c70a8e4a4d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3357371C920C3CBCB376BB641F8CDBAD : FAE4AF7C259F05EB1AC3043EA9224F1D5C481BEA : 1D53EEA74370EA0B1135A6191F3E6B10111FBBA9ACDEDD8DE81F1AC205B04DE7", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1d53eea74370ea0b1135a6191f3e6b10111fbba9acdedd8de81f1ac205b04de7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "27261C09A7DD48994C67E0EBB6D4F96F : 2BF8ADCF59B763B8E2798A654307EA10363D5052 : DD96181F816FF249935BE7DB8E79D411D414632E411BC9A5DDE476E42DCF8D69", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dd96181f816ff249935be7db8e79d411d414632e411bc9a5dde476e42dcf8d69/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3D5A4CD9A520130814DE34BB4E013B3A : E33FDCB20BAA2EDA641C89CD7522C7BEEEDE096F : A7F385727EE7C016BDDB220ADBFC8749E2BA6BE5A5790387D761FF3B6DF74E65", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a7f385727ee7c016bddb220adbfc8749e2ba6be5a5790387d761ff3b6df74e65/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7FB6C4F76F8897151651859DC5A119FA : 9DA7AF7B51E5BEA6C1E2FCFB7FE5086A2CCD962A : 6D5735773644D522C6CEF35994EC911D3FD2B107F0716E0C574587CEA45A6EA1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6d5735773644d522c6cef35994ec911d3fd2b107f0716e0c574587cea45a6ea1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "637AABDFF24BE92E33F3E71367E6E6A5 : 86EB7A6F4806777C463A12F5EFB6F789731BD66C : C4D4577CB797A7206DAFD862BD09264B248FD9324E008DEE1783067DA85E793E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c4d4577cb797a7206dafd862bd09264b248fd9324e008dee1783067da85e793e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2930BC4BE14526F2391D6B62D376A429 : 432E60A95D84DEADDC8D35EFD41645CFFB86AD60 : 834401CEAA3A122057807EBDD891FA174848A58EE086A2EDBE577FF99F437EC1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/834401ceaa3a122057807ebdd891fa174848a58ee086a2edbe577ff99f437ec1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6401DF4FC48792A5433F0077477CE206 : 22DB285737B7DA48EE4216CA819179ABE23DB7AA : 4D611C652C4652DB84E95AFC98D26192CAEC363423719615ACCF2F05B700E674", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4d611c652c4652db84e95afc98d26192caec363423719615accf2f05b700e674/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "ECD4346A41D72049C05931B63080887E : D24C146654A0A38A41B9816703BB0569161E08B8 : BD67C80DFE0EFBB69CD4DAC4415EF99B99E1A37D94D1AD86CEA7B07CC416643C", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bd67c80dfe0efbb69cd4dac4415ef99b99e1a37d94d1ad86cea7b07cc416643c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "1ABFECDB8E531F174605C42EAB0B1E52 : 19E05D957D7D6A0C62727C63C2B4055AAF1F04C5 : 04F99D34723E78AB2E94BD629EF4991A729CEEF8BDEA814DCCEE310EC905EA41", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/04f99d34723e78ab2e94bd629ef4991a729ceef8bdea814dccee310ec905ea41/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1EF23C75C056B03C5567EB1524A3CAC0 : D08267CE32827631514F76497B9A45F602A243BF : 800D2C866EEC6B6F8DB228F63BB8A4794C22141047EEBCD86EF6478D59269EF9", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/800d2c866eec6b6f8db228f63bb8a4794c22141047eebcd86ef6478d59269ef9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "A46DC1B999EF7EC8817B956A0CD5E0BB : D95C75F90C6E10D7DA33A3A012748ECEC38ABAFE : 962AB5913C200B4E52820F5A0D9E6E427EA746AE8DC008A5F4B6217971D290DE", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/962ab5913c200b4e52820f5a0d9e6e427ea746ae8dc008a5f4b6217971d290de/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "28ED06C9103DC397886805A580271F15 : 8A028A7ECD3CCE4164967959683677A663899443 : 2AB16523AC4F93448C9F5A6D4D07FC9B7ADBB152053F1F2217D611E13E6F169E", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2ab16523ac4f93448c9f5a6d4d07fc9b7adbb152053f1f2217d611e13e6f169e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B4E6D97DAFD9224ED9A547D52C26CE02 : 59CD4907A438B8300A467CEE1C6FC31135757039 : 682ADCB55FE4649F7B22505A54A9DBC454B4090FC2BB84AF7DB5B0908F3B7806", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/682adcb55fe4649f7b22505a54a9dbc454b4090fc2bb84af7db5b0908f3b7806/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4199DA4829C1B0056ED68E25E0682B14 : 4C4D7B48D23813DF5A08D30C44E0D7EDB0DCB9D1 : 37E71D96D7D1AB4E51ADE964EB7576E705BAF31455CC210ACE5C0A857779B437", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/37e71d96d7d1ab4e51ade964eb7576e705baf31455cc210ace5c0a857779b437/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "532C8665EA28DA89D8400A1FAE195D60 : 3422D010A984BB122207946B37AB9B3D43E0DF84 : 5425409A461DF4829920DD6A267A317D130EBCC47A41A54FE97DEE36551F690C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5425409a461df4829920dd6a267a317d130ebcc47a41a54fe97dee36551f690c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "381EEFED7C09C9E2D5D91332BC5EA2CD : 16242FD6A71E28CB183250ADD7AAB992E5776BD9 : 774DF863CD79D23F4B499FA09AD95394F2A3D13DF11D1102410B7D46D9C67698", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/774df863cd79d23f4b499fa09ad95394f2a3d13df11d1102410b7d46d9c67698/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "31C6BA76DFC02ED8999989ACC1629395 : 3751DAA5574927847694395F264A49BEC5896B08 : 8801E9AE9AC4720CE4F1CC1FD1D6E7F2B41CAB13A1F64FC2CE647B63EB4A5EC8", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8801e9ae9ac4720ce4f1cc1fd1d6e7f2b41cab13a1f64fc2ce647b63eb4a5ec8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7D65D27FA9C47EF0B01EEE49F442834D : CC0A0FC1D9AF2FD3CF0C4F75DB56DE687D68A0DD : F49BCC734EF2E18B4F274EC87956AB6D4DD0BC205BDC63F0A4F86F5D753B8DC2", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f49bcc734ef2e18b4f274ec87956ab6d4dd0bc205bdc63f0a4f86f5d753b8dc2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6FF1259AB056E29564406A4C07A47403 : 6F332CCD104424A7334FF842F1FEE538829A2F85 : AB93FAA2F3A7E67A0489A5CC49327EB83BD5B48ED43CCC6112854FEA7D20A620", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ab93faa2f3a7e67a0489a5cc49327eb83bd5b48ed43ccc6112854fea7d20a620/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3DC3F8D093205870F8E168241B0EBC5C : B8942601E03083C73B7D364B1149EEA560BB1D77 : 80C6AF8BBCA417A2276E59620DC663098D5D93B1D195A9EF1341591C071371A2", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/80c6af8bbca417a2276e59620dc663098d5d93b1d195a9ef1341591c071371a2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "88A2A669FE673E57B6077CC90EBEFBE1 : D18DB515086E76F09E9BA536A72C620A6EB8D1DA : 20E30C8B54BB752D3E977F14DD87B2E0AE766740C6B78CD36B72EC7D75EF7892", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/20e30c8b54bb752d3e977f14dd87b2e0ae766740c6b78cd36b72ec7d75ef7892/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C093D5A52353FFFB912C7EC6EB4215F5 : 46DAAC6AF0F25BB5F860F8B11F4A9FAFCAD6255A : 9E1F4BC0D9D86691A93042446B0CA09D4BD7918521BB07A598405A0B2509442C", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9e1f4bc0d9d86691a93042446b0ca09d4bd7918521bb07a598405a0b2509442c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5D8C448FF13A6187E82D1495DE3CAEA7 : 71284F23E5A9784F038D06AEEE31D30684FEC520 : 0B6B01B85552B6DEE579B891899E752EB1E53887CB2BF2338526FC3740393B7A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0b6b01b85552b6dee579b891899e752eb1e53887cb2bf2338526fc3740393b7a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "2A4B5E0480773D74B445D9F15264F9E7 : ACC8F61461A361061EA24AC699AF879116485AA7 : 2A57D522EA2A50DEF4AEA4B9E86FD3A309792A4BD9D0CC52338DD023D920A15F", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2a57d522ea2a50def4aea4b9e86fd3a309792a4bd9d0cc52338dd023d920a15f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "74EE44E5B20A746FCB0E7BE79D5B30D6 : D5D2FA810C215EBF7873CF2EEA1771773C4238ED : 54E1875FB6C4DCA835A0FCC57F9AEBC1BB4EA45F0539ED3D2FBDFE6C7341E3C0", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/54e1875fb6c4dca835a0fcc57f9aebc1bb4ea45f0539ed3d2fbdfe6c7341e3c0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "81E4EBC94D522C113419F4839F044DEA : 93C35FB0CB3F29867441B5A391B55D9527973863 : 15635466E7D475BF5ED1DCE069A58688989CD967AB72EFB54B1CA342C72ACF78", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/15635466e7d475bf5ed1dce069a58688989cd967ab72efb54b1ca342c72acf78/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "395AC6B5539BB2E0A947CD09F7C7E9D8 : 53B2AF9456572AF1077C07315E5AF1E63B9BB9A1 : 7AFB2273AF6870F62F574667367F1D09264A56989BB436F15D05FCB51CCB9704", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7afb2273af6870f62f574667367f1d09264a56989bb436f15d05fcb51ccb9704/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7AF9A4D51B4971276ADE5A530FFEB2CA : BCFF6B9239A6DB309BEEEF51D41489E2D6C3A430 : 23252DC5D22B55596170C989FFFA0D98F761BF468A91EBC7D8DBB21D8C050988", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/23252dc5d22b55596170c989fffa0d98f761bf468a91ebc7d8dbb21d8c050988/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "66AC920F7187BA024629BFDD71D8C357 : 426E50B806412144E9868567058AF0A32DF0BDF7 : 3258EFA148FFE61352D27D0BE2D4D275798E1FE8BF92DCA0C0D24CA348EAFF1C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3258efa148ffe61352d27d0be2d4d275798e1fe8bf92dca0c0d24ca348eaff1c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "01EB437DC2338B7B1DC12CF5997503BD : D70EAE1CC1553FEC1578DA0E414A4AF45E86BC70 : F391B06F156585FC161C93C337D6575B38113E9FC8DAD430A97208D6D2A7C3D6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f391b06f156585fc161c93c337d6575b38113e9fc8dad430a97208d6d2a7c3d6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "D39EBFD1C4DECCAD73B6138F176AA956 : 855557F3B28588A2C3717D0CE5646E3CE3313A9C : DEEEEAF5E63677AFE4D96210333FB1BB8C5C949D6B3DCF5EFCA60C790B19916C", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/deeeeaf5e63677afe4d96210333fb1bb8c5c949d6b3dcf5efca60c790b19916c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "66AB18364D735E12D3E135CA9B6C9C50 : 0952D7200F336FEE972149A94D72802BA5B9AA03 : C4C186795FF1AF7542DF5F5F5A34087B29FFEA0C22E84F4E4426DA0C7231035A", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c4c186795ff1af7542df5f5f5a34087b29ffea0c22e84f4e4426da0c7231035a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2B3EA1B0F4B9BFB211299E7A9A6C555C : 08C428CC83E1605321198D3A7C217FC135EE3B75 : 55AC0750F4C39C953F2A1C0AE2037995AF3EC13D102B4909541BE9FA44DD40EE", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/55ac0750f4c39c953f2a1c0ae2037995af3ec13d102b4909541be9fa44dd40ee/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CDD7798F74CE1BFC1E240821AE7618D7 : 87F79D48F25CBD097BC0584FC52631A735967BEC : 460A70EC54A04F45ABEC069682C02C95486DF9353E93A15A817270F112D46F8B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/460a70ec54a04f45abec069682c02c95486df9353e93a15a817270f112d46f8b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "73E800C4152BF95F38C41604BC4A4772 : 7531DB796A312529D8EECDDD5E6DDC291E6B8A9C : 8EB650F711A81233A223F6A3E73E5A807AF72B4C4F1B2E61D62C62F9CD67E934", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8eb650f711a81233a223f6a3e73e5a807af72b4c4f1b2e61d62c62f9cd67e934/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "51A01D82E1230CEA207A24E0D18787C1 : A0900BB9DD4E26AEEEB8842A3F8E0F433F04DF52 : E709369B1FC0A866A36F6E293E755999CB3F759BDF630A0580F7AFE29BE4F834", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e709369b1fc0a866a36f6e293e755999cb3f759bdf630a0580f7afe29be4f834/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "60336BCE29B6C4C4BAE0259A4B974A5E : 49E07A7485485E38D7A967A4D1676B95CA013CD8 : 43E60EB2088E59325790C610E34CBED8A67FCCBEB54E4DB01D80CB0382F35B82", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/43e60eb2088e59325790c610e34cbed8a67fccbeb54e4db01d80cb0382f35b82/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "18E791BE10D228E56C51C5BFEC4DC8C8 : 4D1AB592A67B62C205F5EEA1C9CFE7D751B5B611 : 84073A1C1C2E41B170B7AE78573A3E6F10A20AD39AC65B1A11AFF992BA3479C4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/84073a1c1c2e41b170b7ae78573a3e6f10a20ad39ac65b1a11aff992ba3479c4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1736F0636F594DB38D52B201ABBFC555 : DE4AE9F12BCEA2EB7D190AA66E8978EFE410D9EC : 57C54E2F7A855C3A5B6C6575B6F782BDD5CD0D01A46661673E9E380EFFAB0558", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/57c54e2f7a855c3a5b6c6575b6f782bdd5cd0d01a46661673e9e380effab0558/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "85E4B03A93FB0944BF991ECCD67081A0 : 9E59AE989DDFF0A0F77838B1171C403F33FEA4FF : 5DB56E1B70CE6CE0E97630649B27156469015084273CB2D696D55489F2758AD9", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5db56e1b70ce6ce0e97630649b27156469015084273cb2d696d55489f2758ad9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E5F595C0FBFAAE80EB588E7F6627FEE2 : F6244ED376D40F73AA05B11FBD421A6E97DB3B7A : 27070824D0C38934614AE591EAA35A267B3F2BDC6464FF1F85C9313D24C126A7", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/27070824d0c38934614ae591eaa35a267b3f2bdc6464ff1f85c9313d24c126a7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7D5F78CA58B2A5C4931DC996BC4BAA76 : DF397B2D85B21D0F612E3CEBA54FAD1B1A638F42 : 1CADB8B09979B13148626727B2F200D6553B81319D53FED44D2416EEB1A3F2E1", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1cadb8b09979b13148626727b2f200d6553b81319d53fed44d2416eeb1a3f2e1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3F21375A1AE434716DDF64504906A757 : 9C85AD6CA482DFF6EF194C7B7AD8D0DC6D31D357 : 1D867EC0566A2DA72F05381E50AB6CA7C7E97F536C5193C0A675CBFA39E4987A", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1d867ec0566a2da72f05381e50ab6ca7c7e97f536c5193c0a675cbfa39e4987a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "059E860BBC029F8ED672EEBAC7B1DBD1 : EF8367A822D3B4E52F94D7D03F8FC790AC50DA97 : 165103963C166BA1AC177CF093A2BDA228A14B00B22D25DE40E79334D93235D6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/165103963c166ba1ac177cf093a2bda228a14b00b22d25de40e79334d93235d6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6D677591C3E7AC44F1D3B63081785521 : CDF8B4CE6E2CD43C57EF5BBE0CD2D6A3098C7B39 : 5B953AA718D60D4C2616BB84B72040BF1455950C916E084501926E83AC4C6CF4", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5b953aa718d60d4c2616bb84b72040bf1455950c916e084501926e83ac4c6cf4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2444283E35E69CAA45E5171B75510930 : 72F02BAE0B55CCB586C3B9902B76B47ED87A8629 : 17835D062D1440B5A310CDEC25A7C3734340F90AA5B5631C5FEFCF08E6C6090C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/17835d062d1440b5a310cdec25a7c3734340f90aa5b5631c5fefcf08e6c6090c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "64036987FDD56ACBE09AEB6570B8F128 : A67DC205B111A3E361D07B21F6D547594A617578 : E432A6CAFFBD03BE72F4C8138BE5A4B20B56B18547177CC7452D48A0E516B4F6", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e432a6caffbd03be72f4c8138be5a4b20b56b18547177cc7452d48a0e516b4f6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "77133E391096D0FFAFFFDA8A35500889 : C5E2809D86D13F31ECAA73999739666C1330C748 : 9F116D9AFF026308BCFE53D9D6571C5CD06ADA8CFE13B8A971B1158C6033DBCD", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9f116d9aff026308bcfe53d9d6571c5cd06ada8cfe13b8a971b1158c6033dbcd/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A7F6C1B17017D828704376748CA02700 : D6CE93C22C86565E3E00A2761AF2564138767307 : 40AD4AA0A31FF589C60FDD6B45AE3C15AF759B818C3BFDA54A1943ABFD089A96", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/40ad4aa0a31ff589c60fdd6b45ae3c15af759b818c3bfda54a1943abfd089a96/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "28D9CE33DBE0CB20A4AF2F20C7C272FA : F6BAB18AC9DEC2326B84D1FA29BC8A116063185E : C351907CFB0759E410FCF1840C2D61B802EA4BCFAF85B96713D89147A82DA4F8", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c351907cfb0759e410fcf1840c2d61b802ea4bcfaf85b96713d89147a82da4f8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "78419B7AC494464D92438FF44EF9429B : EC417251605B852205E9D6D9E05F2B61BEF9B6D3 : 4C4529AA54C211FF3EB048610B81A5814C618574E85D7438AD58969A6D4694C3", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4c4529aa54c211ff3eb048610b81a5814c618574e85d7438ad58969a6d4694c3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "21A82E2F091580C007B234E49CAD43EC : 4D7E602AA2803CA67554819EABA9BA26232FAB72 : E304C2231C1CE76A372F2BB0FC4FEAC2AE33AEE8328370B02D3622CA7B75F8D0", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e304c2231c1ce76a372f2bb0fc4feac2ae33aee8328370b02d3622ca7b75f8d0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "AFF809ABC989EC07C7B2F8AE56D7A790 : BEF11EEBFA8C92C75052F51465942CA528F0B7EA : A88696D7D0860E753E0E085BAA2ABBA7E5140D2EBD5FE777E737727022E2CB26", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a88696d7d0860e753e0e085baa2abba7e5140d2ebd5fe777e737727022e2cb26/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "661660797F131ED80980E691A3EE13C6 : 6448E8E8572BFC1F882D995227108A0A0A967F4D : 5883FE5C4F87A05F3FC81AE317ED5DFDAF98DDFC630D13C702B40C0AC1CD1E85", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5883fe5c4f87a05f3fc81ae317ed5dfdaf98ddfc630d13c702b40c0ac1cd1e85/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6D288CC18F1E23404D7D62E1F5F405D0 : 6474D9B51F7A7760B5C8AB5F15EAD311068E9934 : A2BEB56EA4777B79B7F082190AAB3C1D9CD9CFD683C059FEBF04E13F411217CA", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a2beb56ea4777b79b7f082190aab3c1d9cd9cfd683c059febf04e13f411217ca/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "A4E009B8C237F22150AD8A806FDFB210 : 36FDB69729468342379226B6C8EBD3CB211EFEBE : 5F93A2DB60AFFE0FE6FC7F3B69034041652C8FF5F9CC41E0C12DAD8959CC9D14", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5f93a2db60affe0fe6fc7f3b69034041652c8ff5f9cc41e0c12dad8959cc9d14/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "B1F4D63333E242BA7C04DAC11A7283B3 : F8022A35AA6440D733B56EA5B79E399735A1513B : 2D415B91F3170561F373E5D2C374AFA2EAED0E43D8A69B8670744B1E75D2B101", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2d415b91f3170561f373e5d2c374afa2eaed0e43d8a69b8670744b1e75d2b101/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A0F5A751578F4F4361BBC5C6668C2C47 : 0EA891322F611D407FB86736252D59786B224A2E : 435AFFC384C54AB73A421D9D4AE32EAA07CC45568946CEE319EC5A2B59096968", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/435affc384c54ab73a421d9d4ae32eaa07cc45568946cee319ec5a2b59096968/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6177F866C8C7A1B10EAB94432988D900 : DE486B351AC37514C97C24ED79EA824DF622C8E0 : 29CA1831E18B9BFB067CEBA78AA57759B1483C99B8B0C01B441E836588C76343", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/29ca1831e18b9bfb067ceba78aa57759b1483c99b8b0c01b441e836588c76343/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "52143D89C9AD1A7B3344CA66F9AEB2AC : 16A72E517817C667C15B9E94F7DA4BCA34C5E519 : DE8258D561B7557CC8A092760F35B701CC087D9C5C1A5929A8F3D72875BDFF74", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/de8258d561b7557cc8a092760f35b701cc087d9c5c1a5929a8f3d72875bdff74/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Variant.Kazy" + }, + { + "Type": "File", + "Value": "DA04089E8B74519874E98A4EFAEAD602 : 21A49002507B06C6109FF49F72DBD18E011E33FC : C51657DCC05D8C11B47457D1AD8264C8883EEAFD1ED4EF4FC998578E6A1280B3", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c51657dcc05d8c11b47457d1ad8264c8883eeafd1ed4ef4fc998578e6a1280b3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FE45961055E579478F1B655671A8D631 : 4B73C4F38A100A57F28B37627B4CD97A4F04CF2C : C29FB2D3A226CAD192BC0EAA5A82D62ED85EA6254EBF6D3D660C0F715AFAE47E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c29fb2d3a226cad192bc0eaa5a82d62ed85ea6254ebf6d3d660c0f715afae47e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "10AA3333C9898293D44252AADCA67B1F : DE94A0D75748A6E30EFDB2CE98B6649E9DD94EB6 : BDCAD792563A8E49CBDD47EC64C8172D17399CABD98AF0B7E30554901E9F2AC1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bdcad792563a8e49cbdd47ec64c8172d17399cabd98af0b7e30554901e9f2ac1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "JS:Trojan.JS.Downloader" + }, + { + "Type": "File", + "Value": "959CE80332D2C50B7186081DE5C613CB : E50DCD23723EB5D287EB90757FFFC5D467DB21AF : FFCF7EC3EC78B2E0A93FD10381DEAB0CD60B5D0C3FB1D07E4E403DF48335E6E7", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ffcf7ec3ec78b2e0a93fd10381deab0cd60b5d0c3fb1d07e4e403df48335e6e7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BB6CC9D519BEBFDC36DB7761DF4A7B13", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bb6cc9d519bebfdc36db7761df4a7b13", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F9A94DFE42E79E73B8F966CB7FC61B86", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f9a94dfe42e79e73b8f966cb7fc61b86", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3C841FF13EC190EE976FF688F5B66768", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3c841ff13ec190ee976ff688f5b66768", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B3FD01873BD5FD163AB465779271C58F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 100, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b3fd01873bd5fd163ab465779271c58f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0DD0C50F4453ED9C8446645BFA8E6840", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0dd0c50f4453ed9c8446645bfa8e6840", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7C1C5C7723665A42AECA21F2E7377619", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7c1c5c7723665a42aeca21f2e7377619", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A050263B6FDF573F0F825D444E9974F9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a050263b6fdf573f0f825d444e9974f9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A5AF7E6B6831F6B8D2144D8DAF1CB20A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5af7e6b6831f6b8d2144d8daf1cb20a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5CA6FFC82FAC26ECB61516358CB4DDB6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5ca6ffc82fac26ecb61516358cb4ddb6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C9FC74ED1D24DB44474E38A7BEA43D20", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c9fc74ed1d24db44474e38a7bea43d20", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "00C81555286B61E2F019B3142232137C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/00c81555286b61e2f019b3142232137c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "47EC2CD3B3ADDEB7F8F195B3E810DA45", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/47ec2cd3b3addeb7f8f195b3e810da45", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E1161A3742BD6ECF374A61215262427D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e1161a3742bd6ecf374a61215262427d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B1E8CE93372FC7FAAABCA321147B704E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b1e8ce93372fc7faaabca321147b704e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7304800DB5F24134CCA1612BEDFA6D35", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7304800db5f24134cca1612bedfa6d35", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1061C1F19F9E7FE3BDDF0BDC38DC7FCB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1061c1f19f9e7fe3bddf0bdc38dc7fcb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "09A366D8D4958D3E39675E9A912CDC59", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/09a366d8d4958d3e39675e9a912cdc59", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C65995258E1CC80F777CD2D2FCD6D092", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c65995258e1cc80f777cd2d2fcd6d092", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A2F8B3D084BC0A21E9DF6EDB47A0442D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a2f8b3d084bc0a21e9df6edb47a0442d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "636C5690438852734AFD7D6605A9BD2C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/636c5690438852734afd7d6605a9bd2c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "674DECF958022A1BF08F0A7ADB06A716", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/674decf958022a1bf08f0a7adb06a716", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E93177B2648547F40A5BDB898FCA0944", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e93177b2648547f40a5bdb898fca0944", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "22B7662A576C6247AD572E65B4C8ADB0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/22b7662a576c6247ad572e65b4c8adb0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CC513FD0044990B7A2419C0A80CCF407", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cc513fd0044990b7a2419c0a80ccf407", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5DF0241E10C071214AAD23635D928552", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5df0241e10c071214aad23635d928552", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FAD7786EBAB30C8535B46F8C87B8359E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fad7786ebab30c8535b46f8c87b8359e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E660813B0B336166CC08A526BF3E2E4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e660813b0b336166cc08a526bf3e2e4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F58A67D1B920DE1F72FF2BA25FE575FA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f58a67d1b920de1f72ff2ba25fe575fa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2EF7C2263816B04EC8EDF5DBE8C5E2DC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2ef7c2263816b04ec8edf5dbe8c5e2dc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C543E05AD00A7E14D7074BBD26B06D8B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c543e05ad00a7e14d7074bbd26b06d8b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FEABFFB197304B5F29A99DF13A9A9584", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/feabffb197304b5f29a99df13a9a9584", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "461C73604AC089D0F1E4418C1BB97154", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/461c73604ac089d0f1e4418c1bb97154", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BC7C3D4B859FDA296F7673BE1FD1B25A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bc7c3d4b859fda296f7673be1fd1b25a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BE2F5069086220F78E75CE0DDF95884A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be2f5069086220f78e75ce0ddf95884a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7D3938DE9830754A6101075960A5AB6B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7d3938de9830754a6101075960a5ab6b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9BA5F001025AC817A550B017D40D9563", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9ba5f001025ac817a550b017d40d9563", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "12B0CEBB38776D6E549E7609A314CED9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/12b0cebb38776d6e549e7609a314ced9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B967C0D2ED9F3CDE126F0746EAC5E924", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b967c0d2ed9f3cde126f0746eac5e924", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "602FBF772F7CBF41BECFCA00D06B88C6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/602fbf772f7cbf41becfca00d06b88c6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "80A683A823FC99DDA0DE6985577E7F92", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/80a683a823fc99dda0de6985577e7f92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F5F662FDE72CD4DE87ED6CDA438BC1A8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f5f662fde72cd4de87ed6cda438bc1a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "909430C5B89586C88E2280D6B4C968D6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/909430c5b89586c88e2280d6b4c968d6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3111E05BB6F7146C3E03008E78146BD9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3111e05bb6f7146c3e03008e78146bd9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F063DA33DC162F90E4682DF35E8AE86C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f063da33dc162f90e4682df35e8ae86c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C3C5E88BC2B902EA61D097BBBE6BF5B0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c3c5e88bc2b902ea61d097bbbe6bf5b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "88F1AFB49DF9E491FE4D9508CB22C00E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/88f1afb49df9e491fe4d9508cb22c00e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "758E812E12DA45DFFB6C3C46636A1CA2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/758e812e12da45dffb6c3c46636a1ca2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A9C519AD13CA561351E8F7EB1A1B97A0", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a9c519ad13ca561351e8f7eb1a1b97a0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4006CBB6D3308B5A5CBDB1F6411BC6CF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4006cbb6d3308b5a5cbdb1f6411bc6cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "58E2ED4B2BEE73598DC369FC0B058057", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/58e2ed4b2bee73598dc369fc0b058057", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6894BB2DFE1FCAA4D11E7EC2296A38F8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6894bb2dfe1fcaa4d11e7ec2296a38f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A2B780A92953647CF5E224D19A4BBAFF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a2b780a92953647cf5e224d19a4bbaff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "24EDF395955BFA96EB24B24CDC5E9196", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/24edf395955bfa96eb24b24cdc5e9196", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BB9CB1C3AD329F0EE5B619A1CA55BBD0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bb9cb1c3ad329f0ee5b619a1ca55bbd0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3D7BC996B16BFF31572D4EE356221E3B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d7bc996b16bff31572d4ee356221e3b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "59EE74A1A1E7A0A1CF0A54C8F753A86A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/59ee74a1a1e7a0a1cf0a54c8f753a86a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "492D75B39DF91AF5AC34F0A712F737A2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/492d75b39df91af5ac34f0a712f737a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D125ED33D17FB3DDCF14A40B50CE2E98", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d125ed33d17fb3ddcf14a40b50ce2e98", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5E8B7412D1769F0F7279DE75976D115E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5e8b7412d1769f0f7279de75976d115e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "65FE6898BD82D95DBEC285FB9895100F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/65fe6898bd82d95dbec285fb9895100f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "032C60A137CE65FE80F9301B82FD5258", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/032c60a137ce65fe80f9301b82fd5258", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5F15BFFA61B8DB8C1756F556844F0C3D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f15bffa61b8db8c1756f556844f0c3d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "805193190115AF373AB39A4B909A8F18", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 100, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/805193190115af373ab39a4b909a8f18", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4ACC5148F22A5AC2CB14E4623526EC22", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4acc5148f22a5ac2cb14e4623526ec22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EDBEC4C188EF016482422BC10C50018F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/edbec4c188ef016482422bc10c50018f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "33A28EB843653EC6BE351BEFFC17F159", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/33a28eb843653ec6be351beffc17f159", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FBC01380ED1EED8A5C1B8BAF0FDA4D6F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fbc01380ed1eed8a5c1b8baf0fda4d6f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B060154DF1298BBAEE87460B520650BC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b060154df1298bbaee87460b520650bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4371CB30510E1D349DE512FEB8B60F76", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4371cb30510e1d349de512feb8b60f76", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A4B2BEDFD1A15CBF08A747C613EA7BE3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a4b2bedfd1a15cbf08a747c613ea7be3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F3758966E6B7C6A6D802CC46AB6865FD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f3758966e6b7c6a6d802cc46ab6865fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D417060F327C4E4047ADD255724411E9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d417060f327c4e4047add255724411e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "90FFA8D7125F9589BC0C4017CAAF7BE7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/90ffa8d7125f9589bc0c4017caaf7be7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "650F5690F2DB7A76878D51E08B8CE6C5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/650f5690f2db7a76878d51e08b8ce6c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F0CDD601A3BCC6A12ADE2433C7348F0B", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f0cdd601a3bcc6a12ade2433c7348f0b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9F64D4434A5FD908986F0F54EA8BC6DC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9f64d4434a5fd908986f0f54ea8bc6dc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "91789D21D59720F2685D11D011962C92", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/91789d21d59720f2685d11d011962c92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1C36EE0B7EED2D64FAD2B058DDE753D0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1c36ee0b7eed2d64fad2b058dde753d0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7BB457B94F00D43C7E2D71D65E1E5468", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7bb457b94f00d43c7e2d71d65e1e5468", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "87C04EAEAAE9661BBAD2BEC6CF37DF10", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/87c04eaeaae9661bbad2bec6cf37df10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "83B0FF7674BAA615194C6791BAA43938", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83b0ff7674baa615194c6791baa43938", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FD45192A2AF1A0A3976077E97BFC3ECB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd45192a2af1a0a3976077e97bfc3ecb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "202E1F1BB9F1D5FE10B628D671DF7275", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/202e1f1bb9f1d5fe10b628d671df7275", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B60809E2F3A07C86B839CE5BEF317FB7", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b60809e2f3a07c86b839ce5bef317fb7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C22FFC69B478C569018131E8E4D1BED9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c22ffc69b478c569018131e8e4d1bed9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "63700AA925010B749081C5162764A3AD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63700aa925010b749081c5162764a3ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "868C5B426E61E78DDD109C68032C8EA5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/868c5b426e61e78ddd109c68032c8ea5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C97A1A4EBB2E581501133E4D24972D5C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c97a1a4ebb2e581501133e4d24972d5c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "756FE33419BFAE91FF1FDCC3AC91A812", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/756fe33419bfae91ff1fdcc3ac91a812", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C31487502BE35DC6426482D8DE182F47", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c31487502be35dc6426482d8de182f47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DFB136B3792B3337FDCE9D6754CEFAEF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dfb136b3792b3337fdce9d6754cefaef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C2E4D9D77DBC8C7806AF8470D5A3CA25", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c2e4d9d77dbc8c7806af8470d5a3ca25", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "734F1A3A3352B9F7BBD201952EAD64C0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/734f1a3a3352b9f7bbd201952ead64c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A5D3667316F947003BCE3846120657C4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5d3667316f947003bce3846120657c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ADE68102D2FEA66AB68E18234BAB6B31", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ade68102d2fea66ab68e18234bab6b31", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2881A84A51662930A87CC7F00E5AC21E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2881a84a51662930a87cc7f00e5ac21e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "486FC0B10317D83557BEFC3757732116", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/486fc0b10317d83557befc3757732116", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0A3BE2AA2FABBC539B099FCB575FACC0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0a3be2aa2fabbc539b099fcb575facc0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "76EB16970A3DA163931D35117D6B984C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/76eb16970a3da163931d35117d6b984c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AD59A6943A4C58C2C7F9655280465337", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ad59a6943a4c58c2c7f9655280465337", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "63BF39500A83931A1C0AAB27E445D4CE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63bf39500a83931a1c0aab27e445d4ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4735A9C29B82261CE797CDEC8AF6FE29", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4735a9c29b82261ce797cdec8af6fe29", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8804B0D06D8758BAD9B2BEAB4363F902", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8804b0d06d8758bad9b2beab4363f902", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "827D74802728D29E9C8F699212572200", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/827d74802728d29e9c8f699212572200", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "57CAB1B1C7572163F61233ECD40BE81E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/57cab1b1c7572163f61233ecd40be81e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F773E14EE1B70FD7D459BC77C71B4359", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f773e14ee1b70fd7d459bc77c71b4359", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "18CEFCDF2321DD04929FD1066872FBA0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/18cefcdf2321dd04929fd1066872fba0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "843959F6C27E316A8C103AF8A67FE7D0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/843959f6c27e316a8c103af8a67fe7d0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A6737561C262F8CCE4D24729C660C68F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a6737561c262f8cce4d24729c660c68f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F4094CFBD75884D678F10C71FA26111A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f4094cfbd75884d678f10c71fa26111a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B42BCA4FEF6249CC4E72F4E86865623E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b42bca4fef6249cc4e72f4e86865623e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D0F698E4EB3718F2FB96976C383DB8C9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d0f698e4eb3718f2fb96976c383db8c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D8ADC227E434BAE2533CC44653F55DB8", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d8adc227e434bae2533cc44653f55db8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "92DD507FFCFE523AFD14B90315C2B191", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/92dd507ffcfe523afd14b90315c2b191", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "646DD16F2C4B516F8FD7685F1A2FF862", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/646dd16f2c4b516f8fd7685f1a2ff862", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E1161A74A5AA5A79B8DAEB9065BFA7F0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e1161a74a5aa5a79b8daeb9065bfa7f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E00280FE05D31CE32A3BA3EDFE9831E4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e00280fe05d31ce32a3ba3edfe9831e4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9C7790BB77EC34CC4AA96B7B68A2E663", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9c7790bb77ec34cc4aa96b7b68a2e663", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7419F2B55CA694BC7E06152E052705A5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7419f2b55ca694bc7e06152e052705a5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C3CFC4C4C463604F5EC6C3EA076D3680", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c3cfc4c4c463604f5ec6c3ea076d3680", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "00CF3C9FD62410AA82643EA1C9D53C41", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/00cf3c9fd62410aa82643ea1c9d53c41", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "170F68B763C781CBB85015870FA7BC47", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/170f68b763c781cbb85015870fa7bc47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5751C2550431E28C94DB62170BA48373", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5751c2550431e28c94db62170ba48373", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7EF7EACB70180FA51651FB1DBCC69B62", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7ef7eacb70180fa51651fb1dbcc69b62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F3ECB402AA150EA620D0F525EFCABA9B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f3ecb402aa150ea620d0f525efcaba9b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "83FEA2F07C1ECD14CB75E3D56ADC7D26", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83fea2f07c1ecd14cb75e3d56adc7d26", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5B4386EB9075E5F74865176385663C5B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b4386eb9075e5f74865176385663c5b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E6C4D49B7B4862512DD7A0349F68E9EE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e6c4d49b7b4862512dd7a0349f68e9ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3ED88BB6CDFC6B014D7C77AC9DB7BA49", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3ed88bb6cdfc6b014d7c77ac9db7ba49", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7723DF479A108AE73DB11872D06D9406", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7723df479a108ae73db11872d06d9406", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "957CBE4B4DFB54DADD30F5E854ACBC55", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/957cbe4b4dfb54dadd30f5e854acbc55", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C15FC614DA5437F291BFFC9F9A00270E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c15fc614da5437f291bffc9f9a00270e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EDB8DE8EE9ED7B55249126EE2F41C208", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/edb8de8ee9ed7b55249126ee2f41c208", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E1DD7A8F60561EAADDA63E6248B3E656", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e1dd7a8f60561eaadda63e6248b3e656", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C43045371A30D72FCF7135444239385F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c43045371a30d72fcf7135444239385f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "97BDC6D8958CA281C105F3405CE14944", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/97bdc6d8958ca281c105f3405ce14944", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "74AD62C971FE12C78737B6C27CD4A733", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/74ad62c971fe12c78737b6c27cd4a733", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "80A501D8C57F93286B0E5C79DE9408F0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/80a501d8c57f93286b0e5c79de9408f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F5CC18CC757E25C1259CD2D2E0ED741F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f5cc18cc757e25c1259cd2d2e0ed741f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3497C338CD664CF9ECDD4A01E424A46D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3497c338cd664cf9ecdd4a01e424a46d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7B1A7A63873C32A5E37E21DB7BCF2A3A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7b1a7a63873c32a5e37e21db7bcf2a3a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "54E20EFDC74F62EB34264BE9B91DECA6", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/54e20efdc74f62eb34264be9b91deca6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "013DDDC5B9C3B93F563C99DEE2C9DE3D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/013dddc5b9c3b93f563c99dee2c9de3d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "13DFF80DFFCEF2B438C019DC6209D1C7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/13dff80dffcef2b438c019dc6209d1c7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D557D81BEE79CA8F01E2091B84908524", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d557d81bee79ca8f01e2091b84908524", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CCE4911702A0B633BABCF0547927A623", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cce4911702a0b633babcf0547927a623", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C0A0F804A150248FC94B443BB857A1F3", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c0a0f804a150248fc94b443bb857a1f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AF9D4C45E65B5EC3D943B5E6285EBB56", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/af9d4c45e65b5ec3d943b5e6285ebb56", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "12034AF5779F42EAAC10C324A6C13F3B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/12034af5779f42eaac10c324a6c13f3b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9E2759988C40C3255C3B0B84304D420E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9e2759988c40c3255c3b0b84304d420e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8ACDB3CFAEE8C1C4D2B48484340F515C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8acdb3cfaee8c1c4d2b48484340f515c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DE1068F37DA815636A37A6D27967ACAD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/de1068f37da815636a37a6d27967acad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5F27547C76045FD7185FDBC1D966E11A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f27547c76045fd7185fdbc1d966e11a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "66996D58561168C9B4E7088BB3EAADE0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/66996d58561168c9b4e7088bb3eaade0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D5F30B078FBA59F7510EDB0D15E5BA76", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d5f30b078fba59f7510edb0d15e5ba76", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DC3BFEC1F065B9FE2F41EA9E70EBDA46", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dc3bfec1f065b9fe2f41ea9e70ebda46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C134B9F51A9FFABA4581A7A58CDE67AA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c134b9f51a9ffaba4581a7a58cde67aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F51874056F6FDC787219169A9E641BC2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f51874056f6fdc787219169a9e641bc2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0986024A43811CDBE3F1F6A61005FF6F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0986024a43811cdbe3f1f6a61005ff6f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3A78856198BA2A94B41EA386C1BE05BF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3a78856198ba2a94b41ea386c1be05bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B0D8BD7900D257CF7E6ED080BC041C1A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b0d8bd7900d257cf7e6ed080bc041c1a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "97868ECE850F673BAC9316767DDA7DA3", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/97868ece850f673bac9316767dda7da3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "86665A903E7231C6DA3412CF16AF9EDD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/86665a903e7231c6da3412cf16af9edd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BC6ACB70807969F0192B320D905A9190", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bc6acb70807969f0192b320d905a9190", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CECC52DE57F9359ACBE188D6F5CF5290", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cecc52de57f9359acbe188d6f5cf5290", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AFD2990890EF76A4D39302F92C67BBDC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/afd2990890ef76a4d39302f92c67bbdc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "60EF9CB9E3DF40843B8C2F5AEAAC242A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/60ef9cb9e3df40843b8c2f5aeaac242a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F3AD4506E70DDC564AF6967E25A44547", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f3ad4506e70ddc564af6967e25a44547", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C4048BC11A2DE45A486F441DBB266062", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c4048bc11a2de45a486f441dbb266062", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FD7CD58D735F5FC6AB5359ED0C2F0C8E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd7cd58d735f5fc6ab5359ed0c2f0c8e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6A155B59A5FED5480BDC61D10ADCE5FE", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6a155b59a5fed5480bdc61d10adce5fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A47A72CE88E89299B6051BCB08B3266D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a47a72ce88e89299b6051bcb08b3266d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "578D0A5959E9A5D6889A7BE6D1169059", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/578d0a5959e9a5d6889a7be6d1169059", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "872E5D5E1D0DAC44EE950CA2F0AB4250", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/872e5d5e1d0dac44ee950ca2f0ab4250", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4BF0EFD058427106AD814A4B490ED146", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4bf0efd058427106ad814a4b490ed146", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C107BC5EEACED9E8F53B022C263B855B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c107bc5eeaced9e8f53b022c263b855b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "49115BE0DA46D997A388C53C1E6479B0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/49115be0da46d997a388c53c1e6479b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C606B8FB6D95444DA6308140E31479AA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c606b8fb6d95444da6308140e31479aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "34149A544085621A2A6C95F26C83320F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/34149a544085621a2a6c95f26c83320f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5A3528103E7E29103CDC642ADD5743CF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5a3528103e7e29103cdc642add5743cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "898F23A10305A6BBDDDDD78C4579C830", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/898f23a10305a6bbddddd78c4579c830", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7E70B563733F9E934251F0DC4233C138", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7e70b563733f9e934251f0dc4233c138", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D081522163AD5F9FB5A73584D5A5A976", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d081522163ad5f9fb5a73584d5a5a976", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "846C5880DA55C3125B9CFCC76BD09F4C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/846c5880da55c3125b9cfcc76bd09f4c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5B38C8498031E9D91D0219A22C93F7D8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b38c8498031e9d91d0219a22c93f7d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1BB8172AE13355E5DE3026FE72B41CD9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1bb8172ae13355e5de3026fe72b41cd9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B699FD04E9F32D7E1865F52530A3B7DC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b699fd04e9f32d7e1865f52530a3b7dc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0950B48823C54F83D7B3CE65CA5AF084", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0950b48823c54f83d7b3ce65ca5af084", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "66985640173B4823D23C29A7CBDFF7B0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/66985640173b4823d23c29a7cbdff7b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1BA8601746BD43F5996F26E53E0859D3", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ba8601746bd43f5996f26e53e0859d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5D92FC4E238DB48DD4CF1B852954FA75", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5d92fc4e238db48dd4cf1b852954fa75", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5C80E6022E808A1AB1AB95393070A734", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5c80e6022e808a1ab1ab95393070a734", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "33CFAFA3E5C7DF750878B4FB7F877BCC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/33cfafa3e5c7df750878b4fb7f877bcc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "353DB63D060906194BABF25231EB97F2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/353db63d060906194babf25231eb97f2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3D0E45C99DF8493AF999A6FA536C80CC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d0e45c99df8493af999a6fa536c80cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BB11B7BB2DBE158E004D432F0C626081", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bb11b7bb2dbe158e004d432f0c626081", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7D90CAADA53A03DBED3A4CE2EAAB6A0F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7d90caada53a03dbed3a4ce2eaab6a0f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9D8713A0F9820D20010C40078AA204BB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9d8713a0f9820d20010c40078aa204bb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9F77285DA17A1A5CC5527A990828F5EE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9f77285da17a1a5cc5527a990828f5ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "52A567EB9F9F06CC5E931F660F5F2ACC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/52a567eb9f9f06cc5e931f660f5f2acc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2C6DC44F3D234F9B848F4CB0FCEA686B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2c6dc44f3d234f9b848f4cb0fcea686b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "852EC3159723335A73ABB1B122B1BF46", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/852ec3159723335a73abb1b122b1bf46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3CD528001C2E360E411579FA334D0C08", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3cd528001c2e360e411579fa334d0c08", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "61EC1250CC4D74D3FF70182A5CC0E791", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/61ec1250cc4d74d3ff70182a5cc0e791", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "608B015C4ABCA10B1676024DE4F39731", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/608b015c4abca10b1676024de4f39731", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5299D1763B85F076880446CEED3B6772", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5299d1763b85f076880446ceed3b6772", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5E95C01D76BA4D4DFCE4B621A9F46B2C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5e95c01d76ba4d4dfce4b621a9f46b2c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5212976AAEDD61881C1786F9F1476CDE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5212976aaedd61881c1786f9f1476cde", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D7ECCEE665814332258E83377163C441", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d7eccee665814332258e83377163c441", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F38E7BC1B5A54864159A2AD6772F0F73", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f38e7bc1b5a54864159a2ad6772f0f73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8C2FCF6CFCC2EF787E576E9D6FD8D620", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8c2fcf6cfcc2ef787e576e9d6fd8d620", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C98761E6B07BA521C5076130640478B5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c98761e6b07ba521c5076130640478b5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2802C872C0269F5A60ACBB1116203C31", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2802c872c0269f5a60acbb1116203c31", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D1BD264ADB6FCAFCF0BEBEB7F10A58A9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d1bd264adb6fcafcf0bebeb7f10a58a9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "920D15D3A35F56679BDE5B2660920A36", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/920d15d3a35f56679bde5b2660920a36", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3E689C4E4CC8642A8F14A9B069C97348", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3e689c4e4cc8642a8f14a9b069c97348", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1041459CF33EE2B269F7238B67777A67", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1041459cf33ee2b269f7238b67777a67", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "74DAA1E0DC62906BA690BEF629ED5A9C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/74daa1e0dc62906ba690bef629ed5a9c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DC6384B0BD6DDBC6F8EF40EDE0E178A9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dc6384b0bd6ddbc6f8ef40ede0e178a9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "50AD82F92EA532056BEAD2B034182155", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/50ad82f92ea532056bead2b034182155", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "670BAC4E7A69841C3E6614CE2D4B318D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/670bac4e7a69841c3e6614ce2d4b318d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FD3A6529E1A90B23C14481653CD1ED22", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd3a6529e1a90b23c14481653cd1ed22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DB085A4E1A52F25354C192B629A49DEE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/db085a4e1a52f25354c192b629a49dee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A80D8EE4ACECAD52DC47286C1ABC758D", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a80d8ee4acecad52dc47286c1abc758d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D76CFE3BB3860392DB459E6960FC8298", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d76cfe3bb3860392db459e6960fc8298", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1B3C2974719B272F334AFD3EF0ADBD91", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1b3c2974719b272f334afd3ef0adbd91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "68861393C23E8B9DEC7CB4B3947DDC2D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/68861393c23e8b9dec7cb4b3947ddc2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7B06C65FF3C87BE1B9348BB70099C78D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7b06c65ff3c87be1b9348bb70099c78d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7A7DFC9A90BA2C55F6958B457EF9247B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7a7dfc9a90ba2c55f6958b457ef9247b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EEE45CBBEE3E89ABA89342774EDE3FF4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eee45cbbee3e89aba89342774ede3ff4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "98D5C4D2115E220E8E3725755E2C568F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/98d5c4d2115e220e8e3725755e2c568f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A6C1481974786818A3501F0A7B35DAC0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a6c1481974786818a3501f0a7b35dac0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7F10B7F8250D91F32C2634ED1ABDD00B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7f10b7f8250d91f32c2634ed1abdd00b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5741C1FEF44934D6EABCE3DBDB01BA1E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5741c1fef44934d6eabce3dbdb01ba1e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B2C956C6FF2C3D347A07BEDD35A39981", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b2c956c6ff2c3d347a07bedd35a39981", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "01109E560B6C8610A1F82DA444B2692F", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/01109e560b6c8610a1f82da444b2692f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A6F25EF911C102FDB7BF5AA533688063", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a6f25ef911c102fdb7bf5aa533688063", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1FFF7C200C44F4CD529088279845194D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1fff7c200c44f4cd529088279845194d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B58B85B6EB7005A8B3B4E5FA78743DEC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b58b85b6eb7005a8b3b4e5fa78743dec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7DD58F043B91B52699E5B4819DE8D829", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7dd58f043b91b52699e5b4819de8d829", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BC7ACB001BA1E687D216E70714ACA966", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bc7acb001ba1e687d216e70714aca966", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F9A632EB1986C065BBD15153987972C8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f9a632eb1986c065bbd15153987972c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "641CB7A9CE75BBD5839A15203BC22F89", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/641cb7a9ce75bbd5839a15203bc22f89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9E80392CD7AB75548D8C300F193ADAAB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9e80392cd7ab75548d8c300f193adaab", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "92AEFD3C99565A5D7F05C3CE13597648", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/92aefd3c99565a5d7f05c3ce13597648", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8D72AE4F585C9123ECE98A9DDDFE4C0F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8d72ae4f585c9123ece98a9dddfe4c0f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8C73A591344D90EFCE9AFB7EE9452FFC", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8c73a591344d90efce9afb7ee9452ffc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F5ADC8943CC0C3C92691147DC4323F4E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f5adc8943cc0c3c92691147dc4323f4e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3265A08903390B2760F2D1B837DBDF1F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3265a08903390b2760f2d1b837dbdf1f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "952AE02D1421F7A4DF96465051A66681", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/952ae02d1421f7a4df96465051a66681", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9B177205EE41B76031EDA4740BBB6499", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9b177205ee41b76031eda4740bbb6499", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8F46D6D30899657927E09F9736AE1A7A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8f46d6d30899657927e09f9736ae1a7a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9F0B2822FC281C5285CE5ECF8A209E8E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9f0b2822fc281c5285ce5ecf8a209e8e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3FA4362C314A7627F5BF71E1024504E4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3fa4362c314a7627f5bf71e1024504e4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D331AFB111D739766690CBBB355A8883", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d331afb111d739766690cbbb355a8883", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F09DD42044B3CF7A9A22D2A9355C18FC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f09dd42044b3cf7a9a22d2a9355c18fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "28ADC3CF866517294A0E30832EC06D4F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/28adc3cf866517294a0e30832ec06d4f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F4661C9C9A07FDABC055C87C85E2F417", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f4661c9c9a07fdabc055c87c85e2f417", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "771DEB8B720DBD784D6715403A41BDCC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/771deb8b720dbd784d6715403a41bdcc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9E70CCE6910BB05A687BD107115F9A8C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9e70cce6910bb05a687bd107115f9a8c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "64BE0CBD9FA52568341041F13DF746ED", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/64be0cbd9fa52568341041f13df746ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "12BE39405952D4BFF27583AE5EF601CF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/12be39405952d4bff27583ae5ef601cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "744FBA3630398698F57049A56BFE6B6B", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/744fba3630398698f57049a56bfe6b6b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F0EBE3DA38A879716269353A4CEB92B3", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f0ebe3da38a879716269353a4ceb92b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "00DE927F6F07786187D5B33F726E9DB1", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/00de927f6f07786187d5b33f726e9db1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F3855D7C83C07B3636E3FC89442DA8AD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f3855d7c83c07b3636e3fc89442da8ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A0001D299F646F7EEE3B14830E7EAC63", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a0001d299f646f7eee3b14830e7eac63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2BE442B7F26AD8AAB8227A617D6454CE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2be442b7f26ad8aab8227a617d6454ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C8D1D257B796684479C4224B0F399948", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c8d1d257b796684479c4224b0f399948", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1555E6629F1C1F0D8DC578591A77FE5D", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1555e6629f1c1f0d8dc578591a77fe5d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DDBAD62684AD63A499C806442CFD31D4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ddbad62684ad63a499c806442cfd31d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B1DD7820FCDC6C8059EB21CBAA27DAEE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b1dd7820fcdc6c8059eb21cbaa27daee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "32EB7CF6B59D41FAF6AEFA4CEE65C2DB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/32eb7cf6b59d41faf6aefa4cee65c2db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ED512BA6C0677216370258195924EA62", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ed512ba6c0677216370258195924ea62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "58141C29F2AE39F17C222E343B45872D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/58141c29f2ae39f17c222e343b45872d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "477C3E0F292883F074F1A05F7DD8D7F6", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/477c3e0f292883f074f1a05f7dd8d7f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AFF7772B04BDE1A5428310BAF7660D34", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aff7772b04bde1a5428310baf7660d34", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BBB76679FFED5D284CDDDAAF56EA6057", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bbb76679ffed5d284cdddaaf56ea6057", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "23970DDE469EC3E9D7B2813A57037A67", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/23970dde469ec3e9d7b2813a57037a67", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BCF29EA4D015129344AA45894D842AF0", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bcf29ea4d015129344aa45894d842af0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C744F3668D2813CECA21C7D795425850", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c744f3668d2813ceca21c7d795425850", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7F7ABCCC8F622D6DC3BA2782319B7CE5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7f7abccc8f622d6dc3ba2782319b7ce5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CF451F61C8AE83480E26E5699896C6F8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cf451f61c8ae83480e26e5699896c6f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D969EC9F1C6826E0553C2C6566A8A840", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d969ec9f1c6826e0553c2c6566a8a840", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7F55CFE7FA6D194F7236FF79A186AF53", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7f55cfe7fa6d194f7236ff79a186af53", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0B42D74DEA7D93C0C11A8F52D7A1889F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0b42d74dea7d93c0c11a8f52d7a1889f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "11270A035E3B6C67005335D3C8A687B3", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/11270a035e3b6c67005335d3c8a687b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "372F7DE209AA10E675C92A434A0B1D41", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/372f7de209aa10e675c92a434a0b1d41", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "536E69A738A1E9021AEC6726DA23B75D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/536e69a738a1e9021aec6726da23b75d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "128D7D8F99EF5D433E10AC76A3A747C1", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/128d7d8f99ef5d433e10ac76a3a747c1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CA6892454611EEB659D54E62FD83AF52", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ca6892454611eeb659d54e62fd83af52", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DFF4247064B05B096E966D6EC5879168", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dff4247064b05b096e966d6ec5879168", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "28DD181DFD9E35CD9837FE3F1CE0CB91", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/28dd181dfd9e35cd9837fe3f1ce0cb91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "12E0015FA59200F8A91BB2ABB9927288", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/12e0015fa59200f8a91bb2abb9927288", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B6B938B5558ACF210E5BEA4CFBAC85AB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b6b938b5558acf210e5bea4cfbac85ab", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8B1E02732B6BB92C33AF90754FE33FEF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8b1e02732b6bb92c33af90754fe33fef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9BAE566B695FAD6601C41C6F82EBB8DB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9bae566b695fad6601c41c6f82ebb8db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3DA0CD7BDE47AF8C76981724BDBB96CA", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3da0cd7bde47af8c76981724bdbb96ca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B7C9866A4F0919BE77D7C9D7D7E2815B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b7c9866a4f0919be77d7c9d7d7e2815b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E82F7DEB492F7B9874F59CF4CEE67E17", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e82f7deb492f7b9874f59cf4cee67e17", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3D152B78180C4F3671522B307EC83CE2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d152b78180c4f3671522b307ec83ce2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B45547089068E07611443BF460F14028", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b45547089068e07611443bf460f14028", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9740FD5BF8554DB794E763AB060BB578", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9740fd5bf8554db794e763ab060bb578", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E2019DA69D9137882B1B67E88D5F732A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e2019da69d9137882b1b67e88d5f732a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "154E12A7C4059731BD7E65FDDE93A342", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/154e12a7c4059731bd7e65fdde93a342", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A6945A6D6DAFD17FE48FCAFFDB33A5B2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a6945a6d6dafd17fe48fcaffdb33a5b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D86BDE86BC71BD42B58416BA92BF495A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d86bde86bc71bd42b58416ba92bf495a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "000C4FFBA3F5B4B1F6016CB6B8E449A2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/000c4ffba3f5b4b1f6016cb6b8e449a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6D897CD9937A1959A01D10E5919B43B1", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6d897cd9937a1959a01d10e5919b43b1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5F9B78AE884CEB4674AA7CBA50226CAA", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f9b78ae884ceb4674aa7cba50226caa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "36D3CF13115EE36DC0497D9043528171", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/36d3cf13115ee36dc0497d9043528171", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F81DEB43DA73050F86C427567215AB72", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f81deb43da73050f86c427567215ab72", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5B36CDBCF6376617A99638AC0A9B59E9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b36cdbcf6376617a99638ac0a9b59e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6CF9E0C5A7321F8DFBFCB7A97A84BF1C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6cf9e0c5a7321f8dfbfcb7a97a84bf1c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D44BF1FF16BBC406AC13552240D86058", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d44bf1ff16bbc406ac13552240d86058", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "40683AFD07410514C25D2AA4B2A43ED2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/40683afd07410514c25d2aa4b2a43ed2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F2ECA6C85E23FFF5E8D2BE2BFFE4B3DA", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f2eca6c85e23fff5e8d2be2bffe4b3da", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3EB34CC8868F3F96EF7D3E6CFB29025B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3eb34cc8868f3f96ef7d3e6cfb29025b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "735958A06BC45D34CCFF0D446DFAE058", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/735958a06bc45d34ccff0d446dfae058", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0AF97690DED1CFA68604EBB800BCB6BF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0af97690ded1cfa68604ebb800bcb6bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6575FEC3CEA3DFAF2E2C1909467EC68E", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6575fec3cea3dfaf2e2c1909467ec68e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "16A26072536CB5DE8B812ECF34B17F88", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/16a26072536cb5de8b812ecf34b17f88", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5360B2C92EBBB0ABB4B54D57F931789A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5360b2c92ebbb0abb4b54d57f931789a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B748F08DD24C4892C1DD18796F4CC929", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b748f08dd24c4892c1dd18796f4cc929", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AFA248898F46C30AB5751B69B091C070", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/afa248898f46c30ab5751b69b091c070", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4BA88A06880B97C266BB43DF7FABF803", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4ba88a06880b97c266bb43df7fabf803", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C415CA7FBF8904F337B11114D6C1E5D3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c415ca7fbf8904f337b11114d6c1e5d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "84290A41D95C7A9186412E61F6582313", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/84290a41d95c7a9186412e61f6582313", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3BFDBF937BA805CC01B5A2E8397F5BC8", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3bfdbf937ba805cc01b5a2e8397f5bc8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7A7737DCA817010FD0326069A8B026C8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7a7737dca817010fd0326069a8b026c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8E4C0A2B17A8D51CDC1E76F1434819A1", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8e4c0a2b17a8d51cdc1e76f1434819a1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7D70332409151A6C12150ECDB2D90A0B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7d70332409151a6c12150ecdb2d90a0b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2CE04A9DEAA132602A7555F1D6587261", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2ce04a9deaa132602a7555f1d6587261", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6C0A32F113D9517088B583EEAADB5486", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6c0a32f113d9517088b583eeaadb5486", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0790758D63212EF57563E4D9F9DF8B25", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0790758d63212ef57563e4d9f9df8b25", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9841129F6411F0C4FFD5475F98E1B6FD", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9841129f6411f0c4ffd5475f98e1b6fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4480769B5D05438238CCD67CB2162672", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4480769b5d05438238ccd67cb2162672", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "43AA546B9A5F31BC1111A6B6FA4E0AE2", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/43aa546b9a5f31bc1111a6b6fa4e0ae2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3DCA733FEF78D9D6B2ACAAC34A023281", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3dca733fef78d9d6b2acaac34a023281", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "58D1EA6C17766390F3A6BBAC5B21C51E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/58d1ea6c17766390f3a6bbac5b21c51e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E7A2208A93881A577F0FF396287B3CE4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e7a2208a93881a577f0ff396287b3ce4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ED99E96E853AF2AE1F755E37514C7764", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ed99e96e853af2ae1f755e37514c7764", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FDDD7EF31D3828F15C6C8E22578AC611", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fddd7ef31d3828f15c6c8e22578ac611", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "67DD38504C46D7120BFA136E4BCEB95F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/67dd38504c46d7120bfa136e4bceb95f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3D90689AC16423EE49F4C1998EF8088C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d90689ac16423ee49f4c1998ef8088c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EC05685B73BE23E387F4F7B3B652E320", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec05685b73be23e387f4f7b3b652e320", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "467C84022474E8688B7344ED3D5AE19C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/467c84022474e8688b7344ed3d5ae19c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D84B722A2918AE18ACF9EE3173CB2177", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d84b722a2918ae18acf9ee3173cb2177", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F23FD52BD1B44806B50E1F708DA1CF98", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f23fd52bd1b44806b50e1f708da1cf98", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "27FEAD5442440F14B2F48F9D898988ED", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/27fead5442440f14b2f48f9d898988ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "985A06284A6DE7A5443CEF974224E8E5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/985a06284a6de7a5443cef974224e8e5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "24C0F8BDA812E5910E9A624B5DE3DA4E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/24c0f8bda812e5910e9a624b5de3da4e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2F105880B29D30B91228A586DA27D0A3", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2f105880b29d30b91228a586da27d0a3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BE1F8C1F009B2187CAAD052C829F60AF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be1f8c1f009b2187caad052c829f60af", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0DBF81B03531EB2A1424593A1171705C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0dbf81b03531eb2a1424593a1171705c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8DD562EF7459461B69E6D13A88370699", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8dd562ef7459461b69e6d13a88370699", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C085C08D6CB81977F08B43D112E13584", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c085c08d6cb81977f08b43d112e13584", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A5D294F1FBA9787DFC1E015432ED3B92", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5d294f1fba9787dfc1e015432ed3b92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E922EBE088EB592807082DA2716F7311", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e922ebe088eb592807082da2716f7311", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BF00F106134E92FB2E2EC2211991CC8F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bf00f106134e92fb2e2ec2211991cc8f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8D232BB457CF8E7D75919B12701DE716", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8d232bb457cf8e7d75919b12701de716", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6A260E573A19F629BE2B000EB2DC77FC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6a260e573a19f629be2b000eb2dc77fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "291667CF6588FDD73FFB66AC1C93AF71", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/291667cf6588fdd73ffb66ac1c93af71", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F01159CF89CD1D65AEB8E2D481E42D78", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f01159cf89cd1d65aeb8e2d481e42d78", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "45376A3D28FEF48FD018A058BE4ACF2E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45376a3d28fef48fd018a058be4acf2e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E3ED182FC256A9688CA3721B8F825B17", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e3ed182fc256a9688ca3721b8f825b17", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2C5ADF97B89E8E71BF200745BA6F9983", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2c5adf97b89e8e71bf200745ba6f9983", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "85B202F4400787836C905F8FC54BE38D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/85b202f4400787836c905f8fc54be38d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "035F11FC0B3F3EBF637E45C670FE55FF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/035f11fc0b3f3ebf637e45c670fe55ff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0EF44FE95EA71CD41A63F53D26473F37", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0ef44fe95ea71cd41a63f53d26473f37", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0FB700938D442A0C1C575DF93C89CAA8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0fb700938d442a0c1c575df93c89caa8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D7ABF03D3F25ED88F144B86FB5C6BF45", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d7abf03d3f25ed88f144b86fb5c6bf45", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8BD8CE5D2088B78C05A0EA98EA3D3170", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8bd8ce5d2088b78c05a0ea98ea3d3170", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "305F54F459616EF685B0313625FDD3C3", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/305f54f459616ef685b0313625fdd3c3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E7E173A2EF5DF1FFC87A9A01ED104A00", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e7e173a2ef5df1ffc87a9a01ed104a00", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C1A9DF4417D679329665FB9DDAEAC07B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c1a9df4417d679329665fb9ddaeac07b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "719686380F81DBBA109C9E5B7847E2EC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/719686380f81dbba109c9e5b7847e2ec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "63C47A29CCBD51CFDD1090AE7F4194F5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63c47a29ccbd51cfdd1090ae7f4194f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "91067966527E3FDDEE463AB1F81364B3", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/91067966527e3fddee463ab1f81364b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A31F9589418DD42B2A1AA873ABFB8B97", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a31f9589418dd42b2a1aa873abfb8b97", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FC203702DE97162849857938EE334EC0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fc203702de97162849857938ee334ec0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AE738F7F533DA72C6D24385C63818A47", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ae738f7f533da72c6d24385c63818a47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "47E3AD7A0C77C5DBBFB9C823030A1D83", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/47e3ad7a0c77c5dbbfb9c823030a1d83", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "767090B71B8807B4EFADAA8DFB544EDA", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/767090b71b8807b4efadaa8dfb544eda", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "94B8B8D7621D716924D6FF19BF6C9A46", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94b8b8d7621d716924d6ff19bf6c9a46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A3E9F721C5B1B43D555747EC530AB0E3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a3e9f721c5b1b43d555747ec530ab0e3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BBB21A6BB3DE38454427278AD8A78B16", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bbb21a6bb3de38454427278ad8a78b16", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "25909005D559BD03253DDDE725B47514", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/25909005d559bd03253ddde725b47514", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B9C12F5145715237EE658706D30FEA67", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b9c12f5145715237ee658706d30fea67", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "60C69D4F96A0B3FA95CC040067098598", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/60c69d4f96a0b3fa95cc040067098598", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D23BEAFADF0C116AB9A9217FE35618D1", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d23beafadf0c116ab9a9217fe35618d1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C811758BC66E20AFACF6D90D46F5A339", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c811758bc66e20afacf6d90d46f5a339", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "51C468B165359D8739C5DE5E53641537", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/51c468b165359d8739c5de5e53641537", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C062C2052F421689DAAAC15D16E4D84E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c062c2052f421689daaac15d16e4d84e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "49B1D2A496F712837A647084BCD76DBB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/49b1d2a496f712837a647084bcd76dbb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CE5A5855CEDD2705F2AE350D73D6D44B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ce5a5855cedd2705f2ae350d73d6d44b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "86D5D808A0CE514887D3BB07B04F8AB9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/86d5d808a0ce514887d3bb07b04f8ab9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6407B98AFD2A538422C54D3C181CE335", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6407b98afd2a538422c54d3c181ce335", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E8E5C16B0FC0C8310EFD3C816A076C54", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e8e5c16b0fc0c8310efd3c816a076c54", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "14A36D6B98C72455BB27058B10E48685", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/14a36d6b98c72455bb27058b10e48685", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "790829DF44CE8C4D49BE4E4BE33AF270", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/790829df44ce8c4d49be4e4be33af270", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A30F62A670B89DB9E861816142F66D3E", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a30f62a670b89db9e861816142f66d3e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "862FC94EFCC196A095EC00413E91BB83", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/862fc94efcc196a095ec00413e91bb83", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "63DB860ECC9FA540CA463A1B8F606B32", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63db860ecc9fa540ca463a1b8f606b32", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0CD1B6CC881874FAB67E5778822AB4CE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0cd1b6cc881874fab67e5778822ab4ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ED8877D652BF9586554C1681C91EE451", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ed8877d652bf9586554c1681c91ee451", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "503D45EEB56E3DD6CA8B2D5DABF02D49", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/503d45eeb56e3dd6ca8b2d5dabf02d49", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EC9F0611161A74780E91D8F1C268E86A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec9f0611161a74780e91d8f1c268e86a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C7727A97A7B66BAE20C34AF29AFDD9D2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c7727a97a7b66bae20c34af29afdd9d2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "71C32490DE96A766A94C5F3EEB9351EE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/71c32490de96a766a94c5f3eeb9351ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "19B3853FCF08190F305203DCCEE49FA1", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/19b3853fcf08190f305203dccee49fa1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "71B680662335A6820EA625B06EA1FB02", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/71b680662335a6820ea625b06ea1fb02", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BB5EF198235C3C731C32D23CB3BFFE44", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bb5ef198235c3c731c32d23cb3bffe44", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E3FD46715AD2FF0FD37D8AB1CDC95285", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e3fd46715ad2ff0fd37d8ab1cdc95285", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "34E1F48F4087ACD7C36F41C73AE1ED6A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/34e1f48f4087acd7c36f41c73ae1ed6a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1379202F5F6254BE46E76A8938BA4DC9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1379202f5f6254be46e76a8938ba4dc9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "927D98AFC88F4B82CE685443900F74AD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/927d98afc88f4b82ce685443900f74ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CD4E8506892604DA75BB53C9C5BE11D0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cd4e8506892604da75bb53c9c5be11d0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "23FFE6F67492A5A960F0BB286B1AF6B2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/23ffe6f67492a5a960f0bb286b1af6b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "46F9089DC281739957987836046DAE44", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/46f9089dc281739957987836046dae44", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A49514F26FC95E12511F886CA5EE29C5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a49514f26fc95e12511f886ca5ee29c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7FC3A446C7397528EC48B47035366812", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7fc3a446c7397528ec48b47035366812", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "83870E5221A1CF5C445996E521E274B7", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83870e5221a1cf5c445996e521e274b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "90E6DBEA292C7CE74B1148A829D60C8A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/90e6dbea292c7ce74b1148a829d60c8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B2EA10A3A28C55ED147C62543B95AEC8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b2ea10a3a28c55ed147c62543b95aec8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "74FA2814EA314BF55E9B7DF1A531CDE2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/74fa2814ea314bf55e9b7df1a531cde2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9FB5AE46D6E4C44903464D430248DC75", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9fb5ae46d6e4c44903464d430248dc75", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F3ABE1EA019C077392C216EC41EA46CC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f3abe1ea019c077392c216ec41ea46cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "49B618D78EDFB34CA64371D00C9B23F7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/49b618d78edfb34ca64371d00c9b23f7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6A3554BE7EA61F1097F057925C821A5F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6a3554be7ea61f1097f057925c821a5f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6AF45BFC6442E8D00FC3F45DC201D337", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6af45bfc6442e8d00fc3f45dc201d337", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D97051B35E8A9E8471A53854B6039D3C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d97051b35e8a9e8471a53854b6039d3c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "96A634D3450DE3FEE9B559476D36B687", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/96a634d3450de3fee9b559476d36b687", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "819035E7F60AD3038689B23BC062D6CA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/819035e7f60ad3038689b23bc062d6ca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4D1DA6C0233C13F06DECC50E8D0C3B72", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4d1da6c0233c13f06decc50e8d0c3b72", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "63BA87383D518AD6236CB6BAA375EA69", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63ba87383d518ad6236cb6baa375ea69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9F0D9E6B1CB88779217DD8AAD5D52D7A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9f0d9e6b1cb88779217dd8aad5d52d7a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F7509B54966033D380897EA41243AF81", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f7509b54966033d380897ea41243af81", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "70D638277C6F3C947DD4AD4AA7095F9A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/70d638277c6f3c947dd4ad4aa7095f9a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C19AC8E54AC60D6F3108496CFE2C3E68", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c19ac8e54ac60d6f3108496cfe2c3e68", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "715BD103D3E2BCF73DFC755EFB125664", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/715bd103d3e2bcf73dfc755efb125664", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "970758C538224A33762B42728C18231C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/970758c538224a33762b42728c18231c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0826DF3AAA157EDFF9C0325F298850C2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0826df3aaa157edff9c0325f298850c2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2942633617A34836A3A319B4C2E6C24B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2942633617a34836a3a319b4c2e6c24b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9087BBAD0CAB23A8AC26614147D9AC6E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9087bbad0cab23a8ac26614147d9ac6e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E6617B13AC21199FB6F53F7226DB5E41", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e6617b13ac21199fb6f53f7226db5e41", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2B0C2FC48120F25FEF5E8DA88283C18E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2b0c2fc48120f25fef5e8da88283c18e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4521185C1FE7226E7F1A834CB3537833", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4521185c1fe7226e7f1a834cb3537833", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F673EC45E36742DF1CF2CC3D501B1CFD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f673ec45e36742df1cf2cc3d501b1cfd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "04873D02647F7D21A80C4C1010E6A584", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/04873d02647f7d21a80c4c1010e6a584", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "144FDB403FAA314BF98FB28F76243E59", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/144fdb403faa314bf98fb28f76243e59", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "39867993C780EFED2819877F62FC9541", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/39867993c780efed2819877f62fc9541", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "984FA7787F686CB598C8DE6DAC2938BB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/984fa7787f686cb598c8de6dac2938bb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CF01107FE16B66FDC6196BCCECDB3075", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cf01107fe16b66fdc6196bccecdb3075", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ECBED28A18C34DD6DD67A998585237CA", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ecbed28a18c34dd6dd67a998585237ca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C1386D389C70AD7DC40B16BF86FAD8BE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c1386d389c70ad7dc40b16bf86fad8be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4EA5B6D5D53DAA278720C0545297FD65", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4ea5b6d5d53daa278720c0545297fd65", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B88881CBA387263E428ADC04D7DE3DD7", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b88881cba387263e428adc04d7de3dd7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9BF0BA380A10BB8BC7695DFA861F9A3A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9bf0ba380a10bb8bc7695dfa861f9a3a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "91812B71AA4146452E8B86B4A67EF3CF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/91812b71aa4146452e8b86b4a67ef3cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D3649C6FAF6839DC1674EBE3693FC07D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d3649c6faf6839dc1674ebe3693fc07d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7A396CCC1359363F17CD2FB60E501639", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7a396ccc1359363f17cd2fb60e501639", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "688902E4A90B9A0F18606644FCD5FF6D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/688902e4a90b9a0f18606644fcd5ff6d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D2296A635CBF3A97F0CED3CD1677BAC6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d2296a635cbf3a97f0ced3cd1677bac6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "04366FE8049D4DB080E802C7820FE9BC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/04366fe8049d4db080e802c7820fe9bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "50DAE316DE38881BB07283269F846366", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/50dae316de38881bb07283269f846366", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "235765108857C1BE8DE8342D93D960D3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/235765108857c1be8de8342d93d960d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EE057EC1ACCA4F889E02924DB8AB1E3F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ee057ec1acca4f889e02924db8ab1e3f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7F985E480087D8336A722A9CDCDD0885", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7f985e480087d8336a722a9cdcdd0885", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "99BFF6DACEDBC7583B3C170B88B582AE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/99bff6dacedbc7583b3c170b88b582ae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FACE34EB7F790DEAE8779A82D87DB650", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/face34eb7f790deae8779a82d87db650", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "45C176C20C2976A116EFD4442AE5F51E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45c176c20c2976a116efd4442ae5f51e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0BEF3ABE203D2FF212B524F3A8E64620", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0bef3abe203d2ff212b524f3a8e64620", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "31CA1E2E14627862C932D947DC434A22", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/31ca1e2e14627862c932d947dc434a22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CBB8598E86C9BA82C1AA6EE8553BA141", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cbb8598e86c9ba82c1aa6ee8553ba141", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "35250BCD9ABC4DF57EAD228AB37D3325", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/35250bcd9abc4df57ead228ab37d3325", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5CF00B67C6289A6CF894293B1E89242A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5cf00b67c6289a6cf894293b1e89242a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B13731F55611093AF06F7D57ACF56F73", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b13731f55611093af06f7d57acf56f73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "93E950595767FB353BC65A90D969FB5C", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/93e950595767fb353bc65a90d969fb5c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "993F64D147F43CEEEC6145CB30FEDFC0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/993f64d147f43ceeec6145cb30fedfc0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FB3027D7D2D306480EBE7F9BD1E0166C", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fb3027d7d2d306480ebe7f9bd1e0166c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DC0334EC354DCD5395AC8FCEBCBE0619", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dc0334ec354dcd5395ac8fcebcbe0619", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7E68F2B5AB579B659B246BF6CB47CF92", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7e68f2b5ab579b659b246bf6cb47cf92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1EC80DB6A9BAB07E2322D0E9771F2E06", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ec80db6a9bab07e2322d0e9771f2e06", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "49951C2DBE9F3A7C3544138E44FDDA77", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/49951c2dbe9f3a7c3544138e44fdda77", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8EE83809BA5126695A26A6FD4F09FF7E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8ee83809ba5126695a26a6fd4f09ff7e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3B38EB952B8A3299612172D16774E53B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3b38eb952b8a3299612172d16774e53b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9EA5C0328B1430EA8E72A402FF4B3BB9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9ea5c0328b1430ea8e72a402ff4b3bb9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "30BA2001DC20FCF75800ED677460B2BD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/30ba2001dc20fcf75800ed677460b2bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1CE53DF78311070077F836542163E18C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ce53df78311070077f836542163e18c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5F1F875035A4B81C116F6A2AD6F15874", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f1f875035a4b81c116f6a2ad6f15874", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D10CFB9B4A40902CDE75C89A2D6A31AE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d10cfb9b4a40902cde75c89a2d6a31ae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2249531AB3274F2F279423579E1771B8", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2249531ab3274f2f279423579e1771b8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F372A8AC0B0B96FEEB77ADD9BA81ABF4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f372a8ac0b0b96feeb77add9ba81abf4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C2CF127A787600989384B9589C540A3C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c2cf127a787600989384b9589c540a3c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3B50637E716F0ED310AB6A577363C118", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3b50637e716f0ed310ab6a577363c118", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "31E531B1ECDB7B42060440427E00782D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/31e531b1ecdb7b42060440427e00782d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "05871E32AF831E3DBA2CC20AE6F2A92F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/05871e32af831e3dba2cc20ae6f2a92f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "28C7DE11E55D33F4C695726BBCF9F631", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/28c7de11e55d33f4c695726bbcf9f631", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9317400A3B63FDE3AE0A06A90871E8CA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9317400a3b63fde3ae0a06a90871e8ca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1CA106F6F5AF306F67981F9800602467", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ca106f6f5af306f67981f9800602467", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "03617CA561CF1A8067CEE899FB227EBD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/03617ca561cf1a8067cee899fb227ebd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5B6C5B3372481BAB47C9E88464CFB0A5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b6c5b3372481bab47c9e88464cfb0a5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "54742F817A8F4987EFA095A9EEA5096A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/54742f817a8f4987efa095a9eea5096a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3796202E29BE6C7F87711953A43692AD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3796202e29be6c7f87711953a43692ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "53920F11672606FA14CC870434488942", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/53920f11672606fa14cc870434488942", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CD7BB6F5A94A80DD7C56B3990C807A82", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cd7bb6f5a94a80dd7c56b3990c807a82", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FBBAC0F5F028A678E086801F5D0C0D04", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fbbac0f5f028a678e086801f5d0c0d04", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3EA50D6F29D328D0000E52B5DCB3B2A8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3ea50d6f29d328d0000e52b5dcb3b2a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0A26C80C2891BB4099121E7C9615B336", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0a26c80c2891bb4099121e7c9615b336", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F4C543077ABC2FD405813C11086C2883", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f4c543077abc2fd405813c11086c2883", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FDDAA88BCE68C93BE5B6217BE6CE9E56", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fddaa88bce68c93be5b6217be6ce9e56", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BBD95387E56166B5FA4F3E43C9CF1705", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bbd95387e56166b5fa4f3e43c9cf1705", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7E5B1046F664606A2E8CBCA91A72FF15", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7e5b1046f664606a2e8cbca91a72ff15", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DFB25B2E917E1E7EEF99613106596C9E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dfb25b2e917e1e7eef99613106596c9e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "892A1B0B77CB8B852B8D45542CCB35FC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/892a1b0b77cb8b852b8d45542ccb35fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "654DA67A91A550261CB465051FAD5456", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/654da67a91a550261cb465051fad5456", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B904E533490247B458E40CBDED1CE601", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b904e533490247b458e40cbded1ce601", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9CF1302368C9C5C8C5A4BB6867E83009", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9cf1302368c9c5c8c5a4bb6867e83009", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "06788A6AA1A1F14636E78D272A493B38", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/06788a6aa1a1f14636e78d272a493b38", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E3DB43DB8AD99E5FE36A4382928FE47", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e3db43db8ad99e5fe36a4382928fe47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A01C0FDF77AEFBC0E5C0D9310CF686B4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a01c0fdf77aefbc0e5c0d9310cf686b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FA4EACF83127888D4CBB84F87ABDE9D7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fa4eacf83127888d4cbb84f87abde9d7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9350E21EDCDB8992F4EB69404A9D6C08", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9350e21edcdb8992f4eb69404a9d6c08", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C78A57D1BF4462A2B86EA9A154D02E87", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c78a57d1bf4462a2b86ea9a154d02e87", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "928FAE8B0E6DA8714FF51B7E71B22DEA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/928fae8b0e6da8714ff51b7e71b22dea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "492FE606179E6FA1DDE65C8743C0E944", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/492fe606179e6fa1dde65c8743c0e944", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3D8DD4CDA11A777C4FAF9E1E2E183CC8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d8dd4cda11a777c4faf9e1e2e183cc8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "83F8ECFCF9C5699258D0233003CF573E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83f8ecfcf9c5699258d0233003cf573e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "65AB5FD49E1E38FA611781648D06BD85", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/65ab5fd49e1e38fa611781648d06bd85", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0E6DD22F6687FF1B2064CDB36D1D7045", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0e6dd22f6687ff1b2064cdb36d1d7045", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "077EBFAD4868AEFEBC7395DDA1C1FE91", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/077ebfad4868aefebc7395dda1c1fe91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "65F371A98D54AAC16CE17C9CF75591EF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/65f371a98d54aac16ce17c9cf75591ef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "399D4ED7FBD81062EB7107CEC61336E0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/399d4ed7fbd81062eb7107cec61336e0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CC95F652CEB46AF42D07F28E49B7622C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cc95f652ceb46af42d07f28e49b7622c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "825AEFBDEBE382382C1D1F9C9DBAD5A7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/825aefbdebe382382c1d1f9c9dbad5a7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A169A4C8062E5264F864C824F1CEA559", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a169a4c8062e5264f864c824f1cea559", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "56C254758F945831A4EAB1FC91620F90", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/56c254758f945831a4eab1fc91620f90", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "815A3A1495955568420C96691FD670E9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/815a3a1495955568420c96691fd670e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F527DAB6A2703009FA19822A0B2911BC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f527dab6a2703009fa19822a0b2911bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "92EC3F63C2328C3AA132F7A86E0D8367", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/92ec3f63c2328c3aa132f7a86e0d8367", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D06B4E71C8E28C6A5A32DF7B5CC9E55F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d06b4e71c8e28c6a5a32df7b5cc9e55f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C50BA287357582AF9D65BD3B8D4EC48D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c50ba287357582af9d65bd3b8d4ec48d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FD1F33F642E29ED5C773047523A4F5EA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd1f33f642e29ed5c773047523a4f5ea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FF31457869E8AAB880532DFE3097BA9D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ff31457869e8aab880532dfe3097ba9d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1E4D9883FFE7DE001AC01A96C5AC201E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1e4d9883ffe7de001ac01a96c5ac201e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "ABAEA97A2264EF9586129B650A20AED3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/abaea97a2264ef9586129b650a20aed3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "221AA4E6D78187CF0C8DDB359522A8B9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/221aa4e6d78187cf0c8ddb359522a8b9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "06E2D06674CC761905C990BD3E6CDE86", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/06e2d06674cc761905c990bd3e6cde86", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4BD8F9E6A68AB588E3CEF154DD7AE809", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4bd8f9e6a68ab588e3cef154dd7ae809", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "79FF1797084CEFAF9F83C28DAF2A54E7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/79ff1797084cefaf9f83c28daf2a54e7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E609815A2D828B2F37933423D21F44C2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e609815a2d828b2f37933423d21f44c2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EE394A060F43D290B65F06386F054FAE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ee394a060f43d290b65f06386f054fae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "94602E92C6DFAA566229F7018695D528", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94602e92c6dfaa566229f7018695d528", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FA1EC5C387DD51BD88AC471B0BAC296C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fa1ec5c387dd51bd88ac471b0bac296c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E7F6F9C19CDC36DAA599811A98AA5FE4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e7f6f9c19cdc36daa599811a98aa5fe4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "83036F307E7CA0DECE5693EA43C42B7D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83036f307e7ca0dece5693ea43c42b7d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A99E1016D49F025DFE02E91FB7101304", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a99e1016d49f025dfe02e91fb7101304", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "435A2506F8C228B69A61C34815628BFB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/435a2506f8c228b69a61c34815628bfb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "190FD7B509D272A4AAB4FAAFE324D4B2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/190fd7b509d272a4aab4faafe324d4b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "99AC969CEC894D92D663FBC249F518EA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/99ac969cec894d92d663fbc249f518ea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E28A1F198F2A857377106AD9908BCACF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e28a1f198f2a857377106ad9908bcacf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D71F2301038FCE323C20211185FED98E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d71f2301038fce323c20211185fed98e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D8B16B9BF07FB116C46D31B55DA9D52E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d8b16b9bf07fb116c46d31b55da9d52e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9D835DC75FA99A9ABFFD6A3F00E6F1D7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9d835dc75fa99a9abffd6a3f00e6f1d7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E7405D0B6888DD75C0E131A29A885201", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e7405d0b6888dd75c0e131a29a885201", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F6E4E4D8F2EB3161E77EB3FE24288915", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f6e4e4d8f2eb3161e77eb3fe24288915", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D75EA0DB28438E8A76C579A4BF86147F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d75ea0db28438e8a76c579a4bf86147f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A5E1D89BE5889930BD05F748A6AF3123", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5e1d89be5889930bd05f748a6af3123", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "839C3F1145918A5A8C996975CE5F96A0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/839c3f1145918a5a8c996975ce5f96a0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0E0352A5334B4C8CD37015927274A138", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0e0352a5334b4c8cd37015927274a138", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "46F156342F233FFDFC5178E9B5AF1074", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/46f156342f233ffdfc5178e9b5af1074", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2DE06F2393A3B9B5E399F5163E96A169", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2de06f2393a3b9b5e399f5163e96a169", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BBA7442321391ECB6F309A70E7780B3E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bba7442321391ecb6f309a70e7780b3e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6034DABCC2EA99822EB085B23C7C97A2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6034dabcc2ea99822eb085b23c7c97a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AB5A51259E2D89BFF0431B93A3D9C51B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ab5a51259e2d89bff0431b93a3d9c51b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DCE40E3965C86C800435C31D077DA3C8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dce40e3965c86c800435c31d077da3c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B734657A996991CD13DC3C9BA6741DDA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b734657a996991cd13dc3c9ba6741dda", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "784A325C8BDE590BB3A24471DAB5021E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/784a325c8bde590bb3a24471dab5021e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EC10B49C04F8E315F607C58F97EE5278", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec10b49c04f8e315f607c58f97ee5278", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "785F96D11237F09ED1BEA7CADEEC1FA6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/785f96d11237f09ed1bea7cadeec1fa6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "64E42275C60D85FE55A3B5F9CDB8A982", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/64e42275c60d85fe55a3b5f9cdb8a982", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EEE455FEFE68805D72B767BF19C6E248", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eee455fefe68805d72b767bf19c6e248", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FF2648062FA5857B23DA053D47D006AE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ff2648062fa5857b23da053d47d006ae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "65D56F93D4E7D01813DBB6C8A2169212", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/65d56f93d4e7d01813dbb6c8a2169212", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EEC6D0971E7C34ABD2C9BC4811E9F6A4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eec6d0971e7c34abd2c9bc4811e9f6a4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "380F6F5F305F07CCF8C21941167339C1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/380f6f5f305f07ccf8c21941167339c1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "95524C7EF5AB3E0881429086842A5A60", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/95524c7ef5ab3e0881429086842a5a60", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "35DF6FBB1F763C9DB1F607C818C36A97", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/35df6fbb1f763c9db1f607c818c36a97", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5CFE5F5FFC0592C54D63F2735A54C6E6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5cfe5f5ffc0592c54d63f2735a54c6e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6499B2EFAD238EFF85B024FC2C8615F0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6499b2efad238eff85b024fc2c8615f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F2B5DBCB477E7930F73B79F2848709FF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f2b5dbcb477e7930f73b79f2848709ff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A8D6DDB15C7F7AC9DC39891219F77AF5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a8d6ddb15c7f7ac9dc39891219f77af5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5D181DE5BAC7EFA146593A3DBF65C644", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5d181de5bac7efa146593a3dbf65c644", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8FF486387FC6DBA3E30AA36DEFEDC3D9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8ff486387fc6dba3e30aa36defedc3d9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F6617CFA037401844E4F61A1F7B875D2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f6617cfa037401844e4f61a1f7b875d2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5C630B6ED079F5F9595992E8F3B342CB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5c630b6ed079f5f9595992e8f3b342cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "263534993E1CB9F5D7940703F1697236", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/263534993e1cb9f5d7940703f1697236", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7D10919996EF89AB7A4CD696114402DE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7d10919996ef89ab7a4cd696114402de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "56A11E87A8C08253FE1AEDD32A89134A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/56a11e87a8c08253fe1aedd32a89134a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "44AE8B20F807297104F9C4B34EF27A27", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/44ae8b20f807297104f9c4b34ef27a27", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "37CB9784C66CBBF28379F9D95839C937", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/37cb9784c66cbbf28379f9d95839c937", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "890ED59E8D0EA02A728FE14D0B5F3877", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/890ed59e8d0ea02a728fe14d0b5f3877", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5D732F1690DC1D8B6F17F0CC15292667", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5d732f1690dc1d8b6f17f0cc15292667", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D817AF879FCAEE122A4C92C87B977EF2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d817af879fcaee122a4c92c87b977ef2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3080FC967E2DA00D13D1017690AFF83C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3080fc967e2da00d13d1017690aff83c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B95BF4D035364762F41F863236C7D536", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b95bf4d035364762f41f863236c7d536", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "506B40CF97329878A8C0B4DD42388150", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/506b40cf97329878a8c0b4dd42388150", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "11DBED1F6DC1299FCEB26B9E647D8927", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/11dbed1f6dc1299fceb26b9e647d8927", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "13EE9277C32FFBFC4C527062645CC235", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/13ee9277c32ffbfc4c527062645cc235", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C85FAE2F58B758C9DE667FE7EDC4AA04", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c85fae2f58b758c9de667fe7edc4aa04", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E1ECD110B17AC64212706A632478AE03", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e1ecd110b17ac64212706a632478ae03", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "30DB12231C5E8A703A0DB5C26F9D8BFB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/30db12231c5e8a703a0db5c26f9d8bfb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "30E23E818AD59FAC9A08943F5E4B45AE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/30e23e818ad59fac9a08943f5e4b45ae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4899A004EF7549B7A556486426CDF967", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4899a004ef7549b7a556486426cdf967", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0C53EECDA70EF0CC81511B6A25320E6D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0c53eecda70ef0cc81511b6a25320e6d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "954FB353FF23E8E1FFA29E19A224CAE0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/954fb353ff23e8e1ffa29e19a224cae0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "32390CCAD86129CA6AC19965D0DDA62D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/32390ccad86129ca6ac19965d0dda62d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6A9AFCB90F39BEB0CAF5643F53542C7B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6a9afcb90f39beb0caf5643f53542c7b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DABE62D3EE71EFFDE35B268CC6B49063", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dabe62d3ee71effde35b268cc6b49063", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "34B100AE343E04AE8C316B26DFF432A8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/34b100ae343e04ae8c316b26dff432a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5767AC34B52D9FC0A78765DF7A65DE2F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5767ac34b52d9fc0a78765df7a65de2f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1C63E4673ED30F95AA644119DE158AC8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1c63e4673ed30f95aa644119de158ac8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D0637D5397C208110EEC3E68461E108C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d0637d5397c208110eec3e68461e108c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E74627B6AD45CAD620E5F64BE509F753", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e74627b6ad45cad620e5f64be509f753", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D1C65D44458C2837ECC7F19780C16EF8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d1c65d44458c2837ecc7f19780c16ef8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AFE632D9DBCB963B1C2843BF435A8C50", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/afe632d9dbcb963b1c2843bf435a8c50", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "86868C7901A894FA9A258EE4EFFC3BD1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/86868c7901a894fa9a258ee4effc3bd1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7D8FA5FDA81A20EF6912318986789878", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7d8fa5fda81a20ef6912318986789878", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7A7FF38446E80260F17C620E57A8C081", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7a7ff38446e80260f17c620e57a8c081", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0815B50851109E9D54C4692EF7CF24C0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0815b50851109e9d54c4692ef7cf24c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "14E5B2E5A150267C5868658F09CFBE82", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/14e5b2e5a150267c5868658f09cfbe82", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9C6C3A1D79E3982022E4EF3C2B26DCF8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9c6c3a1d79e3982022e4ef3c2b26dcf8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "69413B6B44A4C007CFFE8C22328861B1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/69413b6b44a4c007cffe8c22328861b1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "71E8C34EC054DC9FA682E5F4D89F4C26", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/71e8c34ec054dc9fa682e5f4d89f4c26", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E4852395736A70A1309455A047A22BA7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e4852395736a70a1309455a047a22ba7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "920FEC29C27D62B63281435A0D11A053", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/920fec29c27d62b63281435a0d11a053", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1EDE4F6DA9B961638B8B7E789948AC07", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ede4f6da9b961638b8b7e789948ac07", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E5448497B3C01A0A53F41137B83254A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e5448497b3c01a0a53f41137b83254a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A644DAB97AF58D90400F0AD8FA019CF1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a644dab97af58d90400f0ad8fa019cf1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3E03EB95794E3357BE48DC20BD90AA2B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3e03eb95794e3357be48dc20bd90aa2b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "677C5880AA7F4C29CDF64EA88A177F93", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/677c5880aa7f4c29cdf64ea88a177f93", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E88734109C2FAC1B72AA07EB182E19B3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e88734109c2fac1b72aa07eb182e19b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C0A4BA6EB1C05614010AC439E661B94B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c0a4ba6eb1c05614010ac439e661b94b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C7E63D7D2296AB84BF0FC5D900E8A35A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c7e63d7d2296ab84bf0fc5d900e8a35a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CC8D1F7D7A8D491A937284080148BEC6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cc8d1f7d7a8d491a937284080148bec6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B8B57A0550917177C1E2B6AD18942AE2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b8b57a0550917177c1e2b6ad18942ae2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D7FD0CD3E4024B02E67554A1E7DCDC35", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d7fd0cd3e4024b02e67554a1e7dcdc35", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F67B17319096F927E72C0DC58F663234", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f67b17319096f927e72c0dc58f663234", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1948E51813644EA8B5E4BC21F52CC0B7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1948e51813644ea8b5e4bc21f52cc0b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CCF944474AC2CBB048827A1280AF40CE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ccf944474ac2cbb048827a1280af40ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "744819FCD81B4BB409C8BB6209FCCB63", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/744819fcd81b4bb409c8bb6209fccb63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "601BB07AC97DCC429DD66D9BD43992FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/601bb07ac97dcc429dd66d9bd43992fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F1863EAE9C91A2205AB15B565190D667", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f1863eae9c91a2205ab15b565190d667", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C5758BC126D5CA221A644FF682BDE964", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c5758bc126d5ca221a644ff682bde964", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "467E459ED7679028CD572CD0391C0C03", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/467e459ed7679028cd572cd0391c0c03", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FE1C6B04437F6A55CFE4AB4767821B5E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fe1c6b04437f6a55cfe4ab4767821b5e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "15A8474993FD2F34D273F6B44DB65B39", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/15a8474993fd2f34d273f6b44db65b39", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "54125B214BC857FC9728E16CABC826BE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/54125b214bc857fc9728e16cabc826be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1E6AD2797D48E12934B056CBBFB174EE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1e6ad2797d48e12934b056cbbfb174ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "26B78EB962838C3FD6873C6755FAF1FD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/26b78eb962838c3fd6873c6755faf1fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1A6E4D2E728AA9B63E0781674810AA1A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1a6e4d2e728aa9b63e0781674810aa1a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D91E8E5831DAB13A3678A6B9990962FF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d91e8e5831dab13a3678a6b9990962ff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5CA54D367E769D46829708172A73D744", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5ca54d367e769d46829708172a73d744", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "08F3BD3BF23C8DECAE93E0D48895776D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/08f3bd3bf23c8decae93e0d48895776d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1F5EC43F4D6E4681058257BF7198458A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1f5ec43f4d6e4681058257bf7198458a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "63DD8D62E93A08A3985224684A82CEB6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63dd8d62e93a08a3985224684a82ceb6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5E1E594DDFC3D66F209BB5D20C667B43", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5e1e594ddfc3d66f209bb5d20c667b43", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "79B076A6D4A51B517EF9F0FA63F7A566", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/79b076a6d4a51b517ef9f0fa63f7a566", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1E17E355EE8478F5448D1B3A43DA09D3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1e17e355ee8478f5448d1b3a43da09d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D3BC5A51765A4947E4E7B4CFDE6910BE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d3bc5a51765a4947e4e7b4cfde6910be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7DDA4415610977CB357AB51F7BD9E610", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7dda4415610977cb357ab51f7bd9e610", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "789B2669BC76285A30F6C271000D0623", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/789b2669bc76285a30f6c271000d0623", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1472B5F9C5F7B4C06787B6898EDD220B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1472b5f9c5f7b4c06787b6898edd220b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "83F84B15630AF29DBC9545792929F146", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83f84b15630af29dbc9545792929f146", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4D7E542646B85432AA1D1322D7060769", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4d7e542646b85432aa1d1322d7060769", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D02379F755D6FE2446796DA04DDFD9CF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d02379f755d6fe2446796da04ddfd9cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1286120574C2C58A0D729205B4E5AE89", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1286120574c2c58a0d729205b4e5ae89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E28E09EA3D6658B1CF4F8C79BCAA44A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e28e09ea3d6658b1cf4f8c79bcaa44a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8442BC380519636879347499BB4F75B0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8442bc380519636879347499bb4f75b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A993BA32B9E5338B5C7B2B8C3D2DF309", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a993ba32b9e5338b5c7b2b8c3d2df309", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "94A7944E13283CF6E1C9087D31E6DA20", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94a7944e13283cf6e1c9087d31e6da20", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8460E391215160116E5B4C3860D3E43E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8460e391215160116e5b4c3860d3e43e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FFBEB53CC0CEF840442CE9D0101AE4CB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ffbeb53cc0cef840442ce9d0101ae4cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D29B883B3C8E0C97C53638D4E6976DA1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d29b883b3c8e0c97c53638d4e6976da1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5C5CE34F2D98F7C9CDC2B99CA54CD57C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5c5ce34f2d98f7c9cdc2b99ca54cd57c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EF0B64ABE05B990D22C636F640801514", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ef0b64abe05b990d22c636f640801514", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6E8156B571482834529D96AECA7975E9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6e8156b571482834529d96aeca7975e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "88A5D18FA1653CACAA5D89BDCC49D3C9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/88a5d18fa1653cacaa5d89bdcc49d3c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "94CD8A6A28B2F38A20D77DF21DA4F8E3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94cd8a6a28b2f38a20d77df21da4f8e3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5B64C06592B219238332B348627CE955", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b64c06592b219238332b348627ce955", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A72D9B3C6F9CDCA29516AE2E8B61CC07", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a72d9b3c6f9cdca29516ae2e8b61cc07", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A89D4838AA617F63B919C8325E24F1AF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a89d4838aa617f63b919c8325e24f1af", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4CBB63C8D0373724E46BA8E0422AF633", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4cbb63c8d0373724e46ba8e0422af633", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B19D25CAC608904FFBB97639B02B0F40", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b19d25cac608904ffbb97639b02b0f40", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7E9F7A4C82E61CAEB259670767B9791E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7e9f7a4c82e61caeb259670767b9791e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "59387E9B7B1160ABD874959231BBB787", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/59387e9b7b1160abd874959231bbb787", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "83772F650BCD1ABE3D37D169E153E4C4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83772f650bcd1abe3d37d169e153e4c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "11388E10071B60A353C59841397F6115", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/11388e10071b60a353c59841397f6115", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3C79F45FA2B82840EBFE531DF5C5E324", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3c79f45fa2b82840ebfe531df5c5e324", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0B030739D4C31F242E242ABDD3E35D16", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0b030739d4c31f242e242abdd3e35d16", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5A95F9FA5FFC8EED0E1F27F1E29F871E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5a95f9fa5ffc8eed0e1f27f1e29f871e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8969FF93A97871C4665B03D1CB8A87F5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8969ff93a97871c4665b03d1cb8a87f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "24E0FFEC4F196CBD43A6F149B9DC2DA2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/24e0ffec4f196cbd43a6f149b9dc2da2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0A025A3A2C8B620D064478F9B34B1B3E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0a025a3a2c8b620d064478f9b34b1b3e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4191E2CE3427A8B274F59AEDE8BD8C68", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4191e2ce3427a8b274f59aede8bd8c68", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "95985EEDCF5245D539BD7BBB97590650", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/95985eedcf5245d539bd7bbb97590650", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3C6AC0008DF67EF77D0B9AA18A2FCC16", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3c6ac0008df67ef77d0b9aa18a2fcc16", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CB4727C6B3F7B0074633C2E81B2C490F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cb4727c6b3f7b0074633c2e81b2c490f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "307FADC2F7AD5182E786D47FA631B1BC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/307fadc2f7ad5182e786d47fa631b1bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "84069DEF87876CA9482888A4307BE164", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/84069def87876ca9482888a4307be164", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8ADCD277C07A4931FAB55FD503DE99E0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8adcd277c07a4931fab55fd503de99e0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DE590B52274969D3D1F32A3B4A3331B4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/de590b52274969d3d1f32a3b4a3331b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B663465E255DF30FB54F7C3F794BBABF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b663465e255df30fb54f7c3f794bbabf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E4D6457BBE38F2CD6FCF9833979AD3AF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e4d6457bbe38f2cd6fcf9833979ad3af", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8D5B1BCDF4BBA710DD57B1F54302BDBA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8d5b1bcdf4bba710dd57b1f54302bdba", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "625D1D8B09CE04961A79134F0C030ED1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/625d1d8b09ce04961a79134f0c030ed1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9C73CEE9AB6A7C9B58E8903F16989BB4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9c73cee9ab6a7c9b58e8903f16989bb4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "766DCAA8F4C510C235473AA574DD5C19", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/766dcaa8f4c510c235473aa574dd5c19", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6AC4768B62CAB51E7255E0FBAC522942", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6ac4768b62cab51e7255e0fbac522942", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FAB982EF5D2BCED494288A67FCA81A7F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fab982ef5d2bced494288a67fca81a7f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "317784F966B194143E3E50B97E2A8F0C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/317784f966b194143e3e50b97e2a8f0c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C259544CB6E8A7E41CBE4A6F1AD10C3C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c259544cb6e8a7e41cbe4a6f1ad10c3c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D013171BD3F61C72041774C1D5481CA5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d013171bd3f61c72041774c1d5481ca5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "002F31A7C3C43F71268C1728A82A59E8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/002f31a7c3c43f71268c1728a82a59e8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4BC4C2D2C2A55DB8CA9BAB7F878D78CD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4bc4c2d2c2a55db8ca9bab7f878d78cd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E5CD81A7A2479356771631FE7D166FC6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e5cd81a7a2479356771631fe7d166fc6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7ECF5AC3787F0C996776A7B8647646D9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7ecf5ac3787f0c996776a7b8647646d9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "01462C6D3FF260674921D230DA576308", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/01462c6d3ff260674921d230da576308", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "02F060B2A767283D8B8C416B3704178B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/02f060b2a767283d8b8c416b3704178b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9CC4788D163D5324AC773ABFBC927607", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9cc4788d163d5324ac773abfbc927607", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "62BE6D50BE031DFBCD005C11B878BBE8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/62be6d50be031dfbcd005c11b878bbe8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9C1B3207DB407AB531E766E2F116A4B3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9c1b3207db407ab531e766e2f116a4b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9B7C35688211DA1F140BAC7DAFB756E5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9b7c35688211da1f140bac7dafb756e5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "683C90FF92C80B4E0EE8D2B065320B6D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/683c90ff92c80b4e0ee8d2b065320b6d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "86708B64043F9D9BDEEF150A5A807FDA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/86708b64043f9d9bdeef150a5a807fda", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4102D8E6BCBC5E91F45A19325DA9255E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4102d8e6bcbc5e91f45a19325da9255e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E772D9EE28555D6C5252F7D72CE8AE13", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e772d9ee28555d6c5252f7d72ce8ae13", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8CE622C76EE62E9B078703D74BD4ED81", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8ce622c76ee62e9b078703d74bd4ed81", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2BD0136A443BFD2ECA9BEFD93023B06A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2bd0136a443bfd2eca9befd93023b06a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E321E131679277E0A0CE990189E26086", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e321e131679277e0a0ce990189e26086", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8779990F8E2536A1001F0FAC506E7CAF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8779990f8e2536a1001f0fac506e7caf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "63E7875E639DECF26A4CF9F5718E9BA5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/63e7875e639decf26a4cf9f5718e9ba5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A5A95B882BF490077555B3E87799BC35", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5a95b882bf490077555b3e87799bc35", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "56BDCCB38AE11DF56B1ED23CE250AD8B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/56bdccb38ae11df56b1ed23ce250ad8b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "358357271D866CF997A0C8A7E1834357", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/358357271d866cf997a0c8a7e1834357", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "814B7D26138E046ADB0EFF74181B125A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/814b7d26138e046adb0eff74181b125a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "51D51FD7C4A30C146406D3C78FB3F086", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/51d51fd7c4a30c146406d3c78fb3f086", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1AC760F659D6C7B73FBAA0F4E145C43F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ac760f659d6c7b73fbaa0f4e145c43f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "87F72D219F55096459DC21A35E18A1E1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/87f72d219f55096459dc21a35e18a1e1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EAC9B26839A098245241A04FD2858A4B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eac9b26839a098245241a04fd2858a4b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "757D76064856DA49E4D51A2D6048B44E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/757d76064856da49e4d51a2d6048b44e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "134BDEA29A17D58BBB156B074F3DB9CB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/134bdea29a17d58bbb156b074f3db9cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1097274392583489676FFA47FE35EDA0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1097274392583489676ffa47fe35eda0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "24F8930FFEBAC057D2DC17AA3DE95133", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/24f8930ffebac057d2dc17aa3de95133", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0D9834C5FB0144F2D01D7B1A24C71CAF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0d9834c5fb0144f2d01d7b1a24c71caf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E22615078C8A4CF2D04E0F4439A291E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e22615078c8a4cf2d04e0f4439a291e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2C6D174EF60FE9E0DEA26588AFC1678F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2c6d174ef60fe9e0dea26588afc1678f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F08C2AF9B53B9D83D93B88DE45DEFCBE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f08c2af9b53b9d83d93b88de45defcbe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B3C7A11DF0BBBD896AB027B9525A99E6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b3c7a11df0bbbd896ab027b9525a99e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BA91C64809B7C706E9F57F21428B3283", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ba91c64809b7c706e9f57f21428b3283", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EB41B9D0EAC3183F6501A0F9CD95E6EE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eb41b9d0eac3183f6501a0f9cd95e6ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "122ECA8045F2DBC7F16C44F3209B3A2C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/122eca8045f2dbc7f16c44f3209b3a2c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FD0A6D7419BA70231E8ECC80A28553A8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd0a6d7419ba70231e8ecc80a28553a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F2E5C2EBEF9B3C43FB342A33391E4708", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f2e5c2ebef9b3c43fb342a33391e4708", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "192910A405BC3EEF3D60563769059D89", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/192910a405bc3eef3d60563769059d89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1A3BED89F0B8C7DB746A4C6C0AD2AFE1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1a3bed89f0b8c7db746a4c6c0ad2afe1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F1934AA58624C998CF5CD246993554D9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f1934aa58624c998cf5cd246993554d9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "56F7E936E442395EBB058509E76D1E7A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/56f7e936e442395ebb058509e76d1e7a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7DCF15508965C5038F343399D40D0867", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7dcf15508965c5038f343399d40d0867", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5F0DBBDA558CC461EACB4F95D4B13D34", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f0dbbda558cc461eacb4f95d4b13d34", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1A06BADD4643D8D1329282293A2FFD9E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1a06badd4643d8d1329282293a2ffd9e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "462A0E011EE0FA46FE3B533982CFCC51", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/462a0e011ee0fa46fe3b533982cfcc51", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0410A1EC41218059132A5575C0B4792B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0410a1ec41218059132a5575c0b4792b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D1AE567A4794EC29DC071ED932765270", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d1ae567a4794ec29dc071ed932765270", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9A469052C0A1A1018C84F05BC6D38D97", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9a469052c0a1a1018c84f05bc6d38d97", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6D43E08278750452A65981BE83789363", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6d43e08278750452a65981be83789363", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A6DB2D749BB45F39823EE22CBB9CF683", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a6db2d749bb45f39823ee22cbb9cf683", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8A5DC75F021C13BC1A392DCD98EF69BC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8a5dc75f021c13bc1a392dcd98ef69bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "79496D2EDAC6410429D344D71986743F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/79496d2edac6410429d344d71986743f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "39B17FCF943E7A41A5AB3879B8EEF3E1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/39b17fcf943e7a41a5ab3879b8eef3e1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "138B5998A1A52452C3C42F36A9B52B92", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/138b5998a1a52452c3c42f36a9b52b92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E56B059E70437BBAC2D784E584154C9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e56b059e70437bbac2d784e584154c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EE021A4C05079D01C41CB525BD6DE364", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ee021a4c05079d01c41cb525bd6de364", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "ED2DB1A316FAEBC3C0B9C4E6DAAAA11C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ed2db1a316faebc3c0b9c4e6daaaa11c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "70A33B705D2175015BEF246FBD43C546", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/70a33b705d2175015bef246fbd43c546", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E87595E480D6532D2DAF8B551EC0ECA8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e87595e480d6532d2daf8b551ec0eca8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "632386089CFCE2F9A79541AE80C86AC3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/632386089cfce2f9a79541ae80c86ac3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "02AB513C5D411F4C971C933577951E96", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/02ab513c5d411f4c971c933577951e96", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0BADCBBCA3007D16F903638A3ACD04DB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0badcbbca3007d16f903638a3acd04db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "58EF0AAFCFF355062FF26A4C895977AD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/58ef0aafcff355062ff26a4c895977ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C89E30FB68672ED8ED8A10F91315D6FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c89e30fb68672ed8ed8a10f91315d6fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A92DBCF1C2B1D21239645D07D2C6858B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a92dbcf1c2b1d21239645d07d2c6858b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B342196487E725DCFFD24175330A8C0C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b342196487e725dcffd24175330a8c0c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "82C4EC61F6CC0919ED9C1DD3445A3A61", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/82c4ec61f6cc0919ed9c1dd3445a3a61", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E92EE37B95C67C431B8A4EDA74E50D0B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e92ee37b95c67c431b8a4eda74e50d0b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "219320226AE108F385BC35B3608C2275", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/219320226ae108f385bc35b3608c2275", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DC0387B3B9217A0DD0A842243907296E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dc0387b3b9217a0dd0a842243907296e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D0FAB84AEA825D841D94B186300E93F0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d0fab84aea825d841d94b186300e93f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4CDA9AA746FFF00B9E0790D7E4662DE6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4cda9aa746fff00b9e0790d7e4662de6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "760C91716407BC0C51FCFADC5618805E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/760c91716407bc0c51fcfadc5618805e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "ED3836C4EE25DFBAAEACE59632BD68CF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ed3836c4ee25dfbaaeace59632bd68cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BF60B0AAC02C46F60D673E2BA7E05557", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bf60b0aac02c46f60d673e2ba7e05557", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0F387A37AB3AE615510F44E6A8D9FB03", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 2, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0f387a37ab3ae615510f44e6a8d9fb03", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DA5C48E11572DB1215A00874E3BF24F2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/da5c48e11572db1215a00874e3bf24f2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "97D1052E50955D544E53195C48C02696", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/97d1052e50955d544e53195c48c02696", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CC8A6BEE300EA698ED61582D43186DAA", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cc8a6bee300ea698ed61582d43186daa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5292D21D509F81571CB78AB677F7AE40", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5292d21d509f81571cb78ab677f7ae40", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "45ECC9CF68871A52A3E173B3225313A4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45ecc9cf68871a52a3e173b3225313a4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D439B59E67F62A21A6F44ABF5F073D5F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d439b59e67f62a21a6f44abf5f073d5f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8210B91AE045709E81CBA33AD1134A73", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8210b91ae045709e81cba33ad1134a73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9CFFE82E0E046B70BE1189BA52F74F91", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9cffe82e0e046b70be1189ba52f74f91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0B126D1CE53ED32D644BBDF8C961A1E4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0b126d1ce53ed32d644bbdf8c961a1e4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E719C0B1FF54EC64BFABC01B8CF24A8A", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e719c0b1ff54ec64bfabc01b8cf24a8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C02109AF0E884428B68EB032554D3442", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c02109af0e884428b68eb032554d3442", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E6A05EEA10B1E3172A8513C016B3E76F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e6a05eea10b1e3172a8513c016b3e76f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "75D30A9380ADAA0F95E9510A611A3616", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/75d30a9380adaa0f95e9510a611a3616", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8CB7EBCCE7B59B2FEFF6DE261588349C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8cb7ebcce7b59b2feff6de261588349c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C916BE25D73EDE09C001F187FC0DDD30", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c916be25d73ede09c001f187fc0ddd30", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "38C45D1F4E5CF88B248D5E796E90E330", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/38c45d1f4e5cf88b248d5e796e90e330", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F640C9E3A35BF7270ED887A3AC3F520D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f640c9e3a35bf7270ed887a3ac3f520d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5FE59FC57869508E1C84812DBD36CE3B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5fe59fc57869508e1c84812dbd36ce3b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F6BDF16E4C9DBB42569AB64D11D31379", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f6bdf16e4c9dbb42569ab64d11d31379", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0E48A8FD0E0BAB140215C47DF4EFA39E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0e48a8fd0e0bab140215c47df4efa39e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0592B14FFD9645CBDE89861A6F1EF052", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0592b14ffd9645cbde89861a6f1ef052", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "31DA1E12DC5BB3C7A4C35885007D65AF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/31da1e12dc5bb3c7a4c35885007d65af", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "95FE3243C717BD2EE5F74826E8718AED", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/95fe3243c717bd2ee5f74826e8718aed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1363FBF651050F0E344E93FF8EC6BA73", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1363fbf651050f0e344e93ff8ec6ba73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2A31AFB58A3500397B27A2D7B1DC3B9A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2a31afb58a3500397b27a2d7b1dc3b9a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7C41616FBE9CEC03C735AE022EC354DD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7c41616fbe9cec03c735ae022ec354dd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AD505146D3B6C4A8340560C3AE42E171", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ad505146d3b6c4a8340560c3ae42e171", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "57FA4B2D76780C9EF6FA74C1E6A45B08", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/57fa4b2d76780c9ef6fa74c1e6a45b08", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F92A2C2FE6458ACF4AF697D73ADE10A6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f92a2c2fe6458acf4af697d73ade10a6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C8EA82E1C3AAC19D261DC881E25BB7EB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c8ea82e1c3aac19d261dc881e25bb7eb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D8F21CDC06E4A268FF21C5679B987C76", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d8f21cdc06e4a268ff21c5679b987c76", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EE95C43DDB30EF3FB98B10B39058A77B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ee95c43ddb30ef3fb98b10b39058a77b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A530F021FCE6954EF7EA47516F5CE8F8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a530f021fce6954ef7ea47516f5ce8f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9FB904B03161F377AECEAF85373CB495", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 100, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9fb904b03161f377aeceaf85373cb495", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A546AEFA7DA49F756237DF49280E7E25", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a546aefa7da49f756237df49280e7e25", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BE334FC5994D62E53EBAE5F479526E7F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be334fc5994d62e53ebae5f479526e7f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A2A4897882DB6187D3A047E685CA3350", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a2a4897882db6187d3a047e685ca3350", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9A68B87AF0FC1C4E765F9505D4E9940A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9a68b87af0fc1c4e765f9505d4e9940a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9E89765D35C6EB2DE9FA293D130D697F", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9e89765d35c6eb2de9fa293d130d697f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BE17BC2E97FD3CB5F02FCD7116A2E672", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be17bc2e97fd3cb5f02fcd7116a2e672", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6F25CC2ADF55616C802BB51F33EBDF1B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6f25cc2adf55616c802bb51f33ebdf1b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "22825DC59525B51BC2DD065E4E7BFF3C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/22825dc59525b51bc2dd065e4e7bff3c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C8A30949DA47723A1A15D278FFF967BF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c8a30949da47723a1a15d278fff967bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7FE5C6E8BB9BD79E6EA612C6E1FE9B0A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7fe5c6e8bb9bd79e6ea612c6e1fe9b0a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F075ED1466376BC21E8605E7135EB748", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f075ed1466376bc21e8605e7135eb748", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C89E0A8B16D30B577F185BB6949C5A94", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c89e0a8b16d30b577f185bb6949c5a94", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7970567773C7D80D0DBCE9D8B6F0B7FF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7970567773c7d80d0dbce9d8b6f0b7ff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A166E2E4C2244B9CBB7F65451F83459C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a166e2e4c2244b9cbb7f65451f83459c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DB1963CED59509E85842E2F0A07F76AC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/db1963ced59509e85842e2f0a07f76ac", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "923BEF1B4B947C9A7791F8CE09C8C8EA", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/923bef1b4b947c9a7791f8ce09c8c8ea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "91346FEFEC53BBE6CB6688395A4B283A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/91346fefec53bbe6cb6688395a4b283a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A2B412EC3EFED54881AB0A0116B72892", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a2b412ec3efed54881ab0a0116b72892", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8861FEDD24C8E5221A2391EF7064970B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8861fedd24c8e5221a2391ef7064970b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "288C23A41DB070A57CE66B5892DE7A7F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/288c23a41db070a57ce66b5892de7a7f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F01B8118A1EACD78A6BCDE6C02A1CAC0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f01b8118a1eacd78a6bcde6c02a1cac0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6C8181AC435CD927DFE6474C947AAFFC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6c8181ac435cd927dfe6474c947aaffc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E7A5E7CB60115346C8DBABEDC1059BC7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e7a5e7cb60115346c8dbabedc1059bc7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8D35E03BEBFC7C930998980C40E73703", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8d35e03bebfc7c930998980c40e73703", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BD592BCEEE23D48FF0819345ECB31E7A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bd592bceee23d48ff0819345ecb31e7a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0D8678C36169BBDEFBCBAB9F6C7CA222", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0d8678c36169bbdefbcbab9f6c7ca222", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DE39EBAD3822E0FCCD498C62A16ED12D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/de39ebad3822e0fccd498c62a16ed12d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FE15D6E19AE6756C2315DAF5B5FB8D20", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fe15d6e19ae6756c2315daf5b5fb8d20", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "202FEB4498313CC7C49DBDC61F8C686C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/202feb4498313cc7c49dbdc61f8c686c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DAEB657A0A7B9F97BF34B8E10EB2FFF9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/daeb657a0a7b9f97bf34b8e10eb2fff9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9D425E76BA54177C1476FC5149D66259", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9d425e76ba54177c1476fc5149d66259", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DF72ABFFDC1157AD6E0BB9BE90830C94", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/df72abffdc1157ad6e0bb9be90830c94", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6F51B9FD424859C938ABFAFCBF353325", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6f51b9fd424859c938abfafcbf353325", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "64C0840C614B31C98328B395545DD614", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/64c0840c614b31c98328b395545dd614", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7017520E98EF203443831526D65A0405", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-09-2016", + "LastModified": "11-09-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2b9d6ec7a1e90462f08fa5f7a7b091b9c2cf6c433dedbfd7cfa3f276f58cb107.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "vanuliovegk.ddns.net", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "eeuprbpohspwje.com", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "xdgeivuswhon.com", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "dns9.parkpage.foundationapi.com", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "tdwoogjxcqni.com", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "xdngzcn.com", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A06314CC1F41B77A6364FA1C428B178 : E19C01658BFEE2FE6C4FB38FA7C2DE3378CE81329C3E3CD5333C65446A7E2931", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=0a06314cc1f41b77a6364fa1c428b178", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "092F4CFC8890EB5A822F3F01551D5A3B", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f9d6f04b6fe1efed3f751183a8f5fe35e5638b7054689e3319b7a42262575bad.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "868C5B426E61E78DDD109C68032C8EA5", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "867E27A93C4E4DF4C157A335BFB817C1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E72C5E2CB2E5FD200250DE7CB83D93F9", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D4F19ABDF0320C3A525A00883A3E4A57", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5BE701B59310BF890FB813D1BB2DF153", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "91346FEFEC53BBE6CB6688395A4B283A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4F97F287856FEAB991B807410827B143", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "019EC8A1258BE0343C7D9CA6E15761E7", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "50E9442B5CA4FE1567D18D6AFE3D513F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6D2E6C4526B159EE0A79FC71FF5588FF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "808310F879DF3FD03F3C64F2CA032EEA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B6948A363588DE8C92D089C9F7D29CC0", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "760A8B83A2951F64A01988960D384FAD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C7A56EC0BD03E5A7075C79389CADA9A2", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "987D3E652D49A0345DA09D34E6CD4B7E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63DE0E1A6D5E86A7AC572CB262DB9387", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A869BF13FAE9BC217961E046E96D89F3", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CCB0FE6041E283C517E9C1A63786927B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0F6A375245A762FFD96CE0D67662132B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E0DC203419DA7C62BC91507C1E7AA4E7", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5ED68C671D3595F24C6BEB140CE0F1CF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6D893504D3DF7F47531109C58C970397", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "605693B973D1C24B07EDA264B47B30A1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63640F35D6B19B90BBDC65ABCD4D3649", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6B3CF4D1CDD743F2C8029D5EBD7E80CE", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9C429951E6699360F60A8788BE32749E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B8708EF01F5DF4248D853463F5C4E062", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "55BEE514C437933A7821F88DCD08B06B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2F3DDF548FF712AC877A49898C633D56", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DB1963CED59509E85842E2F0A07F76AC", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9A6B46BCAEEFD115809149A4B4EFC9A5", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7E865A56CBFC6649475EDC2D806CC9CA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "31C1B2EC3739E9058202471403C3D5D3", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C8A30949DA47723A1A15D278FFF967BF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22E66C7C73734FB85B8FD7AE198E0B7A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A86CF20EDF5325D885BFA8451D00E48", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "64DA7BA636DEB497A1773A9CBAD2B31F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "923BEF1B4B947C9A7791F8CE09C8C8EA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A2B412EC3EFED54881AB0A0116B72892", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6FC574EF25609E8662A8955FC1421CF5", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7FE5C6E8BB9BD79E6EA612C6E1FE9B0A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E256E937A136FD9BEB7B9D495A50741D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "827DFA14910429EF5BA098E5B59FA31F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "38ADCD6C2519C90ACBE77F3436B50794", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "00D104533A66676BC864DEFB54D4785C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0532929917D336E6602EFFCEC3A94C6C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CAF8FECC2E9F83EC43FF2EFD021B4F91", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F075ED1466376BC21E8605E7135EB748", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9ACF1009D405359569638E1012AAA896", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5A3528103E7E29103CDC642ADD5743CF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0B5D1DA9C903C32944DB1EFCFE4B5620", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3D27B40337F0E7CA04A2812C74AE66C4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5D51CBA676A6021C4B06C1C99C01EB42", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA9B0D0E1B8635DCD576BA2D8A3778C6", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3CD67CB8B1B312CA24061122FB29E737", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22825DC59525B51BC2DD065E4E7BFF3C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5DFD0082F4420DCE6F7FA8ACBA2E75D8", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5B38C8498031E9D91D0219A22C93F7D8", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "66996D58561168C9B4E7088BB3EAADE0", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6F25CC2ADF55616C802BB51F33EBDF1B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6AE92B4887D2328011FA73930569DF9D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A9BE61C8F7E0BA37F0E27127A6D3AD5C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7B30348ABCF746FEE1C72127BB3DC83F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CB94C83CABBC69F2E010D9F3323383F4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FBBAB20AFA586EFA7D821C364669B22A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "616929D8E2DFE72810726704B1EA9583", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C9D46DEE0CAA48F415DBFACC371A7050", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "96871DBB608034BAB68875E8387FFC89", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/219caa3d46e01a777a88fe3018df17da483f6f9857323fbf4222ad27e8079bd6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "879235B7B830C722BD06C8D445F480C7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/aceddebba0e380a18b9d2edbc7ab31b025b0e18a45ebe17e96721b27f753f32f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B7ED54DC83E33B4A559786F75B69AF88", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d8737a91a673a71c546f7a54a90c2c87e0b6911a8cb5aa514c24f6dda0129aa6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FB3C97C80503EA36CE14B78D3C9D580A : 6A4BDCDE0D1E6410FBA95E45696BC3F85DECC74AEEA2A49C897C8A9DA1ED2F44", + "Organization": "PDFExaminer Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=fb3c97c80503ea36ce14b78d3c9d580a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "67CBBB74D3C0AF6DDB4BB1055F93710E : 43BA5062E733D4B04BFBAD7F0E937EB1D11F055203292F83098A9F3D6EB8A028", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=67cbbb74d3c0af6ddb4bb1055f93710e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4E768C6123F849B520570186A35D69DB : 598C232713A2E9D63635CB9F027B211ED8BC06325D1E2ACBA495C9EB72E7D078", + "Organization": "PDFExaminer Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=4e768c6123f849b520570186a35d69db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8EE00BE5DCAA0E5D4BF0F3718CAE094F", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=8ee00be5dcaa0e5d4bf0f3718cae094f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9E0C1AB1B5EDEE91DBC3AB1AF55BCB83", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e9181da851e07e5433b209dc78a4995d000ba78d8b12f3ce3432203d74af9c8c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B2C8C82E4BF0C5D4FC5A1360A0886464", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2aa61d2f2b9152ddffb12d06fb56c56dad04f7eac927ecc25602d86c50a59cfc.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "205773EE28849A2DD93C75997FEF7943", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/9f75c4835cba2d41ec2e211c9fa821e1321183ddf0682b6c8425ebc1907ee1c7.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "36CA10E7FBF686AB030157B8B196A9B2", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/902ad0ffd3604d0c38d9074d3695fb50be4899156fa81d2aa9a77cd2ea61f611.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F6A8A86C9EB3F0C7932AFFEB3964AB13", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/02413c17abdea041cc14595fabdd16670f3f7c9ac7290fd3842834175eb016a0.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5D0A9CC0026F90ECD8FDEEF6B9CEE688", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/06e5e4a25f0e77553f9b2f9b0fca0394e52ff91ced7e8ec28f7a50dd2c5e9086.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "46CD7A8E2683E01620BF60ACCC3BB43C", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5d88de2d4fa9c9efe11739860221d82ed00067848c451798a08045dc0b342e68.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "02180AFBCDB870422BA2AEF026B67A3D", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/222501546c7335b9c456be441133aa24925f74933e963deaf1661c836081d78b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "30B12E3C9367BCEAFEA2D5FC3B05A661 : 53590DF8AF8C5D53A6833178870F934E62DA57B5C2DD4DF11276F160ABC3295E", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=30b12e3c9367bceafea2d5fc3b05a661", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "EmailAddress", + "Value": "nedaward0@galaxy.britted.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "dylanjacksits33@goodemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ada6@rmail.co.pl", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "tangyang@tsinghua.org.cn", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "usejnashvili.dan@yandex.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "latashiahurtubiseodoofq@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "derickkleier90@tecemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "orehovaevridika19637075@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "freidavv7@bravohotel.webmailious.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "roberta@a.bestwrinklecreamnow.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "yaroslavclamy@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "besterburr@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "katiecampbell.1@live.co.uk", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "luxerycondo@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "fwrq28161@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "tjphurt22@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "billyboyf@hotmail.co.uk", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "info@boardwalkpics.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "reingand@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "1996.trofimo65@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "mcya43637@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "livefilminfo2016@yandex.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "mooz6943@mail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "bdsxye6l3l@bseomail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ronald.schwarze@web.de", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ziamia2@comcast.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "damiendough2@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "organizersolutioncomio@yandex.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E19BC9034C681D30B66E7882A96BE0A5", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/73c12693e81506023abe2c3b725eb0439cdff7f7a59c82b9225f0394899579b2.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7AFACAA42D98A612EE6E3B317A861454", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/acfb3419459918e395bed990c44d271229f56bd2930301da50cf1523445cd563.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6367F1F0A6F32D7557235E87299D0A63", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1a1f8b9c67b2163a1e53bf8658d64a33e85fdfa21ddc9f9e588e3b361e842d18.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7D204B584D463B2A86F35C046D10609B", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5ba9344d8b3b02c4b970d7f13c3b027c05f45bc3fd2e76c565e655e89721d4b4.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C892657D0A681A285AFB6B93462762B7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1c271d17422985b0dca2d91718f25164a807d13b83857fe081976d4b1118ecbe.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "12D644C71CBCF013425402E01CDAE074", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/73489afc7958129ffcec26b8c0cff0da0e9a03fb5946418dda6ec1347b11ca07.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "15EC246AF151CDD051BC4BD5DC0F61A0", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f1bdc1e12152bfe5379fc497136fb834aa500e1c327ccabc39f217f5d4eab9c6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5605F30313DFB25D065B57E6700649A7", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/26ded493f38410166a9679036566e27d1c00356da591da70b66d05e3229ebe5d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CAB4186B5FC363443322280B3D01B615", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/80c5637080a003ea8d5e3c190c73aded2d9eebf62c3137d77c4ee2cc8f921bcc.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7DCA992E0CF1D7E1D70555FA16786ECB", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e76dca7da29d3f5629d21ec469a2aa2a2fce6cbfa030804fd19b6948e53660da.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E33BD7FB938FE359EBFE11C3B53F1217", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2583006982bdf79d7ac89981394731388f8d5df66cd7d6be2c49f9f7741c08bc.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C83D8CD19370DCEA3A7AD722B95C6A7B", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=c83d8cd19370dcea3a7ad722b95c6a7b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "A5BAF06D79E4C42B92EAF7DFB1A58A09 : 7C829EDFDC10A38B384BEDB71649B7E9BB0D30208EE0957223DC41A516321A7B", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=a5baf06d79e4c42b92eaf7dfb1a58a09", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3545B84381616B28CCEC2A71C2F67E16 : 1CA63E8A1B774F22911CCEC96413E36A399CE5F816DC597AEC4B6A98CFEB57CC", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=3545b84381616b28ccec2a71c2f67e16", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7847D424122F04D80C5721E6128286E3", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7bcb7cf5a8cd53be5616c1b0fd1b4680850c0091cfb674b3857f8afd1d1bdb2f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "EB8BB6E1C81C262B556750B5C2735642", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7ec0d21783cf9d2c91cade93245e2c99efe066286f74381a619f122ebcf4021c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "A140B1867336AF11A285E44F9342C173", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2791c83c7624b55d431bf7d304b23840569140e52120a13b700d1f5bd6ce7ca7.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "DD0407941FE084EC08F10D5B09B12BD1 : 0DC200666154EC649C6B7B055C89F57457775032ADF126D5CF2CD5DA8CB2CF93", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=dd0407941fe084ec08f10d5b09b12bd1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B801FC0FA0C63C131775EC88E5BBD9C6 : 38D08EC0876581D1616087921726DB5E97A32E4204C6643DEE812010BD9F0C6D", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=b801fc0fa0c63c131775ec88e5bbd9c6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7E70758C69A091DBE4BFC507CEB3AEC0 : 3BA59451EAD0864DA1B2991F2D5D094A9BD378EE40D0408E12CB2B8859B21054", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=7e70758c69a091dbe4bfc507ceb3aec0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6AD718E40649E7E7E612D600590A3660 : 69E7D464E8AD9898CC3BA88D410E21F1A92DA5A7C8F7E8DF8DEAF96E5A3328CC", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=6ad718e40649e7e7e612d600590a3660", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C912EF8431AF8497D47E791BFAB2DDD0 : 2CB93435B1DFD977E9D1759FE79CECC23FF8521C930149FD74BDBD87B16B6886", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=c912ef8431af8497d47e791bfab2ddd0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8D12B662B808D49F2B655272F1061B11 : F15E07C89374B8B254FC877DE9B83BE2931A062D87AE04149FBD9942A6F1AD56", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=8d12b662b808d49f2b655272f1061b11", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AE47FE6015D07557F9F410C7139E8A1E : AF83CEAE75E15798C465D0A0A6AE239DDB61D750D946CB51DFDFE10C2F98840E", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ae47fe6015d07557f9f410c7139e8a1e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BE325B44B9876F0795F97EE6AC998DBD : D6D98BADB1D1DBE808EAF8FB3654ABA69A83CDF6C8BD6798581B980E8BF74CBC", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=be325b44b9876f0795f97ee6ac998dbd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "0975CC367F4B4563395800CBA34A2B9F : 0F42D680F01E3D42D862C37474B0932F441E5E87A37D31C40B54ED21D755EE93", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=0975cc367f4b4563395800cba34a2b9f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "02A3720DA18D3432E39D59090E7F3029 : B890265F0722CDC77BDE61ACC2E0C414E2AB69D67669253567B02C7CC28A8DD4", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=02a3720da18d3432e39d59090e7f3029", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F781217CDB88CE8271915054C2C365F3 : 8C469CE74DC0874F12036D4BFD0E0BCB1E3383D9BD37769A8CC47AF904A043D5", + "Organization": "PDFExaminer Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=f781217cdb88ce8271915054c2c365f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "65F4B542CC5EB7AECDCBAF0132899BCA : 546E4D83C3934F489154BD0CE65CBA2BFFB42C66359AB8426366F916BABA7AB9", + "Organization": "PDFExaminer Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=65f4b542cc5eb7aecdcbaf0132899bca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "519EA4D49E94081EC1C19835A1DA8489 : 15E1539B0F0242576AB89CA723EE1BD6723E84B34C3573D0E33DD73B420256C3", + "Organization": "PDFExaminer Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=519ea4d49e94081ec1c19835a1da8489", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4F4A8421CF5318BC8D1073FBB8323D57 : C9ACB238B9109FA1284BB3D9CCE8A37F1D7309E2423030BDEE843C0506800276", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=4f4a8421cf5318bc8d1073fbb8323d57", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8F5605D48F10B8A74CF9014208611B6C : 9179EF890F638DE8E86334670BB1F0E4DB3289D27DCDD7FF3802F23D15C95ED1", + "Organization": "PDFExaminer Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=8f5605d48f10b8a74cf9014208611b6c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9CDF1D951A6BD94AEA0D27938594C6FC : 63FF0D8B27EE135D2F14C6E40928CDDCE18D510F7F50BB51E208F37EB77EE795", + "Organization": "PDFExaminer Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=9cdf1d951a6bd94aea0d27938594c6fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4706D4C54DF5C715F52A22E31DB20228", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e54aa638965093de14e794d27fa9ad93386681f56f1cdffe5a353cd68de6a31c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "01F463325867BADC3D58F5B8370ABFE7", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/8dbc665a5b5482a13052db6ef6806988df682dc34415be97709fbf2a4c8180eb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "93E1169DA98A3E8DF7127357C7511CE1", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a8f7c9ad1a049818c8d0d963fe067495365c51f3d9ddb15f8c61eb7eeef93a46.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CC49B1925A2468BF4A47982931C9858A", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c46556348d8dc35cc7d223a52ff86e2a2763f8f63055ef1f15509eda9764ab17.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "18B573897538022485FA9705A4A9F5A7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/713a88751a5f81be3172de0bc34aba94e217793d3777e5b6756d7fb6fba8ec23.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F43AD912ABD4EFE163CD5C25E4C152C2", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/dc04346fb06225129f53eea4325023358cf6819238999fcefa8c3379bbc5da99.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8F7F95CC9CD959791BEAD977251F49F9", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/dc171f8593472b9c8cc5291bfc21f076912c4a2ce6a42aef35f133ce54863866.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CB39004D7C4BE83865AE6679F7F7C7A7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/82d53a691123d60f6e3de64de9791a123a4b89ebd60f6bcc2b3e71652277afa9.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5DA08EC7B0F50E91E4D4E837552E5E88", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/849dfce237d17b58b5310015deb6abd64e8f46a97622cc0222a2a1babf70586a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "901EB92D5FF5596747DC28567CA5C07A", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7ae6d41b278c0c2b6ea6e9d46f2200c46a82f956c609776c9d3864f48fbbb86c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "51BDAE084DBB0F1C023E968A099824F9 : C49610FFC1741EC73BFB04FB5AB1F4774CDFEFDD : 8CD1F781EC9279E312F1FCE26DC16DF78A3F63BB2998C80018A7E7C0D469E614", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8cd1f781ec9279e312f1fce26dc16df78a3f63bb2998c80018a7e7c0d469e614/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C8F751E6C6826E2B42F764E7AA850CB : C70274D0D26FED67D91871D437814868C5D6EF37 : 63AAA4CEEC9EEABE860807FCD57D3313E5EABB32063FAB8FF17F1CF8573037BE", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/63aaa4ceec9eeabe860807fcd57d3313e5eabb32063fab8ff17f1cf8573037be/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FC745B784ADFEAA59AB5AE867D09C6D5 : 8DE87EF334F36FA17BE00F3ACA382B2E8A6B68E3 : 7EE7B9DB4E85FF3EF0866706BF10BA863F8D93B245D163976792DA1243E06791", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7ee7b9db4e85ff3ef0866706bf10ba863f8d93b245d163976792da1243e06791/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6D007DEBE0AB55B8BA435C4214FAA372 : B67534713B00608FED7BB3296040A4FA2759C27A : A39EDB66E4EB364DB80FCBDAD3A6873984293027958F23CFBF25CB969872CD0A", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a39edb66e4eb364db80fcbdad3a6873984293027958f23cfbf25cb969872cd0a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D91A4E1E47B97AC56FBA6F677F6BB68C : 2715BF2A4C5D2707ACC7E4D5D84877B68EC1FAAD : BEEE628A530D513ACD4763CF82EC52EB866A7B8B06B7D6B7D3737343E1FF7729", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/beee628a530d513acd4763cf82ec52eb866a7b8b06b7d6b7d3737343e1ff7729/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "3D2E6845385731A08B5B5908772CB8CB : 9B2E505870B71D51EE9B21093734C3FE291A4EE1 : CC5A086B24AA4C85D022699514170074A0D36EE84E2AEAF6772C37C02B46F2DB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cc5a086b24aa4c85d022699514170074a0d36ee84e2aeaf6772c37c02b46f2db/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "793CCA4168B6462F6F4CEC60F92634A8 : 5DBB290D7CD149F25853CE0EB8139E998FF088DC : A1AFA5D77002E2FFE868DDD50BB0E349FC13C069EE90AA63E2DCB4B089637B3C", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a1afa5d77002e2ffe868ddd50bb0e349fc13c069ee90aa63e2dcb4b089637b3c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "FADB978ACCBD4DD08C8F1B386D1F3CA0 : A66E09B7E1AEC1D40C582CBCD42F06C7DDF35BEB : B663F13A0196B7DCAA775743F6B9AB34DC6C0C8DE057EB67DE485A683C93CB07", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b663f13a0196b7dcaa775743f6b9ab34dc6c0c8de057eb67de485a683c93cb07/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F7B31219818F53FAC4C0F1B10B3587D1 : 083483BF56F8F3E69D2F12BF91D147E19D84F66F : 44271C933C9FB2D478733E32D1F800F790617CF807FF5A136709C3802B8EC7AF", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/44271c933c9fb2d478733e32d1f800f790617cf807ff5a136709c3802b8ec7af/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F05B8FDB6488C7453496193FF4CEE640 : 216B717803F8436E23A4A475D48CC11895EF2DA7 : D0F0E3175E5984760105F6AAB41D9C86557566A83CBDFC3A4B4D7A67C12E62EA", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d0f0e3175e5984760105f6aab41d9c86557566a83cbdfc3a4b4d7a67c12e62ea/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A69CC3BF64066B518D4A818B11A8C16D : 1F41845AC30A6445CD97FABBD633584F537EE216 : BDD6AE420D5D52EB2B0CA47EADE2CE4E616A071208994D429969DA3378EA76A2", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bdd6ae420d5d52eb2b0ca47eade2ce4e616a071208994d429969da3378ea76a2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "367302E3801D24B3235234FA9FB4ADAE : 5FCECC9616DC65E3CE708A4D22EB81C4109BCDE2 : 86136D69D399265A6F4EA92EAD364CEAABB8ED4F5F72475D8D20867A95CCF3C0", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/86136d69d399265a6f4ea92ead364ceaabb8ed4f5f72475d8d20867a95ccf3c0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "FA2E6EFECA21EC82FF746318E391FDA8 : 58F46E4426729237E757031749168000B00503EC : C3148F64CB7E2A9CD628DBD5D7442ED9C984DC2039AEF240FD787AAE370660B6", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c3148f64cb7e2a9cd628dbd5d7442ed9c984dc2039aef240fd787aae370660b6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6D8DE792653D80F5F50265BB8B0BA819 : FAE1A5747F0DDE77E952C995ED4B9B80B1083356 : CE1A9EFF18C39425A7DD55224C2FE8D8979A8343F13C0B9ED6D62E975B6ED228", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ce1a9eff18c39425a7dd55224c2fe8d8979a8343f13c0b9ed6d62e975b6ed228/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1B3EA2C4F36FE278ACC99DA4F133B752 : 5F00247FD4A60FA9F14A23230B2976FEAA11D308 : 789F65E09686630055DF6BE643CFD9A309D105F42EC6F5F21A5EBBF4FE26A7E5", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/789f65e09686630055df6be643cfd9a309d105f42ec6f5f21a5ebbf4fe26a7e5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1BA2A004F30B652B29F6E61DBDA1A6F2 : E94C5AE61331A790EC458E5D942D8F0F741598F5 : 536D03537EF819A85B724F84B39BF303FA31913896BA1E1A3A2F8EA23642DED3", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/536d03537ef819a85b724f84b39bf303fa31913896ba1e1a3a2f8ea23642ded3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "E6ADF1528F4E8E4B44E92230494CD2B1 : DCCBF9422655E3783B38BD6E95262013BD9807C9 : E814E3A6B42644CFB82C97BDB664FECE3A1949D9EA4F3D8A8A6A62DCDEAC6E20", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e814e3a6b42644cfb82c97bdb664fece3a1949d9ea4f3d8a8a6a62dcdeac6e20/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "0F10453AE270DBE6A6BC59BB12C03821 : 32458BFD27B24BE7656EE7415D8035BFE4966651 : 8239CDF2FE8C58D5308846C3BED9E8401F12F8117C16F0A700B8372D9656B753", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8239cdf2fe8c58d5308846c3bed9e8401f12f8117c16f0a700b8372d9656b753/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3AC7D5B1799723592D1E45058AE6AF63 : 01B6A969E0536AA7962516939F7250281E96B577 : 313050D84325C5ED0B3E90F3B02E6133546BFBE5BDD774AC6783F7866D495766", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/313050d84325c5ed0b3e90f3b02e6133546bfbe5bdd774ac6783f7866d495766/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "A50B0D7BD12CF37F5D35546481B2263F : 84876C793C7919DB60866C24C7C0BC8EF67F06DB : 3916AE4C118326CC19DF903D61BE1A1A86D34766573631CEA49C8165F6FCE03E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3916ae4c118326cc19df903d61be1a1a86d34766573631cea49c8165f6fce03e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "4BD92B7E592FF375259C65F57AFEDC31 : 96D3240BA1081AA2CEE01E7AA5686D6CF95355F8 : 244FE43CD52DB9C083D81E15EF67D8D6E49C3601C96CCA804C6E38DA0A785487", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/244fe43cd52db9c083d81e15ef67d8d6e49c3601c96cca804c6e38da0a785487/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BB70C91EB0E7068D5197DAA2A987C0E1 : 4458F6B637A480A0D0C24257EB89FAEDA402010D : 2BED60BD388F1D4597C4A9D6171A35E4B7E20990B6E814A6C2503B0A6B23DF83", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2bed60bd388f1d4597c4a9d6171a35e4b7e20990b6e814a6c2503b0a6b23df83/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Agent" + }, + { + "Type": "File", + "Value": "C37E725EBE57694F10E0A02FE73BC904 : F8109C77E008ACD59288A8A4BB7DE0DF10AA7C55 : 916EE6CC6CA3539EFAD07D38492DCF2BE160BA78655A0B59E488B8246AC90608", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/916ee6cc6ca3539efad07d38492dcf2be160ba78655a0b59e488b8246ac90608/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7873DCF251B53205D05DFC8400241C14 : A5F11B6D204C123A94F274BA72D9D51CB10825BF : 60B11AAFC1028F351449001BEE6035E881A23EC7085344D132E10D3E77D1F58A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/60b11aafc1028f351449001bee6035e881a23ec7085344d132e10d3e77d1f58a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "9AF2A978504E1960B81A887243949A83 : 79B8CFB538E4187A57CD80D29C784E14A70D6202 : 8339ED2854820041B0ADE23468AE9BAC4F3D35EAFD9D28E1F2EDAFEA642AE5BE", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8339ed2854820041b0ade23468ae9bac4f3d35eafd9d28e1f2edafea642ae5be/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C22912F696836290655C0B59B537D058 : 864A124086E2D104FC0FB0798B4B79E51E8F52D2 : 18BCFE37F9C01F8D32467416C8ECB55A309BBDB583BC1F8242470961F8731DE4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/18bcfe37f9c01f8d32467416c8ecb55a309bbdb583bc1f8242470961f8731de4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E25FC404BEC1FD618F287B3E54FD6D6B : 0A0D6C5760E6673332FB008A1A2F95EC0B7BB427 : 1F4BA8DF2B2C4477668291242E501F117C61086B336C574A28BF121FB410D81E", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1f4ba8df2b2c4477668291242e501f117c61086b336c574a28bf121fb410d81e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9C73E20E3BE6FD1AEF81306AC8814A70 : E26781B8E93192250EDBC8322811BDC194D2765C : 8B3D5D2A51D821DB6E1291F99F198E474B2BF31776F4B8A52F74FC7B87EEEE0C", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8b3d5d2a51d821db6e1291f99f198e474b2bf31776f4b8a52f74fc7b87eeee0c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09B1583303967455E9B9B434CCD201B8 : DD3ACBD7279FBDCB4DC6D5FF02FACA725A2D7B74 : 66D2E41091C338B32020551E17DC940FED104259FA3111B2B01257D9F907614E", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/66d2e41091c338b32020551e17dc940fed104259fa3111b2b01257d9f907614e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "9309D816C0018191E69D073EBA94B683 : 0066226DD1D7E2B1E7B48131EC2FC5D08DAA4A1A : 03AD3E230834C22838BF0E0F6A9FABEB342F9B8A2C063D76B95E969B15678D58", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/03ad3e230834c22838bf0e0f6a9fabeb342f9b8a2c063d76b95e969b15678d58/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "1864A2E4500EBBDD191D7B6C0B49D220 : DD927580BF2D1E863A5AF99A8F24EA8042473D33 : 7722A9FFAB2FE7262669FE19B4BB6D033C00C6393B052A338EB44102E7F41294", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7722a9ffab2fe7262669fe19b4bb6d033c00c6393b052a338eb44102e7f41294/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8007E4C5C9B40FB30F816F6E74284DF1 : 1A64154D3F5CCDAA23E0211673822293D7CCAEE3 : 562419107594B2309F977A6B9C91A35CBC77B7DBB9461FC3BEF6289E63EA7C82", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/562419107594b2309f977a6b9c91a35cbc77b7dbb9461fc3bef6289e63ea7c82/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FD2A70EACCC1A0874BA041D0C0454523 : D56D6DFF2AADF1496A8E310BA946C63CF48958B8 : F2A078469E2C09886070CC8ECE354DB4CAC787E70526024612CCAE105400D8BF", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f2a078469e2c09886070cc8ece354db4cac787e70526024612ccae105400d8bf/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "020B80BFD9AD7F48FC4A0BFDDFAE9BA6 : D8B77F37B3F6EAFADF82CF169EF3967241C8E5C1 : 9D2AEC35D3FDB3C5EAB3818F6526D40FFC2ECE08FBB07D58B49EC35081487C65", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9d2aec35d3fdb3c5eab3818f6526d40ffc2ece08fbb07d58b49ec35081487c65/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "8D056F78282FE3C2F7AAAE4ADE170EC6 : 0BD2F9C025FA1CF9000175FECB13A778F18EE6A9 : 7C30B70561F477E97ED8DE116831EAAE665F3450DB83948B40A63EEDC55F1F74", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7c30b70561f477e97ed8de116831eaae665f3450db83948b40a63eedc55f1f74/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5DAB05B6845A7C2CBDD44318C8BF3B69 : 8CB6B5ED8EE0FCD10E5DD4D1BBE432ABD307717E : BF3C122FE6165B035B6A4632F9E8426BE99728A3C08F8AF33B1D8A263F7B8D56", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bf3c122fe6165b035b6a4632f9e8426be99728a3c08f8af33b1d8a263f7b8d56/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "72392C77A75EB484042E9EDB358C4938 : FEF9ACB8709E2B6CBA68FEE60F5FE0B61CFFDD7B : 136BBC707B4C4F29D9BDC1F15CE4F77696067F1B26F3CF5F52AD371E5F680BB3", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/136bbc707b4c4f29d9bdc1f15ce4f77696067f1b26f3cf5f52ad371e5f680bb3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7FF3FA30A2B5447DE3E12568C828D3A1 : 26F4B0685218FD0999D810855D3D75378D80C3C5 : 88BA631C7124658D97AA84B2CAE34A1F9A9C4A2DC9B73C5CAB820AE3F340E3EC", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/88ba631c7124658d97aa84b2cae34a1f9a9c4a2dc9b73c5cab820ae3f340e3ec/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "10300D0A066E43A38DD66A5A75387302 : BAEDD1361BB39E572492A162B023AB1C1D7F9CFB : 24C447D94194BDC525E3709102A9270B2DD1A1C390546789114C75839E8DF285", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/24c447d94194bdc525e3709102a9270b2dd1a1c390546789114c75839e8df285/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1DABD3A61F23E1462BB8539003156122 : 236FC3E21DDD15880E6BB0660608BB5BC51A68CF : E225D65D2E5A667442F306D9E2C2CDE5EC4FB37DF21B18BC9673310EFD1EA5E6", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e225d65d2e5a667442f306d9e2c2cde5ec4fb37df21b18bc9673310efd1ea5e6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8C84F59ECE4907DB0AFF17D6EDABF48C : D02B3836422EF4B7F7055F63435BE3E019742F9B : 3895FEA2E3390065A8C2D532EFCB461E5C3C9C5077089C17EBF93D4A40C54946", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3895fea2e3390065a8c2d532efcb461e5c3c9c5077089c17ebf93d4a40c54946/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "604223D29518D28D970B15251C23A824 : EC7FD24840875BF7F8DC31908951F43609744039 : 42C6C4FA54B01B2F71EA957911D4DDE77A375AB3BFF08A83F44D9B0D005A2620", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/42c6c4fa54b01b2f71ea957911d4dde77a375ab3bff08a83f44d9b0d005a2620/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0FF775AE9811F837952DDF2BF8F1142A : BAAD9156BFADEC39181A1CDDE5D3E27761C7A7FF : 0F97C564D7A817A6E21DD07E9837CDF7523411BE1F1478CABD923B4D794664E0", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0f97c564d7a817a6e21dd07e9837cdf7523411be1f1478cabd923b4d794664e0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "884CC8618F160F0935D0BD4D5289DC68 : C4E456064FFE3223551FCCAC636593429D39ADE7 : 9EEF088068FB46BC93D02D29CD2E4BE6246CFAB79F15AE9ACEA1CBF0899EC3C3", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9eef088068fb46bc93d02d29cd2e4be6246cfab79f15ae9acea1cbf0899ec3c3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C076B936A40CACF21E77CD9588C0CC58 : B27D102F006F90145D0E12DF17E0C868FB37765C : 29BB88082A3F1B8BE464744E11582D5E1C71E22AA8F77D96288D785CF1B3CAA8", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/29bb88082a3f1b8be464744e11582d5e1c71e22aa8f77d96288d785cf1b3caa8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "03C36104F61C81C5BFC216418849870B : 5805350DA599BCFC1FE401C2C5EA37E86073EACF : 099271809682ECC9C474B7F44AD90E9F094DC75DF7A3D91EE72CFA0C5A9F052A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/099271809682ecc9c474b7f44ad90e9f094dc75df7a3d91ee72cfa0c5a9f052a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "AE44655BA6CB7CC230ADA05D969C8F11 : 5605A31CE7663233B3B001BBB670EF585FE2BEDF : 7528A7F825AEBC1745F8BE2792DA03D14CA684F6BE5C73581FDE512ECDF74FC7", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7528a7f825aebc1745f8be2792da03d14ca684f6be5c73581fde512ecdf74fc7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0F61AA4B58D805B704D99136C682C4FC : E759615DA265E524523EBB348A886A45BF846EFC : C215AD660D29EA07823EE1BEDAF394B09EE3E32DAD77688B8F5BD6A6924F3ACB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c215ad660d29ea07823ee1bedaf394b09ee3e32dad77688b8f5bd6a6924f3acb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "44DAF0A410AB80E7CAB7C12EDE5FFB34 : 2D42A8EABA2829A1641FC580DA5E337C75997A99 : 3493630EE740508D0DB760A7648470F2987752D9B205CCCA805A66C3524E2B58", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3493630ee740508d0db760a7648470f2987752d9b205ccca805a66c3524e2b58/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22595850C967E105919E4E5003FEAB3E : AF655DDC748CF2050D0E49303813DF398EA1A54E : 15148F586B3000537447817D9FC385BEA07E9479C30DC2503B4E2891942C230E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/15148f586b3000537447817d9fc385bea07e9479c30dc2503b4e2891942c230e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D461E6B17939A17E27F0CFF9102B004B : 7CCAEA571CF4F45424802BDAC433AF57B1430367 : A1D3F88774ACB10798F413521CFFF08B79A945F762F2AC3A77CEC75C86F5D8BD", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a1d3f88774acb10798f413521cfff08b79a945f762f2ac3a77cec75c86f5d8bd/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5E825788918137BA1DBD1E014152A466 : 3E79B76AF80655B5AE3B83D008C70429E9E26EA0 : D0DB7C91B95DD69189D7C78392224A2042ECE2930336E503E0ED34ED91A9386B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d0db7c91b95dd69189d7c78392224a2042ece2930336e503e0ed34ed91a9386b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07F5F2F98C28338E34681399D073E507 : C67DAB6F551EDD4BD008EF25E792D73BB673EEF9 : 0EF5F47A0E3881E234E1A07195FD09C927C7285E1AD571BB8322221F4A8E6A7E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0ef5f47a0e3881e234e1a07195fd09c927c7285e1ad571bb8322221f4a8e6a7e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C6BF369B624B8CADA8B00318134C85E0 : 0AF704CE9F8416A7CC364CC3087961EBED4A85D1 : 69706C991BF61C90205965F57FA202D3E03BE0FD8509726707B2095D34F45DAC", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/69706c991bf61c90205965f57fa202d3e03be0fd8509726707b2095d34f45dac/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "3F53C0759DAE4922DB08A81D37C884FB : 7662C65C0D164D884251B617EBB1CDD36519A482 : 01064CB88CFD2F6CEDFFC17A3A44170BAEB707E6E7E48057A21300A793141F63", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/01064cb88cfd2f6cedffc17a3a44170baeb707e6e7e48057a21300a793141f63/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9B5146FE7E7DF91816F58F4DCCA21DCC : EE37B5454A931F3CDA9C3ED72F05D705094589DC : 4D88CF3F7BFADA33ED5476E44D3FDA750E66E6864D650588B85F4CE076D5374D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4d88cf3f7bfada33ed5476e44d3fda750e66e6864d650588b85f4ce076d5374d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4DDA6FC03D766D3C800BF2C27F8781DC : C198DB669C1E1DCA0EB369F0989F70AF58BF1DEB : 7F0FEF0E5DCBD51DFCDA201EC02883BC41A895145859554FDEBB9047A13E8EE8", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7f0fef0e5dcbd51dfcda201ec02883bc41a895145859554fdebb9047a13e8ee8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Heur.AdvML" + }, + { + "Type": "File", + "Value": "2EE1AB93687378FB1B713843CD8784C6 : 72910D6EEF0F457D32684B09151004287B42AEC2 : B35FF2C53D71DDDAB648A9D316A9E7607A0F0D44B77EC8B3F1D8016C0581F4A9", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b35ff2c53d71dddab648a9d316a9e7607a0f0d44b77ec8b3f1d8016c0581f4a9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1DF772A67837FFAC4BD6B0553387CB49 : 14DA70F50109A45D2B556CC12474E4D4B28720D5 : 99E71B7C3C285C58726047AB8DD6819355B805946FA36572CF2DAA55E2E1F945", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/99e71b7c3c285c58726047ab8dd6819355b805946fa36572cf2daa55e2e1f945/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "195627E189156A07643D264B6DA9937E : 4BF8BB6F696734F0A58183FEC69D85997272AC58 : AE2134CDF32F4F5C31323347FE8DDAFEB89BF9DB3D7374C52C5FDD201937CC1E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ae2134cdf32f4f5c31323347fe8ddafeb89bf9db3d7374c52c5fdd201937cc1e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D25FCA441C69C3E6E78DE1BBCBF97BBC : E25378CA7885BBEF286F368215B8825D3BEEB35C : D931F331A565A523484179BCDC1DE99EA9DA1ED5032DE4B889FA250C1014DCE1", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d931f331a565a523484179bcdc1de99ea9da1ed5032de4b889fa250c1014dce1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ADD4E4AFF5BA262B31444DAB4AD646CE : 1FDF0029720E4A5A1076C49B3CBBAFACBED7A8F7 : A6FC688C13282A989D5862624D6C9EA8B371B3270F60F5EAA1AD0D8A1D91ED76", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a6fc688c13282a989d5862624d6c9ea8b371b3270f60f5eaa1ad0d8a1d91ed76/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "32C25AC05ED9951C54E35B833DF009E7 : 46FBB50FF6EFF8782C8B7E2E8B7E2E91487EB03A : 73589C983EBC29AB9BD7B7CA13B3BFE4CDE4F73DDEBD66B353000EB8728E4C92", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/73589c983ebc29ab9bd7b7ca13b3bfe4cde4f73ddebd66b353000eb8728e4c92/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F8242A9006E3A0A7E90486C271408292 : 7567C94B17AC8C8C1EA2F9C7B728E0A3ACE16040 : FED3FEC5EA7814828CFDFF6AD230FB690B01008E9517028BB257E19EF63717FE", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fed3fec5ea7814828cfdff6ad230fb690b01008e9517028bb257e19ef63717fe/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "B25A364976A256EC167E62F8930454A3 : B9A127389C3D08D9160A433F5E45552F1B70FED3 : B4FCDD6BD7ADFE3417FAF30AE222EAF845172C26EB1A98ACBD70F1BB44008B78", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b4fcdd6bd7adfe3417faf30ae222eaf845172c26eb1a98acbd70f1bb44008b78/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F7BF0E6530B7B351FCFBDBC7AF64E3A3 : EAC6293384C07B0EB9B6A00998DEFFEDB7290157 : A16CE5953C801422392BF900F027750B33D42EB23AA1A3D0ACAF6280363BAD9C", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a16ce5953c801422392bf900f027750b33d42eb23aa1a3d0acaf6280363bad9c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "04F4A10A3B625D0238A1BAEBC2DEB6CA : 75DD2D25B548FAD17A53A5F6A9C540FC0A745955 : 35E2F9FF7D6B8CB166D647A2FC82F9C8687FF00C5B244B1ACAF276BDD3E4DC41", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/35e2f9ff7d6b8cb166d647a2fc82f9c8687ff00c5b244b1acaf276bdd3e4dc41/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "57A5656D4A8300C6151DE2CDCC53FB62 : 291F8D0C95150852EBDB0A6E22E4087A494A96C2 : 078531561F1B0B6DA7F1684AAE0F8AD1A76F508D62D6F45DB152854A20ED0B97", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/078531561f1b0b6da7f1684aae0f8ad1a76f508d62d6f45db152854a20ed0b97/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "3CFDDCF1478515E60376FD397B0DC98C : E2ED6AF099965770CA1E0FC2EDC5AE4F31C1DA73 : 1B571D9DCAF67506964932D9D9EBEEB9688D10E5792CA819F5961A6619FD7F4E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1b571d9dcaf67506964932d9d9ebeeb9688d10e5792ca819f5961a6619fd7f4e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0E4D71D7FC96D0EBC792318464CC1E32 : 8893D5F39657A8772B6D49076D0394FB0F48A3B7 : DCCE25631F4425A52FEB4D10822C4EE514115514F708178C02782CCBE780C34D", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dcce25631f4425a52feb4d10822c4ee514115514f708178c02782ccbe780c34d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5171706511414F8CC3A1D935C93D7C41 : 13EDBF6E29233C692D9FEE15FC215870722EC848 : 8BCBAC1C445FBC6B3EAC858932DF7D9B2503DB772994075A6E9E4E76BC7D3F11", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8bcbac1c445fbc6b3eac858932df7d9b2503db772994075a6e9e4e76bc7d3f11/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5C40A63028BFEB9694F22FD8BDB1D62 : 85A248250F18E476458357D0269918768A965467 : 725FEB1FA00FAAD5087C8D10831FBB957AAB3CD4E5157CAE5C1CFD58A30025CB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/725feb1fa00faad5087c8d10831fbb957aab3cd4e5157cae5c1cfd58a30025cb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "12EE2573B8EEE4492FC9578480F95DC7 : BA55F0E34C34A9FFA617E586974E1533EEBF4600 : 27059CE0ED9F280809E0D0B8EEBBFCF2951A4BE9D7A38B08CF611D3CF868F3D2", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/27059ce0ed9f280809e0d0b8eebbfcf2951a4be9d7a38b08cf611d3cf868f3d2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FA26B39E3912649A1C4FF60F8763CA85 : 9138D73B23FE48FC40A80AF028F0C9BA810382E0 : 88BF7468754569440238DA313F60761BF066AD90372CE32CC4A9F0E035457D7E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/88bf7468754569440238da313f60761bf066ad90372ce32cc4a9f0e035457d7e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "36CB25234CA80CA05CDFD2CE85F5285E : C9DA1FCFBE5BF3A986AE95A1E051E6D3FD5DA26B : 5C7B05DD250F3952D4483AE3078D00B3C9B3790D608EEA64542A0E3B9852A32E", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5c7b05dd250f3952d4483ae3078d00b3c9b3790d608eea64542a0e3b9852a32e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "40DFAEC567AD3E572F021E7D2A656F37 : 13F30C7AA4643AE45C2E62270C007C875127B9FB : 1397EA2B2DC850A461115698821A488E6BDDBB7C744AFF18C28364A5AC8399F4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1397ea2b2dc850a461115698821a488e6bddbb7c744aff18c28364a5ac8399f4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8E84F15C695C6E937950A786EEE81FE0 : B4245C129CD819490951132B46D21471E8193E74 : 7550AA93D0D069D694C80467073BDF3E09BB22A8A4826A6D538CD90CF60B4B3F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7550aa93d0d069d694c80467073bdf3e09bb22a8a4826a6d538cd90cf60b4b3f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "B3E4E55A401EB13A73F6FFDE4819FAEF : BBECB082E4A626ECFA302C1B7F739EEE0A84EA5C : 3AB92C92E6546CB1A9A338D63C189E57439419AC74769531AC027611F648B99E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3ab92c92e6546cb1a9a338d63c189e57439419ac74769531ac027611f648b99e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "91C0D8B04EBFB4D8176EF840C7BC9E29 : 630E43DC642FB98ADC1D70CB9008E46F29A65808 : 09340A9933B9D6080FD98F81214FB34CDAE5D6B85C6F28FFE9A2DBAB67D0AADA", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/09340a9933b9d6080fd98f81214fb34cdae5d6b85c6f28ffe9a2dbab67d0aada/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "2820D8F7D54158BAD65D467C6E4A4598 : EB289B12FF70C7011EF1CD69A759C5B8E2BAC6DA : 309E72698FCD874D4C52CFBC57664738CD5D6A14EAEF71D3E18E7B6747AE4796", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/309e72698fcd874d4c52cfbc57664738cd5d6a14eaef71d3e18e7b6747ae4796/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "A90A1073F107A899871084AE74D2B586 : 121DD8CA3D14D76CE02908CEBDB1661B90E35134 : DBB85D1E383543B78F9A777EC602CC784943607B61F4C7CC9E3A3AA201F78B28", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dbb85d1e383543b78f9a777ec602cc784943607b61f4c7cc9e3a3aa201f78b28/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "34E1B96C98F8B3CE5C663A87BEDE835A : 1B072898157062EFD7F32C3215E9D82244C9616F : A71326EEBE3F93DDBAB47D3EF4D0A9F97F88CA1FC6BD1CB6B4DB39288FE3E580", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a71326eebe3f93ddbab47d3ef4d0a9f97f88ca1fc6bd1cb6b4db39288fe3e580/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ECD0CE00345D66C1937DA4D12D59CB35 : 9BDA713A80320174369615CCAA24C443B57154C7 : CC5569A5F53A51BDF67927C78939B9AEF7DC1DE2B8ADC5129C50C9099C034726", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cc5569a5f53a51bdf67927c78939b9aef7dc1de2b8adc5129c50c9099c034726/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "C87490AABA10B664E7F6FD3F653DCA14 : 3430DBF15ABB3E56628F20F9937480EA90644421 : 3B9CBD18AFED963D5B07259677027930237BA5FFB5DE144E9E5A3F6EB4E322DE", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3b9cbd18afed963d5b07259677027930237ba5ffb5de144e9e5a3f6eb4e322de/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E9C692AF275B36A4351327FB33445E86 : D3EE12628F785144ED9D1DDE4DA8AD0423FBBD61 : 54F64790FDC1FC0ACD748A8926892AB4EF7575FB3C37D2E403C79010C9D43DF8", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/54f64790fdc1fc0acd748a8926892ab4ef7575fb3c37d2e403c79010c9d43df8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "53F62EBF12137154A1F0B188BA2D677D : 25EA603FF14B8038C6494A62A19EEF0A21AC5978 : 6DA427179C64AC6FCCC8A36241BBA88C81E5DCAA637B23008E66F930E71D9FBE", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6da427179c64ac6fccc8a36241bba88c81e5dcaa637b23008e66f930e71d9fbe/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3AD372295905FC3EF5FB80A746C68E00 : 5BF5806F44A0B4008A1F2299BAE9A110E890D48C : 78871D581C84BDD86ABB0DE5AC75DEB85D6A248D4361225F56CD9FEC575B4A01", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/78871d581c84bdd86abb0de5ac75deb85d6a248d4361225f56cd9fec575b4a01/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11DC1AB93FADEC59E188E5C6580025E7 : 440D3BA0D459C320D5E284C4E7E02394302FE911 : B9452508754316BFCC7F27BE27D6BD19DF72334D036FCF19664C8431801D06C3", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b9452508754316bfcc7f27be27d6bd19df72334d036fcf19664c8431801d06c3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B8E6E99A3DFCA76E78C964B7C1F3BC92 : 1E5EEE2513F57C12B2B228812E2F89456EFB1494 : 456D0DE1E1EA7FB986BEFF7FE3210C5C31B51642F38DDE8025E2421735BF47BF", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/456d0de1e1ea7fb986beff7fe3210c5c31b51642f38dde8025e2421735bf47bf/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "51916BD7CB75EBA866EA3CE63FA58812 : 8DD753896D7254230F096A2BE032D9AF2067D737 : 259916B42E21F40281B2A9AEB6E00B74CE02E97D4DB8C0DFBE33F76EC6F0F223", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/259916b42e21f40281b2a9aeb6e00b74ce02e97d4db8c0dfbe33f76ec6f0f223/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EECA95B3664F0EADBD0B552EFF0E4759 : 71A7361D184DED800D16FE3D9487174C2B96D795 : D8AB9005CD3A4E5CECC18A3E9D31C18CDF50F7533A473F8BBBC69FB5B4F345B6", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d8ab9005cd3a4e5cecc18a3e9d31c18cdf50f7533a473f8bbbc69fb5b4f345b6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F0D7A34701BA43112BF7B7E16AB2E7EA : BC820862786EB411B5229F9E592639343BBA02E3 : C9B752884E36B7C059D0C1062A85B4635A022538350D6041088E75691B17DF0E", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c9b752884e36b7c059d0c1062a85b4635a022538350d6041088e75691b17df0e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "86C52BE02BCF030B55CFE0F263267223 : 7231C06221E82803B5E2F37F917C244D5C096A4F : 2529681603C702F0C90A9BA439B4D6A4F727ECF1D10000A2BD357381E978B4EF", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2529681603c702f0c90a9ba439b4d6a4f727ecf1d10000a2bd357381e978b4ef/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D967A8708F367FDEA1E8DC9467FF4E1E : DF3DEB0D73F86A1FC590AEB42AADE358E9EE2513 : CA1E5A1FF6CA5D70F69087CDCE8DD4CEDB56E01107A404319119B5A00F48F8FA", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ca1e5a1ff6ca5d70f69087cdce8dd4cedb56e01107a404319119b5a00f48f8fa/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9BA62FF3ACC467CD6E0BAF1AA6D6C847 : BADA764F861418C661B19FA43EF81CABAD3326BC : AC0A4BF25384A28F7BF18B010F1A6D887092DB272E54383B77C35E99E08A4AFF", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ac0a4bf25384a28f7bf18b010f1a6d887092db272e54383b77c35e99e08a4aff/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "750B83A19CD4F219297E94D1BF239119 : E206EA78912ED2BB3B6DEA16027A8EFB8B7A8249 : ADD50D3BB98348C2B9B4B81D4C2EDC342C33AE025DBED0EBF60B7B9AC4D8B2B0", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/add50d3bb98348c2b9b4b81d4c2edc342c33ae025dbed0ebf60b7b9ac4d8b2b0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "966D2AE0B3C049252123AC15858FD2FC : E72F83D9D2CBC77052349D76B2982E677DBF4745 : 9B61B52BF99155623662A0798CDB3414B7FEC99BE38EE4B3F76BD057A5178FC3", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9b61b52bf99155623662a0798cdb3414b7fec99be38ee4b3f76bd057a5178fc3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "64075F805EA19C3FA3D70EF0D1C3824F : A5F9562E1DCD799D07CF1204A6450C26836CB6EA : FBD9C82C2AA3D3461C2AF009B704C8A11E1DF4C7C286A51B1AD3F3FB63DDB548", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fbd9c82c2aa3d3461c2af009b704c8a11e1df4c7c286a51b1ad3f3fb63ddb548/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5CA0C597F3B50A76FD54B77B974265DA : 5488CF72CC3F533EFC8F3201AF908F0FBF328418 : 6C31C4FB3C2BFB364057C1FA4E21D2BF943CA3FA33DC74ACE2BE0535AF7CD80E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6c31c4fb3c2bfb364057c1fa4e21d2bf943ca3fa33dc74ace2be0535af7cd80e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DCA6264D41ED671CC2775F8ED78A318B : 0DD220B52A9B0D6C644DB6A0B29DD746261D4500 : 16DAD9898EDE33155A197A913CC81B6C02F2B59EBB69ED983D9D7A003D31BFA8", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/16dad9898ede33155a197a913cc81b6c02f2b59ebb69ed983d9d7a003d31bfa8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "DB9C46345124FD21AE3A2B4777081980 : 2455ECD7DF34F31FADC91237A3C612C9D9E6DA55 : BE59A89524AF2D5A4C950E6A8EE6E8DB3E97A93DD2551BD5FA4A21E1C9252EBE", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/be59a89524af2d5a4c950e6a8ee6e8db3e97a93dd2551bd5fa4a21e1c9252ebe/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E650F12BCCD945367E0B1B8FD744749B : 420BB29088C766CEB6BD563176A53D798071C831 : F95C6216671FD96DC95E222E89B4160071170D59E10DA3AF4C62C09E79A02330", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f95c6216671fd96dc95e222e89b4160071170d59e10da3af4c62c09e79a02330/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D03F3E4CF73274F8E1579849CA2C2D75 : AFBB660D03608442789B5EAD85D29B05F4E4CBEB : F0010C13995AE69DF421BB5FEB51E4EACECFC507CB3C62B9F269214C24338242", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f0010c13995ae69df421bb5feb51e4eacecfc507cb3c62b9f269214c24338242/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "CD3AB6100887AE13F33E813C8DAA7B5F : 239FD639E24914926A1BDC1210CE0DA530A211F7 : 5F1DA0B77688B216CDDB59CDEC73AD9DA55A35C0943940D436F8B208216860B0", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5f1da0b77688b216cddb59cdec73ad9da55a35c0943940d436f8b208216860b0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DDD822D85F905D0C62367E95E9C52530 : 51144CD598DAFA90AE11C808ECDA599C0A40D859 : F7F4E3B335A56E9334681F82DA4F0170D2D633588008D022045885E26DD8C057", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f7f4e3b335a56e9334681f82da4f0170d2d633588008d022045885e26dd8c057/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7714EF5EDD76B8A344BF62CFD9CEECBE : 21337163F41A7A56A0FDBAC9B3E531924650AA15 : E54085ED422B8708183F5481445E898781915D51933FC529B6F56FAF3D9F2087", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e54085ed422b8708183f5481445e898781915d51933fc529b6f56faf3d9f2087/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EDB90025E6AA435AF401544C282F5EE4 : 0604FCEB1F0A49B047EC1EC5C92F26F67EFAB54B : D8187E5ED9CC169E0FBCBA551C31C9148C8E79C19F0731288B8852B34024927D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d8187e5ed9cc169e0fbcba551c31c9148c8e79c19f0731288b8852b34024927d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "279A3905C3D425502DEFABC0D4AE1DF0 : F91449553DDE50CE4A9E73620BF2EEAB94CBAB3D : 54E8D80A1E84528811E8CA1C716F35543D26696385AEC53F401C0604D51A7C88", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/54e8d80a1e84528811e8ca1c716f35543d26696385aec53f401c0604d51a7c88/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B0B0E78B2A979DDBB2AEED2BBF6FE4BB : 12E72B412A35B113EAF9EAA7501CC59D48C4E261 : A8345A31EA266D02847F211007D1D89E658334556C2B700C8FB291C2DCBEF093", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a8345a31ea266d02847f211007d1d89e658334556c2b700c8fb291c2dcbef093/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7F259C38EE04C5119D7AC89BD5557A85 : 21EAA07136A1F9BFBF3AB1254903087E0F9F7CC0 : BA827ED81399008EF1C963B904F08BB0B2B5A08922308FAF779C6B7635F88374", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ba827ed81399008ef1c963b904f08bb0b2b5a08922308faf779c6b7635f88374/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "virus.office.gen" + }, + { + "Type": "File", + "Value": "4B6684E4DA18DDDD0B6AD838EAA57FD7 : 6D8B80D50D671C61AE2B4CBA7D0FE6DF465F557B : 2F9BCBA774F77FDA1F3D17AD6919C95065EE998A210C02F61824D3D98A0958CE", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2f9bcba774f77fda1f3d17ad6919c95065ee998a210c02f61824d3d98a0958ce/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9B2F2939EB8EE0593C3E0CAFFD0BE1D1 : 05735D16EC21498DE3B8E925F20DCAE6C928C361 : 3D5E3DFC3F186548CAEF73340FA23EC192E060C512454E987ABF0E7CA12F5480", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3d5e3dfc3f186548caef73340fa23ec192e060c512454e987abf0e7ca12f5480/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EEE6D21A362096DE2357F284B8F02E56 : A414CA1EF84B5729B7FAB7C8FCC95CBAB0C768A8 : D25956D78BCD0A3890CD0AF1F6F572D96CF00FB2418E5D4FC648C550517F223B", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d25956d78bcd0a3890cd0af1f6f572d96cf00fb2418e5d4fc648c550517f223b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "16B04C104C36D12DEFD9025AE0230AFD : 91B3DC6685A8B9F7A3F003AAFD1E0CEC9BC88567 : 6CB3F5EE1675794D8F0748AD26EF84D96071291D13F1F7C9F1BAD582042E4DCB", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6cb3f5ee1675794d8f0748ad26ef84d96071291d13f1f7c9f1bad582042e4dcb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "66E5F75D15128076945E1FC7F43701CE : 658643F20E7407E7F7555B414A1213AD315FB518 : 0834E284EF8DDA5B76BB1CF553CC34FC4DD583E8B29F1122CC71AE1F35E0F3AB", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0834e284ef8dda5b76bb1cf553cc34fc4dd583e8b29f1122cc71ae1f35e0f3ab/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "44114B98D90F8BFC9E18C285937CA092 : C81F84FFE41E463DB2680D53A83DE1F166A1B435 : 33F63B2D32307B25AFE15FCF6E9C34447A6AD5244B3F7BA98EE59E64E3CE9924", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/33f63b2d32307b25afe15fcf6e9c34447a6ad5244b3f7ba98ee59e64e3ce9924/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "09C11FE5404234933A9438EDB5E9DD30 : 7B9C70539EE0C413C46045C8E94D048103086146 : DD6ABCCC825C6C04E54137A48699C12885FF8B68573BFDB1D163C8D3DA098E22", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dd6abccc825c6c04e54137a48699c12885ff8b68573bfdb1d163c8d3da098e22/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "855E9ECBC96B8DB4B22EA56BA6BEA0AC : 1A25294607CECF06E8E7FB47726AA1B5BB6340FC : 0E78050018B242917F2CFED801AFDB396ECCC9EF722D7B8F1221956D6C64E65D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0e78050018b242917f2cfed801afdb396eccc9ef722d7b8f1221956d6c64e65d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "732985455E2C9DF57FB53EB1DB4CC0C4 : 5A5B466637381A667168822B466C9744DC5CC908 : E5EFE4FB77BCFCDFDDD8B8EFD03418889BE02AB470D3B0B3216F8107E2D6456D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e5efe4fb77bcfcdfddd8b8efd03418889be02ab470d3b0b3216f8107e2d6456d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C046B0029C8344FF6D154D72EF5C4446 : 0E6E8757C7F9B2028CEEF4BD2B38DAB1B536957D : DB26DE9DF5CF31CD86146A4B8AD01C00A8BD1B9F479E8668622B2E8162618E20", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/db26de9df5cf31cd86146a4b8ad01c00a8bd1b9f479e8668622b2e8162618e20/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D7B67C2B45672F18D35D82A5254DC54C : 5656003042FCF86E98397F0C3677EDD0F53224E1 : 203B493FCBEF3EDDDFB920893B3C72C926D37346CD146967E031ECBD781BDC7E", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/203b493fcbef3edddfb920893b3c72c926d37346cd146967e031ecbd781bdc7e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4B696822FC27472BCC844691A9556837 : 728FB6D99CCFBD9BF1618E1D88EC6C4B6A3625A4 : CBE609677256DA4699D9A5139620EF48CD1C0422C48059E9585BA23B08F0B3AC", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cbe609677256da4699d9a5139620ef48cd1c0422c48059e9585ba23b08f0b3ac/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B043BEB9F19E05AC1E6CCABC927A450F : BFC61BFE76EA14744C493F240FE0A4F091713A48 : 196C0DCE8290CB847A2282A0ABD41F17A693484F8172E7212FB435C3EB667FAD", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/196c0dce8290cb847a2282a0abd41f17a693484f8172e7212fb435c3eb667fad/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0ADF4787E7B14BF123E8CCAF5BAE1282 : BE27B9F263F20F358F0D14DE1FA55923E9DE3718 : DCB8C04025ED430BB98422CE38F3A40A6B0051B8B98A0EF732E45F90DD7F95D8", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dcb8c04025ed430bb98422ce38f3a40a6b0051b8b98a0ef732e45f90dd7f95d8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EB669D6B1145DE6BFBB89FD0E671E880 : EB799783B0DF96297B3539657FAE31027DD36213 : 3F60C17F98913498D552D7998C8177399042E435816CDC81256D37EC8C557F3D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3f60c17f98913498d552d7998c8177399042e435816cdc81256d37ec8c557f3d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D29022B075CFDADE86D697E8D8C038D3 : 855F832BCF21DA3EC8B556FD5B1FD04581A824D2 : 032D4E64A4384DCEC9DA70C672454D467D3408A9D6A5097B4D101BEC25309441", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/032d4e64a4384dcec9da70c672454d467d3408a9d6a5097b4d101bec25309441/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A854921914047364D8483092478BC4CA : B5C8C377784CE76DC93867ADA41D26594E230622 : A20B7BB1E51D9536F89834CCE511F3BEB40865CB32FF6FB3763E2181EA17450B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a20b7bb1e51d9536f89834cce511f3beb40865cb32ff6fb3763e2181ea17450b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F9D208F0EC96CC37D1E1483B7E9A5B2E : EAA3ED8A0B7FFF2951B955CD9CC5A0F5907C1327 : 8377118CAC8B437C489F15511B5FB6C7CA370E1E3E8963028292550173FE11A1", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8377118cac8b437c489f15511b5fb6c7ca370e1e3e8963028292550173fe11a1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "22F121188C1713D0F6E9F5DBAA69CAE0 : 02D18F9E68D5416C35BD0F1290D8A19A94427BBC : 7D39741B916C89C37FEA96F296094113E95C2AF6A27F532B445AB726A3FB6638", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7d39741b916c89c37fea96f296094113e95c2af6a27f532b445ab726a3fb6638/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7DE0E2331D29785E5D3A614635E1670E : 014F6455CAC9E76E80C58393CB020728BBE62FC1 : F15703E74F5E4BEF53A87EA2EE91BD05BD1EFF3023ED5689858B53B31BDF8E28", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f15703e74f5e4bef53a87ea2ee91bd05bd1eff3023ed5689858b53b31bdf8e28/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "39AE22C8C1C8AB2B99F580AF10C881FB : ECA4447E90C4611F6D507E9B7B7A1BAD6680B492 : 08CD6108F968DAF6D5C4EE8F507FE03E97AE96FCCE4670BFC94453708F7B3EB5", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/08cd6108f968daf6d5c4ee8f507fe03e97ae96fcce4670bfc94453708f7b3eb5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C00574A84E844FC0C229363D8234C5EE : F2ED4BF825F227E8EBA7DA71FC37C6F537330C81 : DF9D7AF2D4533B3ACFD383C1D25465C80211D632A354E3E8CD2809C5A229963D", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/df9d7af2d4533b3acfd383c1d25465c80211d632a354e3e8cd2809c5a229963d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Injector" + }, + { + "Type": "File", + "Value": "43D91312017CC55D31ED438A1582381A : 63B95CFABDBDC225D5CD32BA6318707B92340C01 : D22A69F212C2B21113CB3F08330AF9D4BBA1767FB1D361ABE2C081A690771253", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d22a69f212c2b21113cb3f08330af9d4bba1767fb1d361abe2c081a690771253/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "2D3AE9FA7A7696B70139AABC901B1BEF : 2ADBC9A634A98E788CA79B67020115D5662A071F : 8E1B00C34832B3794D522F901117A3E5C8759094689DB26586B56BCE617521D7", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8e1b00c34832b3794d522f901117a3e5c8759094689db26586b56bce617521d7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "653216D2640BDA0133858FF5FD86B227 : 62830C0EC3534C551006D2A61D270A0549F89B1B : 8C8296A7C43035A57DEE4542A02BAA6418F2990F67EA05D3CC65453359B6A4CB", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8c8296a7c43035a57dee4542a02baa6418f2990f67ea05d3cc65453359b6a4cb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "B219690DBC01239DFE387EC83D31070C : 16532253A69C341BE1D42360F36828756D29AC0F : 4637F04D2CFA43EFA83329360A1F3C03928F4590E2B947D6B94115080CAAD2F9", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4637f04d2cfa43efa83329360a1f3c03928f4590e2b947d6b94115080caad2f9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "000134F98D6D06BCEA79025D6D4C9043 : 714F42522A2CB4FADD903DCACECDCEB4CCDEDD8A : 3117144510EF775E485C0831E6A4E64528E88508C2D971FB208F1BE9909D6289", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3117144510ef775e485c0831e6a4e64528e88508c2d971fb208f1be9909d6289/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1BF6C795E04A1C4E1A52B1DBA19BDB5E : DCAA4F1E9DBB123DE3D44B9890B7B8EB98880730 : 3EF4A03504D4D50912A2002F819BAFA0FDA936C0234F0E1DD6427FF043DB5602", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3ef4a03504d4d50912a2002f819bafa0fda936c0234f0e1dd6427ff043db5602/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "A3EAAE4BE7913E350AACB5B7BA7EFF98 : 97CEF7646137F066EE93529549C877BA7EED5ABB : A52C2C9F2ED455CF30885643F3382DC6F21F810996366FDCD8920ACB39DA1B6A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a52c2c9f2ed455cf30885643f3382dc6f21f810996366fdcd8920acb39da1b6a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "CD3EF23D591399624161CF82776DEB92 : 3947B0A238E3C3D322F5B5A84F86CA1F65420A0B : 58369587C3948CE02943D4336C7D0DE018ABF4E3B37EEB5AFF5B204212228130", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/58369587c3948ce02943d4336c7d0de018abf4e3b37eeb5aff5b204212228130/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "E479FD7334FD1924408AD9D01A5276E2 : 25C50EDFBB684D7B42E7E6F6BC6FE0C158E1102E : 22415B6CCD6CBCE39ED060E49742BA363A704F1A46C63F1D898B593D7A25A668", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/22415b6ccd6cbce39ed060e49742ba363a704f1a46c63f1d898b593d7a25a668/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D6B7051F86F5A474D1BDA53854DA6C02 : 542E60F3E7D80A043DFEDDDE2584C3AC4BD175B0 : 7041FD18C647A9EE6E80A48C1253A7E70F60E38E57B1D509ED765E90FA130513", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7041fd18c647a9ee6e80a48c1253a7e70f60e38e57b1d509ed765e90fa130513/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C74BE2FE68154CFCF3DD54F53123C302 : 53267C80719AE8D58E954B622571CA57B78950A2 : B0B676790F8CA6CB8DE4D41F05716D3031109A459A04C990D623200E574606B2", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b0b676790f8ca6cb8de4d41f05716d3031109a459a04c990d623200e574606b2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "C888E9B33C0E5533E125B0BEB0C82AE6 : 6E0BA5503EFB6D6DB8C2ECC5565E16B665E429F0 : B4A942896E6BB4C038B33D2217D14051CB36E60C67A3F2E480FA4DBFF6FAE538", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b4a942896e6bb4c038b33d2217d14051cb36e60c67a3f2e480fa4dbff6fae538/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C357CFED0BCDEFCC1F5175A58D367839 : FAEC7FCC8B159F7E62A456738E06296DD026594B : FFE3B7C37D783D4DD6F48DCD04B5AE4BB70E6620EC05101E7B61125C6F01393E", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ffe3b7c37d783d4dd6f48dcd04b5ae4bb70e6620ec05101e7b61125c6f01393e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F77CB3F70A734AC338B9478AC73CD09C : A81CB02CC8FB75D577595B49B85501F84ABD7215 : 5E8A55CA310B678ADCA974A9E74E8B8184AAA338FB4E8AB56B135CFC13687EC5", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5e8a55ca310b678adca974a9e74e8b8184aaa338fb4e8ab56b135cfc13687ec5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "2FBBF1EF0BCC1F385907B321BA3DF0D1 : BB5FB19AAE2C5FFE0E5A0494BDAAD9F0237980B6 : F8B5C165AFEFFBDF63CE547BC81C900E4A1538927FFE83DF4F3082D2F35BAF52", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f8b5c165afeffbdf63ce547bc81c900e4a1538927ffe83df4f3082d2f35baf52/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2F418F366FB822C4B2264BD2F9D48B91 : 1C91594937E4D4F49CDB3C70C891B6E242A51EF8 : FD5DACD67F0CD93A53FF558B17D7953CFB62ABC38C0E36A15014765C1F327B10", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fd5dacd67f0cd93a53ff558b17d7953cfb62abc38c0e36a15014765c1f327b10/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7C10CFFF866330D963182732F35FEBFE : EF203085FC450E98FC88EBBC3C3916BDA1C9F1E8 : 286590317252726E4E35FC0323C131FFC3BF5C908A10981A85D2EB0C920AD56A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/286590317252726e4e35fc0323c131ffc3bf5c908a10981a85d2eb0c920ad56a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C8D30E4D73BF445A0C449F30B1C79958 : 6D6FB2783EB3AFA17EBC6EEB722C3BBE787DFE6D : F66CCC8CBC2518BF64DFECC83D3C84C1C8CA1CC1EDBFE3DB9DA9A82FA167D108", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f66ccc8cbc2518bf64dfecc83d3c84c1c8ca1cc1edbfe3db9da9a82fa167d108/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7DBEDF0B6AB9FC2858B66F4A9D7D83B5 : A8FE1F8F23EC2188845CD4D67492D90C5F5E473C : B2CBBE8642390F4AAC4069CF00BE46D013D394C55AEE7203D6EC987222A6B8A5", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b2cbbe8642390f4aac4069cf00be46d013d394c55aee7203d6ec987222a6b8a5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7E94873D563229105F9852DC23488142 : D09F04763AC75018767949037987DFB2F9DF208B : F36BADE81F5258A1F9D870A9E587E080A03A5D8A0FECC6EC554CCA7124400E82", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f36bade81f5258a1f9d870a9e587e080a03a5d8a0fecc6ec554cca7124400e82/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6947BB53A3985566EDEC502A17E90E27 : 6E8C5E07EFC6415178C81351E703633E044C316A : 7B305D3E1B07C795B32B6DCBAF2AE65EA4CAA28BEB94C927925EC7F4DDC7B2ED", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7b305d3e1b07c795b32b6dcbaf2ae65ea4caa28beb94c927925ec7f4ddc7b2ed/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "57D8FFF6C02ED58073823C87EB424F01 : 4A5FC079BAEBF64A9CD898DB99A0DC41D20034A8 : 3797A5B64B8019AFB54117B938A44C5B6F865A92E70D6F20606C830BF9FCAA1F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3797a5b64b8019afb54117b938a44c5b6f865a92e70d6f20606c830bf9fcaa1f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C6999C12AD7C2D7AB7609E434213AB7F : 32534786E11379B1940071946400B246DC47EA38 : 2933D86FBD5E015481F5E6315F9181CEBB55A9CDC77B91F2325B819BF74576C7", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2933d86fbd5e015481f5e6315f9181cebb55a9cdc77b91f2325b819bf74576c7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "3D3892F4D228733E5FD6AA77071A0830 : C1EA132310A37A0796D3478610B17D8C744CE7F6 : 20CC7A95816D95F2B66514539C87983BB8BC8F33BC6942188AF9617CFFFD80D3", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/20cc7a95816d95f2b66514539c87983bb8bc8f33bc6942188af9617cfffd80d3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C78DE18717DAC6F6FDB8B17AB84D1CA6 : D89779E69E713E1CBF001B8596AF91B1E3E111EA : CAF59E26C3F74F32EFAAF4AC9BB95754AFAF596D643207A9480025AA38C81C10", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/caf59e26c3f74f32efaaf4ac9bb95754afaf596d643207a9480025aa38c81c10/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3131212905264D2E5BB2B2A260C5DF8E : B979051588879D7B0F40547812FEF495E5E85EA8 : 5707F9FDA96EE133C75AE49844F02D5C4DDAB4B7D1D446B57F82C33AAA494BD7", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5707f9fda96ee133c75ae49844f02d5c4ddab4b7d1d446b57f82c33aaa494bd7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "F8383A5B8D404F9FB5F081DF01CC4E17 : BF6320E722110A32E030329E8F607DE55156544F : 7B12DF09E1F461AD668420C492C8A0CC61137844BC29B602B44204D86B90628F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7b12df09e1f461ad668420c492c8a0cc61137844bc29b602b44204d86b90628f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "24B48A2D7099A2C303B0430E4B82D170 : 372AF28C4FB383E275B4FC790751925955AD3B73 : 45EA8573175480E74755B7DCB0B8019EA0F160C7719E4B6FFDEB073FF80EEEA1", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/45ea8573175480e74755b7dcb0b8019ea0f160c7719e4b6ffdeb073ff80eeea1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "459E861BF79DD964489E8843F9A3A979 : 243853416387FEE687DF200A89C3FDE7991BC7A0 : 1DF02EB2BBF0DDA56ADEFFEC67C22F720D9F31DE9EE9B8D4BFCB207D2A51D383", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1df02eb2bbf0dda56adeffec67c22f720d9f31de9ee9b8d4bfcb207d2a51d383/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E03CC45E5AC4A2FEF192D0CD92E41110 : B3F320CB3606FA6979D7A88305C269BE74A5FFA5 : 4184A11E70E44064ED6A043B6852A3113125ABAB23902C28130314B5E0153DA0", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4184a11e70e44064ed6a043b6852a3113125abab23902c28130314b5e0153da0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E7D283F36DB8AD508B4BA9F5795DFCEB : 7E2A92CC60AAAF2D78E3B4EE929D70E517396645 : E9C27262AB9D075D0CA207178A376219D4317E7412BCFFACE1D50784537C9657", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e9c27262ab9d075d0ca207178a376219d4317e7412bcfface1d50784537c9657/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "691E640F3C3BDF4218D2520BDE47D154 : 62CEB0AE610907DAA080B48E5DFEC4FF88060D1B : 2992D660194CE69A70061D8FFDBDABB030CA71249582D453593A6824E612A7DB", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2992d660194ce69a70061d8ffdbdabb030ca71249582d453593a6824e612a7db/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "31D290CCEFC3766672908585B5F1A856 : 5AB37E5E046952B4DC143033BD93A6AEC0C09395 : C1A355B1B8C4BBA4C32FFD3B2209F3BC73DEA9FF3D268EA1AE6767BF0ECA0854", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c1a355b1b8c4bba4c32ffd3b2209f3bc73dea9ff3d268ea1ae6767bf0eca0854/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B0B3EA0B1764CD7F5FBA77527DB5E70F : 1788AC992AE3C49876138497C7CEE9E5192CECBE : A1A8A2A44BD3335C705736DE8AD13FA031921C7E48473AE588F48636860EA989", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a1a8a2a44bd3335c705736de8ad13fa031921c7e48473ae588f48636860ea989/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "466CCB897BFD9F3D5977EFBF01321B8F : 4B434490A1377F33F64B5D4C6CF68BB5F21D8807 : F20B66CC734A9A6D260A1B362298CE67F205DBFD44F26B128DC2E415F836F871", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f20b66cc734a9a6d260a1b362298ce67f205dbfd44f26b128dc2e415f836f871/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "08A27089AEE97663525818CC3DE7BA14 : 664701587986284087620485F43F4184F63E848B : 72D2CB5EB2D9591BDBB3375ED6A837A4DDC442438913075413A5B414EDCCC741", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/72d2cb5eb2d9591bdbb3375ed6a837a4ddc442438913075413a5b414edccc741/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "810763EC30AC2AC4FA93C774927735E3 : 7901C2DB3A029AAAC64A8568BDA69B6DC07611A3 : 0399F54BCAD905812DD7FD4280F87F51D7E04A80A185C7D606190E5B2044216A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0399f54bcad905812dd7fd4280f87f51d7e04a80a185c7d606190e5b2044216a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "231508142EF408235A653FF9F83093B6 : E7BDD9ACC71F4EB2A100157497BFC10FAB3D4383 : 1CD6EB8CA3ED666C202A8DBA9B7B6B35AD0F13EDD541243C5740DCBF2B00D5A7", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1cd6eb8ca3ed666c202a8dba9b7b6b35ad0f13edd541243c5740dcbf2b00d5a7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Razy" + }, + { + "Type": "File", + "Value": "AC3F6D4FB69B129AD75390D5F2213BA8 : 2AD20CCB27F4FEC58A8FE8E94F9EA75BEB69E72D : 70F33D168CE53BC398E9BB98A26723EB3C3E5A21F2A54FD26A8026B150EFA51C", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/70f33d168ce53bc398e9bb98a26723eb3c3e5a21f2a54fd26a8026b150efa51c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "194C0BC9393AC33EF1E496813A9FF45E : 523098F26F3676529BE7ED6D6BBF46AFE300CE3A : F7C9359DBA5846319CC752F922AC3B98A560E2CD18501360BF0D1153CA8EA4C1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f7c9359dba5846319cc752f922ac3b98a560e2cd18501360bf0d1153ca8ea4c1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "77983B4758E682D329B2D3F4AB3E3D10 : 134078B4149B67DB1538B20B0635C28B5B90CFE6 : 13C5F5D1005DA78F2BC6844001BFF222AA1D9FBC4072B90A0B74DB29C96D1892", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/13c5f5d1005da78f2bc6844001bff222aa1d9fbc4072b90a0b74db29c96d1892/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4AB5A7DA7B690AAEF78738BC403653AB : 5361A466937661BE1EA24D33D78C926D6E0A7143 : 3CF2397037F45095DBB27DD9925678639DAB3F6061B0C83F743456650C3AE1F0", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3cf2397037f45095dbb27dd9925678639dab3f6061b0c83f743456650c3ae1f0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "A83D414EF237FA3A6DA38CEB01A10BBB : 388275491822CC2CB1CB760495275DDD06FB74E9 : 3A30FD2C75DAC94AB955A3BB5F604BD6002BFFCD1AD17A5BB8A49365F82E003D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3a30fd2c75dac94ab955a3bb5f604bd6002bffcd1ad17a5bb8a49365f82e003d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "AB89E3F4F535AC06466FCF0879529E3D : 9C88CDD4959304A78097ADB1FF266A8878DD9E94 : 2BB01BA93890CD18CC97E631BC2E7E4461A578735172F1B592C6F28E6F094C28", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2bb01ba93890cd18cc97e631bc2e7e4461a578735172f1b592c6f28e6f094c28/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C7FFA1348CB0613693B5190BF4A2CFF : 07AC2964EBFB194ED3A07A749780FAA3219AAADD : D40A303D123E23210AAE82A1089FFD7F4DA541187888792CC937EF844589FF4E", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d40a303d123e23210aae82a1089ffd7f4da541187888792cc937ef844589ff4e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DE479A9B0174AB4EB8811D2526E208EF : C68767E390A03F1118CE6065B67718766F65D51C : 82A040407686343F6ACAE5A51B1AA1DDF62CBB01C8E9D5F4856036DCE052DA49", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/82a040407686343f6acae5a51b1aa1ddf62cbb01c8e9d5f4856036dce052da49/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "32A4F64A54CD6900FD66CBE3511B3105 : 92C12D0B47E599570BD751F248BACDEF3672274B : 75F764458F7CD45615954846276498A12FDC341B4E4CA968C8537E3C7F5756FF", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/75f764458f7cd45615954846276498a12fdc341b4e4ca968c8537e3c7f5756ff/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "39EB4CB9599FD0F2140922A8D3C017B9 : B95B05C8D5A73BE8290E6A7A8E4CDA859CE19640 : 23CF3201DF7F307C19DB9107359957FBAD4A0F8CDC0168C31838EF2E0CCF2632", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/23cf3201df7f307c19db9107359957fbad4a0f8cdc0168c31838ef2e0ccf2632/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "585F0EED932C98B75C9DC08FA89CA655 : 937260E6C5F1F47C30AD0FD667FC5099A527A600 : 12A84E6CF258051FDBEAB2AE174E1A09433F51A8C23DC11B6CC8AFC325A40C71", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/12a84e6cf258051fdbeab2ae174e1a09433f51a8c23dc11b6cc8afc325a40c71/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D7B701E6B12168F22EAF2B9AFF8AEA0A : 515A3C47F68A4A13C44E765BFDB1619FED70515E : 3D4A535A071B3177AE7ECF512DFE401B89829DE6EBCEF4B052223AAD3BB0707C", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3d4a535a071b3177ae7ecf512dfe401b89829de6ebcef4b052223aad3bb0707c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AC75500273F6A882F6033CD0308EA897 : 57C3B4B2A1C66CA10506C9C5A470971CFEA5FA24 : 6910B12160A73CEC21F6656919F44407C0FF6A7AC03C8DD458235B5B68090DD0", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6910b12160a73cec21f6656919f44407c0ff6a7ac03c8dd458235b5b68090dd0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C6794CFAC1BA6AA3F7A61214D418EF13 : 39704F63C1DE45EB904B5D4854C4ADBAB749BB0A : AD8D9D76E7A2FBA58507E9892493246A05E04C7B171A188E55EB2AA03DF770D4", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ad8d9d76e7a2fba58507e9892493246a05e04c7b171a188e55eb2aa03df770d4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W97M.Downloader" + }, + { + "Type": "File", + "Value": "93E34D70FD376984571884C14125BBE8 : 8BCC01508E3F65D6ECF9C145CCDC90DD550C4676 : 23FF2DA4DC569EE052A3365BC15D8AA731832A9C3613810BFD7D22259F13B07F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/23ff2da4dc569ee052a3365bc15d8aa731832a9c3613810bfd7d22259f13b07f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "049371A641F587F47F8113714D0E1066", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "221139020DFB515FDA6C937B40006F80", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BB9A079064DDA73AC705F654D4F60DA3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7BBDC68AACD4DBD548D98725DE5E72C5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "030D9F7041217400BF3FFF0839B34B19", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1B48192B527B05BD9035E5BDA822632C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0BE47FEC1B3826C52764D8EF19E1FFC9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "88687B06ED9FB3C5E898797124FE58C2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "020851FC2296243F8DB1137E1DD94C68", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "019CB58C272C10F9D84481B205F69780", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A61CCCA4559478266E9125DC2433D90", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A231DDA4EEE1F93265282A52B00E6FAB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "128394B5D3A80ED362E42EFDBFAA5A91", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1766380D085393C7E5A9D19AB8154DD0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0BBC2254F7BCE44D296CCBE80646C054", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5CE753019ECFEDB55A57CA051A59CB02", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E8AEDF90C7CA0C02C975D4D7D6D805F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DFAA86899431E58E513C2D27A4562A3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "82002EC9BCD4B7530D7F035210E30614", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1339563B2A47BC9690FF93B75D6F72A9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "715397F1F6C7597592FDE885384B6176", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0CE2DF15EA17F7632626F898E332A9A9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "137AAE40647683B6699E696D6BCFDA30", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "194E2120AFC957C135745426D038B1A0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22AD992672CFC14C5C5E4D8C77D04D05", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2BD1AE631C9B32DA4F5AA96B3C3DCD60", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22101AA290739B4D1E82BCAD44735E5C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "47A17CA35535946C32DD96FD4A4346B9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0F8BD82756196D520CC5A1B5F5383DB0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1D559ED21B4F829B3F77245E217071D4", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "69FE78EBB78C117F8A42B7DC19362AEE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0EBECCE75839340670A7A4F31444BE05", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "41A143D2D0E6E9728FAD22E965B82DF2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E9F192C5B6E137FD156525275AB0913D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "28AE379FAD8D848983015775402F4D09", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "492BD502B70B15D9D0FA9D5666B340A8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "141E10D720FAE88B98A4B0E5E5EA90DD", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C8B689F5A78259C4C401CCA8E249817", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1D3F600F918D41377AB3821E19E79E73", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14872F33DA651FC312ED1CD11CE2B52B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C92CA9B2E2B5463FE2ADA76C7EED1B58", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22CB202560CA216396BA445FBF3F371B", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0FC27AE45DB93DD20935A6117D03205F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "39898732B88511CABF287D93DAA4A130", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E5513445487607068A1EF6A39D2631FB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BD853036E08C6007722590267855D1C6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4689D9BEF9F3FC2A210E96EF5406AE79", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D553CDFF20CA2DDD41A66782BDC168D", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CDF9A7D2A8A11E147051DB802E415A38", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14AB85EAD6352012920483594302EC24", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2643B63F93D8D48C077313D42AFEC951", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07A267EA6737042C24456551EB655DE9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "225EE3F8811C9395E14758621A0C4288", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A011DD4537F50CE6524B6602CBFD5918", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BFDF57389E1791DD5485136387542538", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DF2A78D7013533CDB6B96608AE7FBFE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "219F972C6032D489840B2FF76ECB64C9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C18AE9F0439D35101D1A9D750C7C3E59", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C00E707489090C5D3CFBC14AE4DD4D6D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "100AC569308D76928122F1573E549C0A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C8F58072C2883378DC795157F0E0BDB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1490E579E84E9363D977C34AE12C133C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F07D0D1397573EC1443B0E4138F0DADA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "18CD41F58EB08AAAFDF9BA0E2E5BF67F", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "26DCA35CB143E215138A0732AAD3A195", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "280A40FF0EEC6F074F861C36B7A144DD", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E301182200C61B3D41DF45C724951E9F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "86274D1EA74D119E7B5DD419EDBEABA1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "045BCFC0A09C9AD18A9E3042CF85DB3D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "53E1271B3AF3C2A786492813CD1BBE71", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D12BA67F4710A2CBE18EBE9F212510C1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "67F3AC1609A109629B0034A1F8988E30", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "15FD4D1DD50DAF1FB73E8F024E633C3D", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0857A1630228009BE4ED0AE8F50295C6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E129DD90C1CD54EF991A474BDC6BA86C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19508B894E90F8DFEF47589FAF596850", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "29A3BB7359B2FD33B2CFC0CFAC5E70FE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "117D3B6107311AB5C96A7359F973AFD9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07E698020C8C9D41661B30004D897E8B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09D9A22602483A0DB34225773168AE40", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2160F7BE605581CE1ED06F43B03BA03D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "049F5C009CF73FB8036722D4E47813D4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "04412EA253A04EFC9A4C5D6176C55DA9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1E68DF2BCA2DAB80B44A7C3A8237D243", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "08D12D56675095C99C8839F759CAB4F5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1CB08BEA888695B57FBB74A23FA9CA2C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DB613420FCE437D8A80CA1FFCC964CB2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4E34CA8FFB35DA666ADA438C5554CD15", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4B374B273211EE58F1DF454E6CB856A8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D9820717AF8AC0C488F1A2A4B4FC43A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "28D9E10163B29B9B60144AC8F807CEA7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4A7F6CE5CD043924C59DA3D26529257B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4a7f6ce5cd043924c59da3d26529257b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AD34020CB9FF12C7BF21697E337457FC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ad34020cb9ff12c7bf21697e337457fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DDEB9563F14333D15CC9DE890F4B34BD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ddeb9563f14333d15cc9de890f4b34bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "914B7F4B941458597B76C0DF5A0CBC7B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/914b7f4b941458597b76c0df5a0cbc7b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2EDAFB19850C234E4CB4B89BDA15B347", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2edafb19850c234e4cb4b89bda15b347", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A693E13301BF8D24A1A947E85BC8A0BE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a693e13301bf8d24a1a947e85bc8a0be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0109C4A205CF7E0B48A368BC1E4DC5B5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0109c4a205cf7e0b48a368bc1e4dc5b5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C7AEE56F8081A23E5AB2BE93ECA160A8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c7aee56f8081a23e5ab2be93eca160a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BC293C1D06CD65485405BD576FC67FC0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bc293c1d06cd65485405bd576fc67fc0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1B79568DADF9277D73953BC9259F77BB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1b79568dadf9277d73953bc9259f77bb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EBB5645D499C48EADEFF51E99DE90B22", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ebb5645d499c48eadeff51e99de90b22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "166C16A794D6F6AD87F87261572EC7C2", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/166c16a794d6f6ad87f87261572ec7c2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D8ACE49F0F6525E680246CF91E7D4066", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d8ace49f0f6525e680246cf91e7d4066", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5D4E9A85F1A788F55C5C59AA315D21D4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5d4e9a85f1a788f55c5c59aa315d21d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FD5A661685479601DB0CDDDF11EDD90E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd5a661685479601db0cdddf11edd90e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1CFEE932878F5B7E352C352A08EE034E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1cfee932878f5b7e352c352a08ee034e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "78BCEA14DD70400DDCC946FBB085FDA4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/78bcea14dd70400ddcc946fbb085fda4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E8DF61279E5C26D9C3E430870CD14FB6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e8df61279e5c26d9c3e430870cd14fb6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8DE9C813045CF3ACC92AB35E75C61580", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8de9c813045cf3acc92ab35e75c61580", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "46655D6F7603C879FEE77519171EF607", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/46655d6f7603c879fee77519171ef607", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EFD28FE1EAE966A8E9F7A9DBF2D19388", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/efd28fe1eae966a8e9f7a9dbf2d19388", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "66C487F56C33D904579961C4E471FF12", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/66c487f56c33d904579961c4e471ff12", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "58114BA44248E0FB74B55E37140C1F71", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/58114ba44248e0fb74b55e37140c1f71", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "198C730F3FC73E190972942195D8ED9D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/198c730f3fc73e190972942195d8ed9d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "752DF6F049C06201D7965C6E4163583D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/752df6f049c06201d7965c6e4163583d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "629AEFE0EC2885CED6E20847137CAF63", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/629aefe0ec2885ced6e20847137caf63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0BAE345916AEA61CEC20A3FE7CA88AD9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0bae345916aea61cec20a3fe7ca88ad9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "52E03687762EA2E01031085A889F42D1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/52e03687762ea2e01031085a889f42d1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D2AA8F802F06BBD0094A5CDBDCD58587", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d2aa8f802f06bbd0094a5cdbdcd58587", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "43C06DDAB4B4D78B3E27C0C026DAAE9E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/43c06ddab4b4d78b3e27c0c026daae9e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B13B2149F3A0D45FACBC15553703386D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b13b2149f3a0d45facbc15553703386d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1799ECC4545BD5978884EEE4AF3E920F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1799ecc4545bd5978884eee4af3e920f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "581C72BF7F327CD08984484EE4805CA3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/581c72bf7f327cd08984484ee4805ca3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1DEC997405DD97B9DEC1B7AC45D50884", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1dec997405dd97b9dec1b7ac45d50884", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4EA4F4FEA63A90F74261569455E578B3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4ea4f4fea63a90f74261569455e578b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0DF89A455B1D970A690A26F31C5610F0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0df89a455b1d970a690a26f31c5610f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6584CEBF1AEEABB4D870CD89807F1788", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6584cebf1aeeabb4d870cd89807f1788", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7F352BD0460F18DE6BCFBABF8A58CAA6", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7f352bd0460f18de6bcfbabf8a58caa6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F70DF61F7A5F7FC3CC26AC268968BBEC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f70df61f7a5f7fc3cc26ac268968bbec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FF9B35D18F37AFCF38335FE9B9F654ED", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ff9b35d18f37afcf38335fe9b9f654ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "03C4BE3A85CD9E867E42B13844601E34", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/03c4be3a85cd9e867e42b13844601e34", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BBA0F23A634169633E2A35B28087F906", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bba0f23a634169633e2a35b28087f906", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "21E5ACBB98E81FCB08DBD6ED90B60B7C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/21e5acbb98e81fcb08dbd6ed90b60b7c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "49FC87D06DCC2B21A51EC20BD1F9C426", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/49fc87d06dcc2b21a51ec20bd1f9c426", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "042DCBDAD6110F651620A8664F013717", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/042dcbdad6110f651620a8664f013717", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CC8D7AB8BB7AD617B0C3386E348C6FEC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cc8d7ab8bb7ad617b0c3386e348c6fec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4305BAA9D9382D176919B3065E025F78", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4305baa9d9382d176919b3065e025f78", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "896B12D94785D8EBBF43B70E3F3204C0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/896b12d94785d8ebbf43b70e3f3204c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F47EDC3AEFB20E9F18A2AAA93D991D8E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f47edc3aefb20e9f18a2aaa93d991d8e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2B7127C9EA78CE0D569BE20738E10871", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2b7127c9ea78ce0d569be20738e10871", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ACC1E204FB374205CAC3CC1C15FD57F4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/acc1e204fb374205cac3cc1c15fd57f4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A7263A17793EF1ECADABEC51E4944D7B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a7263a17793ef1ecadabec51e4944d7b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C08267B56DCEBCA718AC757150662BBF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c08267b56dcebca718ac757150662bbf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "90A97258061035EA78667085DFE248BC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/90a97258061035ea78667085dfe248bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BD84A2240C05CC488E79121127FC26C3", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bd84a2240c05cc488e79121127fc26c3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AA4F981D6281F6429B5A85939A3D293B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aa4f981d6281f6429b5a85939a3d293b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "850507A83E4C9CD5F04D111756492165", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/850507a83e4c9cd5f04d111756492165", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F91F1B719FE1A5BC784577F612A898F5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f91f1b719fe1a5bc784577f612a898f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EC67A9F050933E5D3E8452C3630CD880", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec67a9f050933e5d3e8452c3630cd880", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "825A50C6C72637492C1B8B61FD90877C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/825a50c6c72637492c1b8b61fd90877c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5B1CC7BDA9C8F1C0E306292F3C2168FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b1cc7bda9c8f1c0e306292f3c2168fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D54ED103B69EE0C7DA60F33FDA8EC5E6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d54ed103b69ee0c7da60f33fda8ec5e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "83880A68CC437E7F2C5B381256A1C6F3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83880a68cc437e7f2c5b381256a1c6f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "90B91126D47D8FD2362B10BB444EB1A2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/90b91126d47d8fd2362b10bb444eb1a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "833602A4877F3BC64F92C383E0F5A55E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/833602a4877f3bc64f92c383e0f5a55e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "754DD74AF1B2BD9849F6A27D7F90DF26", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/754dd74af1b2bd9849f6a27d7f90df26", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1F861C88CB0B123849E7A89C081B80FD", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1f861c88cb0b123849e7a89c081b80fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8238DDAD96F1AC568834CC09A2C93212", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8238ddad96f1ac568834cc09a2c93212", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E5B80BE602ACD4E673AFEF41F1F35376", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e5b80be602acd4e673afef41f1f35376", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8DC1532904D452E36FC3344DAC0B0799", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8dc1532904d452e36fc3344dac0b0799", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "42FD5A9FE18FD37D8C98C7C9B8AB4D73", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/42fd5a9fe18fd37d8c98c7c9b8ab4d73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4A0DD3E073BA6284E275906CF32CA23A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4a0dd3e073ba6284e275906cf32ca23a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "90A783AA5E5A2184D4EEAE7407BD6083", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/90a783aa5e5a2184d4eeae7407bd6083", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9282C177D58E4BCC0CD674641BC16D62", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9282c177d58e4bcc0cd674641bc16d62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A795E23373AB610F0F7749B149A798C2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a795e23373ab610f0f7749b149a798c2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4CCFA50974E560D86CC689C448630A5B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4ccfa50974e560d86cc689c448630a5b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "94F2109709BCA4946B0347CA11DC5C40", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94f2109709bca4946b0347ca11dc5c40", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7224C51BD61E8C061ADE5AAD4D284BDF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7224c51bd61e8c061ade5aad4d284bdf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5B9178F223E4274D9303B8A67AA3E2D1", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5b9178f223e4274d9303b8a67aa3e2d1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "25D8BE45F2AA1B9F72672A7FC4F79BE8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/25d8be45f2aa1b9f72672a7fc4f79be8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1247BBF5412156ED48D7AF94EC1E2A86", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1247bbf5412156ed48d7af94ec1e2a86", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F26876B47D6D18F6F9DD6551287826A9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f26876b47d6d18f6f9dd6551287826a9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FEF51CC5EBFE44D3C63B99F2495DD7E4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fef51cc5ebfe44d3c63b99f2495dd7e4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A61897244D59FCACCEF8C9CBDC52BB1F", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a61897244d59fcaccef8c9cbdc52bb1f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BAC2D69983719089AD6A8A94A3265BB1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bac2d69983719089ad6a8a94a3265bb1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FAC1FC732FF711483BEADB0E366EEAB4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fac1fc732ff711483beadb0e366eeab4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "567FA3B1C2C82DD1E1287DFDA00F1585", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/567fa3b1c2c82dd1e1287dfda00f1585", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "746C1E585EC1BD6B4F1A6594E3080FED", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/746c1e585ec1bd6b4f1a6594e3080fed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "66B237C6C6E48A49A03B68365F91D86D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/66b237c6c6e48a49a03b68365f91d86d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EB106889343491C8C89554CEB50F2424", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eb106889343491c8c89554ceb50f2424", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "107B20A0E1AC2E55FCD466ADC3E84C8A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 100, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/107b20a0e1ac2e55fcd466adc3e84c8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5E0C8FD9668B3EC9F43739421C88FB56", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5e0c8fd9668b3ec9f43739421c88fb56", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D1D74A10FF869630B1F2EE0C0B5B3796", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d1d74a10ff869630b1f2ee0c0b5b3796", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DE289484021368117E0626D537BCFFBB", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/de289484021368117e0626d537bcffbb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C709DAC0B2A1E2B506D731E5A60CE2D9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c709dac0b2a1e2b506d731e5a60ce2d9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E9D94E0619D14F90853A52A678577116", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e9d94e0619d14f90853a52a678577116", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A70D4D8D8F5E6141690B9E245A8DE21B : D08F54E3A99FC4F53EEB0990ED315DB75430AB969AFB84B109A5D393920354EC", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-08-2016", + "LastModified": "11-08-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=a70d4d8d8f5e6141690b9e245a8de21b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "ns100.webnic.cc", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "ns101.webnic.cc", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "Host", + "Value": "rninnvvfsbok.biz", + "Organization": "Bambenek Source", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "111DE920CB9ECC21E1242C6FAD2A81F2", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/3dead04d4d3a8bc7c0ce8d994ce4a4852f75a0306775d1e676952781fef8102f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "Host", + "Value": "banpicb.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "banpinc.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "kk-properties-nigeria.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "unctdatunc.org", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 40, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "citibkline.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 40, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "stb-eglobal.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 40, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "Host", + "Value": "satviz-mys.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 40, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "EmailAddress", + "Value": "ojeyvictor19999@yahoo.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Zeus" + }, + { + "Type": "EmailAddress", + "Value": "d.plewes@hotmail.com", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "alphahax90.no-ip.org", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crimeware" + }, + { + "Type": "Host", + "Value": "ro-pool-1194.nvpn.so", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "Host", + "Value": "enitan.linkpc.net", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 100, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "eternal.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Korea" + }, + { + "Type": "Host", + "Value": "finders.hopto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "finders.x64.me", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "anon66.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "fazbar2013.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "myalibaba.no-ip.biz", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "maddencoins1.no-ip.biz", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "blondie12345.noip.me", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Sinkhole" + }, + { + "Type": "Host", + "Value": "daniel123k.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Sinkhole" + }, + { + "Type": "Host", + "Value": "living2013mh.no-ip.biz", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "mcpvpserver3.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "kingpop.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "host-u25vb3b5.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "cjswagson.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "harakat.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "markmicky.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "themoneyteam.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "nwire.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "canadianmodding.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "h3ck.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "mficekdr.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "pslickzz.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "cybermeeks.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "shalove.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "1990.no-up.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "fo.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "lovely99.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "ken505050.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "x4d78.3utilities.com", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "introworld3.no-ip.org", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "dynamic dns" + }, + { + "Type": "Host", + "Value": "hashcash123baba10.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "perpetualmotion.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "donwire.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "ojinmah.no-ip.biz", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 60, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "dynamic dns" + }, + { + "Type": "Host", + "Value": "elit3x.no-ip.info", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "l1m.no-ip.info", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "hunter52.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "smokelessboot.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "hunter51.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "cheeseonpotato.zapto.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "hunter53.no-ip.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "wishbay12.no-ip.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nigeria" + }, + { + "Type": "Host", + "Value": "introworld.no-ip.org", + "Organization": "Common Community", + "Rating": 4, + "Confidence": 75, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "dynamic dns" + }, + { + "Type": "File", + "Value": "FC35C4F519D1632F85151E4E2D2F370E : E1860D1A2B0D1BE5A2CAEC0558785B3CC669ADBA : 96A1302B6433BDBA46AC9A5AA879AB9E616581AFD982DB62BC6EA18E0DF3F1B0", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "E01CED5C12390FF5256694EDA890B33A : 0BB74A9D3154D1269E5E456AA41E94B60F753F78 : 66C1F3E71685F81F836E29E77844C737CEAA47FF787D6B233B05166973FA73BA", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "AD787809E80C7C83632986534841A7A0 : 7289A53110C6A101469CDEC24C233E2EB9834AA9 : 448F2A7C158B3C2D60623104A289BDB4BD3D08EEDEDF9CC65EFE4ADF75817FE3", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "0CB0E90F843191AC1F103314148B32A0 : 232294CFF6FC9EBF201DDB181A799DEB649A9DC3 : D516D079C77DB087484711C2AC4239B571F51A0B39651B31DA3AC511A782EA5B", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "0EE2FF6203A899E99562D2A945115768 : 7D3D96134D971212281B2C173254D735D161A906 : 0112DE563EDCCCB9CDBD49ABA04F6CA3C14B0F63C91F81002EE7E6311A9CA7F0", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "744FBD0EDEFDC3312C31A465D6A0353B : 1FFA105653C9CE76B9508A07E21C01830E44FA8E : 03C04DF03AC5723C680D619AC239F7B5F228F0CEDC0D1669356E74772A4BCDF9", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "B10E96E41ADE7B975FD7A3C4FF3DE75E : 0E7B786553400C362268730F9C7560041C11F743 : 147517E4CC9117D6B56C204309100DFAA735104F9D2400DAC265D5D79596A04C", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "30E2A0E34EABA9D90D1A482EEC347619 : 9CF4D23CB055C0E644C4F4546012F2936FF634B4 : 1EE69F0D4430FB32EAD6ABF3B1FFA784D3639DA46C6889B5303496875567EB4F", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "0907D4BF9EF4202BD67598911F0116BA : 8F8D9F489075BBDAC553AB187C9ECB827017AE9B : 21721B7B279BBF8EE903D341DB19A2090D295B1A3F2DCB83805A3FE48FB481F1", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "176D7A145877C1F92097DED3DE717B07 : 3E80C9A9F97F73B89741E28D22C506857AABA6AD : 2E08C2BF778941BE43A0DA624BFA334A7DF8A8C51281FD8921D7C177E8BB1385", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "623BB174D6E2EE190CF3FE2D3D3E7AC3 : AB9E8D5C926C2306731A42A43DCB8E541D0E3225 : 348D8CE7A507817804F0A35DF7D0C8273600072A7AD6FA8FF7AA84D4A9A11C35", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "4BEBA10D436E549C6A2F271D6B6019DE : 4E957F4F334E88F4166BA08423105F7C3342CFAB : 388B45E86566CE2828C827A1DD5A96A6BC6BC8235D47AD94B89062450D77DBF7", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "D02E2EBDC58311128783439C6FF9D277 : E457660F6056B898418A0BFA0001BE51432C62FB : 3B6451D837756433E318F1F115EBEF1B354F0222E3D37EFE39D186CB7E2BCF9A", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "D959684FE9E79B12F7F555CC0D88B0B2 : 898D261662DE0D13D351359F207689C4018EE360 : 3CD6387922033FC8CBCA395930BF4AFDD4476AA19AC76317259A27FC730CB216", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "722E36520F5381C0EB1C4911051B938E : 4465FF17AC186A77D0C056799EFBA262EAC35218 : 405BED9FE4CE9DC645DD6ADE7181E704B050EA6531801B063786910752CE13C2", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "AEEE766BE6F024F8662966E39D09CCB8 : 63350F16907DD9E239B9978489DA967D72A35988 : 40831632D00E210B3AA8FBB11149B5FA93FDE9EFB3349869118673C458C3D949", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "95B234174A9DA0D55E90ED968B0FF6E7 : 2F500A2D397FB4F4B87A3B3FF9F791E4931BC2C8 : 499A1543FCE4F311E20F66BC5F2A590A237CFFD15922B3C3CA8079DE36B37133", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "6B4C37791619057B05C1AC3F950D5A82 : 49F9ED1070D67FDBF7034FC9C529A83D6BF2DBA2 : 4A688C5A2E05B57E90ECB201A1EE46AF6A87DE3C7D1B408477F2FC3CEB15A94B", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "387EE658EA1431C5C6EA07C70DCE904B : 747E1D3CD22ED006EA9ED76828C78ADCAC41D993 : 4B639E09DB783B067DF3329BDCBF87BDBA821D3A183F6FDDEA67496AF4954CA4", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 35, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "33D671C506560C7B46F2222251A19812 : 0FB1BCD0960A7A5FEE8284779F2596488AA41504 : 63A8A02C5E4FFEB300B082039D49FF3D07735DCA54A364F9A12C201B30F6C1C0", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "90D4F7CCB106BD69167BD2E8B97CBFAD : 381A375F1C052A7B8EAEF1C9EDCA4EFB2F7C0AB9 : 644E2ABB832D1B25ADD850907AFB347C70BFEDA4D2B1CA1CDA0EC1FE254817F0", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "FE05161AD2CFF3136CC208E8DEF013D9 : 41CFD7E90A98038A170ABDFC609A0F4DF3A48726 : 6A0E7C5F67289E86BF83618C3BE2EF20F214361C25BF25E4B86C07BF072BCA72", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "B4CC9AD3DFBBB8DF56034BAB91320293 : 690B3A8DCE31307491F9946926AFED302F3887F0 : 7A1E23A663279FD12F85E609689BE3269C082D099C68CB635E81D361317A9701", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "94FB2518361DED9943F36C2F5B38577A : EA5AA7E9DCFA6C5321BAEFA61BD842D0D3126237 : 8A844C6654EE85EBD7F82677AD86B16AF1F3E978B248FEA9FC02E025EC361DCD", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "2FC479021DFC24E8DFEE3FFDA026EB3B : E1441C4E3A13DEE0ECF2B30A09066E1373622DF2 : 982E76AC1072E45B79365D91EF3D8DB146147F2CF407FE536E1C95F0FACD7ABF", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "F37E17FF7945A8F0B629F363F0E88C74 : EA9E00D2EE38BF7041034CF63E52470D851D213F : 997B5212DAF8BB90E32E3C9F594FF7C7DC29357C53BD1905ACA9956377D61E30", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "96022B22D4B293E1ADFD073EAA17C1A4 : BA391B61D40B5B875748F0BDC59EDFA1E7D69795 : A126251F0B57B983B9954AB08309D91DA45EAB5BB7B7B628561BC2778AE4FB39", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "A1F14A6B7122DC74AEE1E15A393D4A59 : 63D097DE3B4AE50460AFBD8CA6B8D3DB88F5C01F : A15B23A3A0082C8A77B08A4F58C3DDD68C2E96BD1F1545E5949CBBFED6EDFD03", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "5483BAA7A5671E65C7F5DDB7C7EF1997 : 34FBE699427C732259874D15430F439311C6DADF : A38F48EA07D703887C98437B0B12298303901914AA900495F5F687E701CA217A", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "4291C108CCB84C425045A5C8ED88CF39 : 1BB25E5893D2CAC49411E3440A13476A9AC74B4A : A43C10A380D9EC048E9014C3AC65DA43B73731F57EC3CB3B6B1C94FF2B3B1EE4", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "FF94793FEEC54FA76A81E5C4B1EA8F76 : 2BE2D698FCE57C92172159C9C3072C865A9D169E : A77B2EAB020A306B4A1259E81F6BA8F508D8C03CF6CF07A01E629736F553D40D", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "6A5B25949F6F926CB41E1E2F48015AB7 : 2DD8145151CC95A372FB7BCD51EA91A1DFA08FB0 : AACA9C8434B13CDE23C1CE57FC77D8772DDCD585123A6F799207C8601E19FD03", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "42E2D1975EC88D70EFB79B882BEB068D : 5EBB0DA73775D29A5FE4036CE38C44B971D65530 : B1000F4DE567D62A912AE0565A7B66A28032E51C4BD14A3761C466E50B76EEE3", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "EE06CCD620D4DA17D2FC20D2D670EDEE : 9A23762A42B0EC34CFECE657C581FBA896DD33EE : C934AC6374E356CBB5FAB6D47EF139DF803B98F35F870A59A322954BCF1E43E2", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "8E710F3DF7BBC5C3BA8921E5F2FA7F26 : DFC729AF93DCAC1B2631E1DBA089C25D0E1D0628 : D5C7ACF75FCA8D8D1609DBCC6254B770483DA5A9878490EBD312C0E5813BD414", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "82C837471DB422FF41B675C096D24C39 : CF4D939881B4D2102DE2054DA13C7E1A0D839275 : DCA33F57E1080BE8ABC89C1688E634C241900265051BA257BEF610031F174EBD", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "0687CC28E5CE4FF162F78A8F03A11096 : 0E136A7187B95404CCC75C271491314AAF66D4E1 : E5D358AA5C017C57EC466F5EB5E82EF012A033959C3B4A9A1D37C25380293644", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "7CA4588F6816B3915667ED152D4FA0E9 : F207DB44ACFDA0BC4746865B9918BEBA4FE5C53B : EEDE585A0A78B4B9663DF630BABBB6F3A5E591A0AA71A0A100C9EF85B3D982D8", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "197AF5E0561884B4E329F88AD674E4A3 : 8B4AD5E8E61B2E4C9471C32A811ECB7A48C03211 : F17AB7B73300E2ED3C2255E1F99A121435FEC881283062A5AAD3C4C2FB39C767", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "ED2E888FEE041873BB9FC3F2A6855D5A : 0CDF704709D337274480C681B3D026DE387FE453 : 2015FA0CE1EB6F2C7AB34F103BDA4034F7E74F4B6D4B048C9A30807B943EA81F", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "04FD78B73FDA3E96A490FF906D57FFAF : 09E98B5B040612C56B63A03AFED065DF2EAE3DF8 : 2063731F818A71C016E411071A0D7DC38F560DABDA30559A4185BA10F253A810", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "AA054CB173BE2AC9D3DF7CAEEB14031B : 798337A8A163F803E588DB57E4284B66884F319E : F7A7F7680664A14681CA3793062D193FF61B0C2385D39B7A7D27509D97259C88", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "F080099B3BBA0D1125E5E2F795A4CBA8 : 471C9DBE7A1EF98CCABF5062EE329865561482BC : B1113B791E2F1BCCE3129D8C5DEF0145AC0C463CD7631BE13AEB481A144A2149", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "07633B437EDCB47AD5A955F81355BB6D : 8E71EFFB4AFCCB2D3BB7CE8195DDFEABA2964BEA : 337837DAFDAAC088D853B923FFAAC6809D66D1C87F9EF3CE1F82E884A7F82091", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "3502A6ABB83CA2E96FAB17FA3CEF493B : E35C045F185AD584C2083F12BFAA631DF19DDBC1 : 0B3E1954E75B264621D9ACFC1AC42B31F1F38D420612EB2D978E77D0A9D4D200", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "B26ACBBC06FA390C170C3A8CE540A58F : A84CDC6FA391C22213C069926A93BEA351BA45A4 : 6AB15F852C16B04A029731370330ED1B6E6F78FE2C6BAB5EF02E4AC990406F1E", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "9F6A123077737271C8EA7E3058050D51 : 46B177D4D3FB3D4EAD19F89D2D8626DBB74A0534 : F9BEA8494373E1FFCA0E81B9763D6A8C52EC5530A19685AD4B1033389627875B", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "B7D343C69D4009A24D908FF32B3C50F7 : 2D796E011BCF54A58BBEAF002EE31C7E3C48E75E : FCE4FE26977278DCE26BF20B2FAFEB04D8F9FD69973E31E4D2B28827AF7BB041", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "8757A27B8F9D452051AB4FCEF1A97D93 : EDD5B46907F65432F41688A26F240579D5B5A8DA : 11AECB85802D701A6712574DDA3F7D2EEBB7C4C64A7B87D54132977E7388281D", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "C4224BDEB325EA8FAD08F256BA027622 : 10E6680EACFECB71774E9644BEA7AFC1644A804D : 75778A79212021CCF302B31AC59A2549B93765D7316885CF76CB6F92973BD026", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "44850DAB6376220AE822710A29F8A810 : 421B2A53FF457AACD3BB9FA91F801841F61BC9AA : FF9F4BD16FF0E0644CEC8ACC6269C4515A569BF9673CC7B3E300180A396E65F7", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "384330800804F062D1935A81E4F9A6D1 : BBA4F47C4E78AA0781E160B4898C4638BF928C94 : 8ECDA6227EE433216B889574B33F90CDD4150D9E222DFAE1A47DD9B71A0ADB14", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "99A07AD5177E348A1CFB183B7D1A4855 : BFB4EDFC08B5AFCF814677C06D0D10AA9F9FD4FE : C1F6E17BED2A3D9B640EDEB7218DB5E6AE5BF355452F0DBD221A345D7C8F7F73", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "90A7425A7732AB71A92A012F88930753 : 4745DAD9FEAF7F017B93D3084C5C48ECC551BED9 : F1FF0ED0737FA5E21AA5FD34B2B4B4407EF67D2FD219F498BB13E8964E948D8B", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "8B7733C14428A4AAA11F4D2639FDBA94 : E088406A58DF52325E9F620646A7CBDC0C017041 : E0FC5CA9AFF70285B44F588631424EDE1815AA31A6BCC54CA14B6F5F360938A3", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "16F3419ED9A828351A1D3C9F9B9E77E6 : 211574CEC962A4487EE394730DD4B230EBCE40B1 : 3DBDA6D7AE2770CB75FE77A9CF29370EC1052E23A2E48EB6A646F1A3BE376548", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "BCD63734C975293CD95A6F98712639F4 : 9C95804E7B3330CEB8AF1B9CF4DB9A21BFC95F99 : AB857188CBF96CBA064D7AC74642BF1F946B8CB114A106BA83100214EAF2F8D5", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "3926E5B453722AACB19483486D2BCB73 : C84693E4E792E7F24C266DEC87F441FE930E1895 : 7C135EAFCE7E74EEBB93D13B3FA64B688B1DB1772D0E3D50D4FED779032D2037", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "1792B556BDD84C6BBB92213D0D15FC0D : B5A8A8DB648A1EB1FD0B03C49C3A02A33C3C6C4D", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "File", + "Value": "8DD9EA743EFB30019F20D424BE121B7E : EE4276C3E336B1DBA8953F01D37B780386D113BC", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Crime" + }, + { + "Type": "Host", + "Value": "darcourt.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "Host", + "Value": "hanco.org", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "Host", + "Value": "send2subscribers.biz", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": 1, + "Whois": 1, + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "EmailAddress", + "Value": "beasley.martyn@yahoo.co.uk", + "Organization": "Common Community", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "CF25CB079690CF48E42D5164C79E4EC7 : AABC68F7E1C5A6E9429ADAE483E28339050039CA : 77C0D7C65046EC631BAD3AE5AE2A42881FBE7C233E228CCD8981DC32442ACAEA", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "4527263C83154520DB1C213B1F0DA832 : 734D7B5C940EE11A995C49FA3725F071B997F8E3 : F8FFE61938655E818CC47D0A8441A3C03183E4ECC0B73C993D2A71B66AA6E574", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "C2F6B94F89EB7A20DF1AEB9826430EE1 : 24243CC225611A1596357CE8DE69D50F5C3CCD7C : F8C68DF5EE97F6FAC1AD36E60A5A221958F4B88B4B6681ADB69BC8867EA4968A", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "140B1A4BEF6911108685A79D0ECBC53D : 239CFEEFFC89F153FD8FC2E5EEB3258956E36285 : 2DFD0968E7E7A07207D307373FB0D63546E107AA46E198C2BD9BE3BF25BF68ED", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "29F712D268DC359CA8422CD3811CD97D : B27B1750792D86481350D71C1601B1ED1CCAF01F : 8962CA1997193BE3931C41983CC4600E941D40BDB0FDDDAFA00F3761FEEB4BA8", + "Organization": "Common Community", + "Rating": 3, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "C341D9659A84378E650D23A42F59EC9B : 891751031EEB90862CED41EAAF7B5646112049CD : 1EE38D41F07F192B4A6FC98846765214EA28B7AE607B24738E18139BEB48E89D", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "AF71242C2BC6FBD989ADCC32A7D6CB99 : 22FBD339FC8964A3567CF9BC8845229C01C88885 : D752A3849DED9436BF33F811AAB129B47800E71BAEBFD420242ED35AEE23D98A", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "9D23737FDB4F60AC6C5B47AB74C5AE2F : 1A0E530CC62CB9AB7F320F2CA343E92DDA38830A : E9A0B892C01900C2CFC85BA3D2E4BF64AA443976253E5FC6406BACDD6842E54E", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "88E92D94BD83092335B610B8D0CC0452 : E182B6EC372251144EE18F0F67C0075D0D8A4A88 : 7909B227371D6DC00CF34E58732BFCBB447CD7BF55927005E7907054C239D793", + "Organization": "Common Community", + "Rating": 5, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "419 Scam" + }, + { + "Type": "File", + "Value": "2AA4C1AF6589F53A1A178E1AD26D7A55", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3B79C08A712805F96DCFB90A69C73384", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9C41F17BF037B906E45D0C885E4346EA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "93699164322449AEC611240566D7CBB7", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "10F8FF6D98F5DED6185A60BA5E7AC8B8", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C1CA56590A8C2B6A83892701569ECB0E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "263C177A03CB47AE5C17BD4CBB746E1A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DC3348806D5C120148A087D99348E9F1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7DE1AF58BCFE392A0C52FB68122A9CCF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C9A40327E019340050932156F5EBD343", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7F352BD0460F18DE6BCFBABF8A58CAA6", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1D223C2E0C60E4E5A6EBE6ADECE31C05", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5CD1FA96FAF2C87E6330133952E60CD5", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "521F49F5B8005041FB41B8948FCDA831", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "820149E75563C26C6850EDD05D72A742", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "680450723E1C662B558EA5561129190F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ED8F7DB301546430365334A4255C876D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4305BAA9D9382D176919B3065E025F78", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8684DC4213948B676107F0EA8550D3E4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0AB89A10AA3CF2DF4C56B5BD7AFC9CAD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "60CC1F984EF3062578B655F173914945", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6584CEBF1AEEABB4D870CD89807F1788", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CBD958B0F0A170D7898326270C364784", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "89BA81078A1981A85BB2222A149F0809", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "86883E94BBE4A2688289552820B67F07", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "885AC2FB43B8F3BF8A40C9DAD03648ED", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "278707BBB228725CD5322E03D8AE42CA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D9EE8AB38F8B428EF5533DF7050F1371", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C95C0A2B01054CDEABBAE6AF2869695", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22A591EE2FA8731BFBA7A4B1D1381EC5", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DBE1FFD0FA9D130E7FA26C2861B3250", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C9F28665C199A708AC75F2D9D7CA747E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "885795D0E8A0099BE9BE0A1A32560A07", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F237EFC798694AD69A1C62EB7AECE9D6", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FF9C089DC481EF41B42CF9834EA67090", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F34F1DC3C24553E7522576AFE0172563", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA4B0107EF7B2675CEC59F6BC874286E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "62B28D46D0B82845F8C07685D2BB2AC6", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1498B5D676894C26526205DB29A8EE9F", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5F80E12F5FBC2C7B940786C405042ECC", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F84F55116D2E42434A2B4229C08D0660", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FB44CD741856F00C3AD9EB3207613DB0", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B60CEA5545B8315369BA1733D5C2FCA4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "506909A386FF3438BD99B59C8F318544", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D00C05F53AFA300139CFE799814A40EB", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA5AB58A48CF1682B27BBACEEC0CEFE9", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D6ADCDD2D58739C6D35BC4A707F9DD35", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16C70C21D3AF5A32ED883C20927DED8D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C7217D4399E330700BAD976B0B637E4", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/06f80bc79465a24cb614acc3aead99535d6f2592d3a502635e7bc0670c15b837.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "59BF8FF016EDCAAA4CAA9940F22FA3C6 : 6FEEEA777DC6E70DD73ADB583269EF3384EFB5166445B3A71B6F4F7475CB4A8F", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=59bf8ff016edcaaa4caa9940f22fa3c6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BE3808C30A48701017ED797C0DBBDEE3", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/35592c5835c957c65def1a50d214d1ae6428425a58bc645ec38a307964fb9849.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "A9CF54F24C78C65F290838A21A049282", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c2a1a92e93abe6fc04b64e6b13746e53a25f44f00649d86c0835e31ee7c35c1d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "0117DF6BB66FDC3123F5D7C7699EE604", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c5b9c66401706b81fbc649aa794058bf875bfc5d39ab2fee057c47b68592de6b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "DDB21C3B1462E2FB5128E061B1F1AC1E : F4BB656D1415A4B687C9D3B91653FC4015AE9A23", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a99c0e7c3d7ea356c92ae90a4042e5146404cbab8623048b2861cf572a0c170c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4C19A2D3A6D33D66B80F2D5A0F4AE8EC", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a75600e16b8dd78d6eca751fadeacc9ed65383605cfb136d16b74320a0a1ab16.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "EmailAddress", + "Value": "31189@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "sepnab876@163.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "terrancepm4@aubreemadisyn.coayako.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "16@g8.anntman.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "janetswindells@mypostoffice.co.uk", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "randijv4@devinmariam.coayako.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "bmawar307@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "elavtiu@mailer.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "baltjeksbexattaice@videos.piquate.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ghent78412@c.brainboosting.club", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "exepopo@pop.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "gilro@snailmail.bid", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ogugcmfsti@trimnal12.secondhandhomeappliances.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "mike.binkley@tds.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "megadrive@iphoneandroids.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "kupit@kareprost.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "pa.ran.tr.asiad.f.a.mar.tisititity85@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "widthom@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "krasnou@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "new2016russ@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "pa.r.an.t.ra.s.ia.df.a.mar.tisititity85@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "bombtyriea@telus.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "felix-felino@gmx.de", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "marstonqm@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "doecegt@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "altonwiddoes15@bestemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "project574@moscowmail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "yijian36@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "allan.gormley@hp.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "vladimirtort@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "apitymaarley@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aannattexxdy@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "cabuchanrocicpatentdread1975@2nf.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "collinstarns@low.itemxyz.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "baehnzlittlea@cmail.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "cornnitlamprepgingsurrselti1977@2nf.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "m.ane.r.mik.e.y@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aebgir@as.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ivewuzc@popp.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "bamilesqahvs@gotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "viara74@abv.bg", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "baroertosjnry@cmail.net", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "clotildeclossin@hyperemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "krisgf2@aubreemadisyn.coayako.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "exootaz@g.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "abocilasi@pop3.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "saraaf18@oscar.delta.livefreemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aehnztivanovay@hotmail.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "pickrecalongdimypcwestpunc1985@2nf.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "robertkesztyus@citromail.hu", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "uvokuw@mailer.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "eofila@email.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1B4EC0F23B615773AFEAAF618602C41C", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/37598c83122ac3bfe5c5e5efe4444827563e301974082cf37ccc505eeeec5143.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "EA6DBD3654567383764ED0909A959119", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d58f6898f086aa9bc0ccb3635b84025c9e2a95e7686e051babf494fec12fa221.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2A0DF97277DDB361CECF8726DF6D78AC", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/71e584e7e1fb3cf2689f549192fe3a82fd4cd8ee7c42c15d736ebad47b028087.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F69C1411DDA9C0D52D86F189D4796706", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/465e3d2e105b4ac9a8a97c5db879b3ceea15ca45aad3b51429a7e74be2733f8c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BB1C9073137CA41D9E3AD5CBA2E0DFAB", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/efe6ea08164b44d8fb8dab4dc0e248facb65859bd65e4bd4f4711d31d92a87d8.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7DD11EAC1ED983EA7103C66548DE4E00", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d253cbb2e3c8967f6698d186570f68c28a1b04a7fdb2915d859da82039c43a14.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6DBADE4846D63008D64DC363C6A3EF81", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/895064a0e08ade1e13df382c044d3327358e5c2aace4ef1d745f34f93e0d1bfb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "D3065E67D2F2E55A68ACDF71ED023F81 : 052DFD3E581867BF81C3C736B31C53654D1750938E5F1F591A73FE1CE5743FEF", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=d3065e67d2f2e55a68acdf71ed023f81", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FCBF7E2CD220535658855DFBB83D0869", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a22c622bb7cb25bc073281de4fdd331108f4cc1cc1bb288087e797dc557c26fc.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AA3C6AEEABE2AAADA0F52B7AC4C9E664 : 23CC2C2F191E1C2783037219E52EDA97E4AD2E73", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/762242d036b4e74606999f12594f44f87648469e4fedec6ef4932178b3dde3ee.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "552F2FB6455C20A5EC3D01168AC7513E", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e8abb49e3e8473463a4bed009e4108688e766f331f9bdd2961b712ef2abe86b5.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "80E98721CE2A888BB7176FFFF084368F", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/3d700f9b51ef0d30df8e419ae8f41225db9f2775c83e1b7b7931e0551ca9193d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "127F0B967A8E48DF14D8C3E3CDC134E7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2d2a31b03d8ef6abe835587f748ec2cd07de920cd459d7c9463fa4a9a2220bbf.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FBA3EF33E3257EE0B075BA62511D3C60 : BEDF6C926E5B8D0F08EC50FC92CD6434DA3F1DBEBCF9B1F09A3CF0CACDEBC687", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=fba3ef33e3257ee0b075ba62511d3c60", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "55B75E92023E06143A4E2180A9FBAA51 : 1C1796F0F81BCA76E8D6B25997C95693892CE962DE2F52EE0F8D14AF6928DAAA", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=55b75e92023e06143a4e2180a9fbaa51", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CE40FDF4C057D3C753B9AAD06E0357DF : 7241A6785184CED5C23181064F78A6036CEAF94AAC907D31B81DB4E69C642DD8", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ce40fdf4c057d3c753b9aad06e0357df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BFB4A2D3133D6C4DCE2C3703F89F9766", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a3f1704a8efff265b61225b515646c5a7758e642e848ec987d2a3ba3d85d6ca6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C26A034D1B36E72D800954F6CAC5BA47 : BC6D8205545DEE894CEB5AF3677C929A6D71E576", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5748c7e9d5efd0482e40fbf6338bfe520d61ca5ca1ea6b8c919f65060bf509be.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FF0AD133B8BD9A1D7CDED20F948FF04D", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/9fc65689991e6498f16bd6fd6da1c3524b08da5c58eda96465dde545ce5475ad.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E631FEF976A9F2AF614CB49A93A9647D", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/002cfab52d9072c93671e9944de9da0d46b912d40c6c2be94bad47e91d5386fd.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "0B642416498C9022F6892C4D55590E12", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a0a2633c70cbfd9b6e286c201cc8c0159faebe73ea067862e23bd6a47cacebe6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FCBF171497DAA92D6DDBF83D8958DE22", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/10b911d0420fe9e471dc353ef981ff5fc44456299eb441297ed242f5aaaa378a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3ABDA0896C218CB154ADB9DEC0C39E90", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7db8c923b7f6908e80228cb6322377d4e057c9c6aa0353b4988ac549a0c05c14.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5D8F0840C1D23E4ADA5398462A1552C1", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d58abf4f58b25cc5b1acb2fc779c008d1a5be48d1e01bdb2023835f06de44186.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "82BFACEF7A372E99E2BF5ECBE7CC380C", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/846009d5c9da206eb506d72e127004cdc8d0bca13aee44f54ece6bf64e1f5bf1.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "FDF0FACFBC93639295A82E45D41FACBD : F8C25275AEC78EFCF0273F33EFF3B901CF9C5BB656EB73E4E8C70DBAA656809F", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=fdf0facfbc93639295a82e45d41facbd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "0767E948696DD0510D0F5D040A8F917C : 2F20B462DBA615C4A920BD6732A170AEBCE64536E678C939DBAD8B007E793EE0", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=0767e948696dd0510d0f5d040a8f917c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E3F3D518CA3E42F6A29F613CCD30B723 : 50AF81261E89F510210BB0338A343DB7D6F4B22732EC185190E9A3B3E23E3F44", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=e3f3d518ca3e42f6a29f613ccd30b723", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "51729239A4E9E31F1C5205BE1FDDD6D7", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/9fb857a70a052b19120ef94445d19ab0a41a3a7cd22101217483178f7be78a7b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B7510F467D4BD875C526D72490DA800D", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/84549e06d45203997fca26cda6a790db44f72172a1388e9063523e3978f1102e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "A740281F7F89AE17BE8CC298C77C771C", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/dc0afc5dd96fce203c2d64e714fc8d92298b7f37cd002ea6d6358c9f4cbf0b6d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C49179B7A575E09BA623E36777CAC9E2", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d9abfcfeb905a5860fbb2f86ab7e79bbe4c10bba8690c9bb728c2ee9f4dd987c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "1EC0029E9E9C9602D5891FA5401FFA2E", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ef0880239a1720f1dc1d2af6743a38fdee85d7b3513d58b812d053771c41582e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "03221B359498CB79C0A27F2BA3998225", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/0029f3f11c02bcaccc12dcd53da3f4f25d236e8a17d85d17553653ddd7bed6d0.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "B4FE3AC685833922DABDB2579B22949F", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1bb52fb2af55797d7e8e97216cc5ac0576054d7496c19d98353aafb552944812.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8BF8171BD2EDB78AC09970160A6B6358 : F0A41064EB6EF4DA94105A34AAFC3EF63E0C9BE59B71372467814EBAED4A7A85", + "Organization": "PDFExaminer Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=8bf8171bd2edb78ac09970160a6b6358", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BA7FD9DF69FCB1A1B2E21FAAB92906D0", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/accb013b588a1956fff71314ced7c939f82edd278c1e3cad800cdf0b0030ded6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "624778E8800831E591C05DAA5D17548B", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/890ca5364332e0f20edfb0233de511f00233391aa3f2e0fc544330b40eaf9843.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2C24BA0153ADA0E19D582B4C9C062DF3 : 7F8AEC5AC086DD9B9841F41A651C13927379D3FB7FDB7C3A2205F81417EC826B", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=2c24ba0153ada0e19d582b4c9c062df3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "35282BDC0CB9DB980F06340737107B57", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5f65bd31d58651f9047a6057eafa67174e83e3a6a805d71cc2ef3a870a7fc63a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "12AB71AB188B20AEFE4DB4693164CE25", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/da97968b9eacf36ebd92ba80daf284dffae90910eec30b1692b892dfcb13e124.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "96DC7B1BA955F0C11DC392A7E85283D5", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5598f96d2550458bc726149a3a24b1a80df818847a4b428341eaad5414c09bb0.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "09368D1CD473762A0D4B14B27C7D99CF", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/547cfe049e394fa3dce0358519245bcfddd31e98762fa37e05c1ee994815e7f4.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5227C8AA947FF08C0929958FFB7EA1F0 : 4339131AFFAD0EC8155B251323A492DC7D55275DCA9C672CD46C593A8655F00A", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=5227c8aa947ff08c0929958ffb7ea1f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AC78A9CEDF26B66A20E80F10409A683E", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/62d1131d2f6c76c7d530c7e833841d44915a6b5a32aa6192881cdf77034e79f2.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "ABC365793CB69ACB0A5833A03E7EFBD5", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/dd5e025f01d04df685937b8d8df95a6b054809fdfd51202cf616e082e7e3ec54.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3128A7B53164F211C8C5E92B35FA0AA5", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ce241f35907752d1dca1472c8a863624309669a87dda3e200891574ac04cad39.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "65FF186DFFE72BA41A12DCEE2ECE27D2", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/78b8827cc38b57caad3b6b87a02047277414744f8c33d72b804fdcb686939b2a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "59BA624099E7EA947F27AD07EF17CFFE", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ec3616135be7137a26e3afd2d1b2f446a7de4bd66258f53864833f13b55c413b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C1CD661A864A58B124F5BA0E2C56BBF4", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/2b11d7104af6a440b2d275ebfcb42bf916088da470b2745e606993e1c3ad1a22.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "14C7B20BDD3D0ED6E743509BB8802597 : CB6D7D395DE978F842BAD1E2F810FB97EADC9A6A0756AC96CA779DD591C21D2A", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=14c7b20bdd3d0ed6e743509bb8802597", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "61F2CA1E043613EE5E1EFE660D3B2465", + "Organization": "Cryptam Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/66fc970d65200277ceb5a17be3037d3d2f24d622580bd5b810cd84867356e5e0.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9BDD1E5B7ADF488CD1E08384C86FFFA8", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ed5558ad28eb9a18054b4e5028d201290f86f2ceb649d060c03e3420683c9c07.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3ADFCE0376741F6BB2519453A905ABE0", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/53c1cc4ece7199e88959586de4b885c1be5da3717e4a700e5e8e5c6e4781631a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "67C8A61F7815F1D40528C5F357BD3E5E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/67c8a61f7815f1d40528c5f357bd3e5e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "37CD70DBA631DDB0772D728A247ECC42", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/37cd70dba631ddb0772d728a247ecc42", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "B704EF547D8C718E55E50352BE8B7489", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b704ef547d8c718e55e50352be8b7489", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "6964D10AC0750013E316FAA222E7A853", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6964d10ac0750013e316faa222e7a853", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.MSIL.Bladabindi.a" + }, + { + "Type": "File", + "Value": "1D9F013E26B2CBEACCA47AB9F7F0F94E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1d9f013e26b2cbeacca47ab9f7f0f94e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "BB85F4C7CB9AE20307F03513E1B0E5E6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bb85f4c7cb9ae20307f03513e1b0e5e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:W32.Waledac.KQ.ifit.mg" + }, + { + "Type": "File", + "Value": "87701939E04A0C8833D0AEAE86FDDADC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/87701939e04a0c8833d0aeae86fddadc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.a.(kcloud)" + }, + { + "Type": "File", + "Value": "71A2EE603AE1C6DD452C8D988C6E1E0F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/71a2ee603ae1c6dd452c8d988c6e1e0f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F80F8858346CB59D8BF7865651AF52FC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f80f8858346cb59d8bf7865651af52fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.128148F9" + }, + { + "Type": "File", + "Value": "CA161963505527059275CC547944997B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ca161963505527059275cc547944997b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojWare.Win32.Agent.PDSB" + }, + { + "Type": "File", + "Value": "F764E13AA97061B62A20779453EA462B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f764e13aa97061b62a20779453ea462b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "7B92773FB5A87802CECED196D8B520F2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7b92773fb5a87802ceced196d8b520f2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Scar.hmoc.yleu" + }, + { + "Type": "File", + "Value": "6C75066EF220583D68F2EA9963C9D4B3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6c75066ef220583d68f2ea9963c9d4b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CF0A53F8885E0329C173AD0DFC7189B9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cf0a53f8885e0329c173ad0dfc7189b9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDownloader.Upatre.afdk" + }, + { + "Type": "File", + "Value": "36EAF371E9673B978467D6489A2F7F69", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/36eaf371e9673b978467d6489a2f7f69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F52983C72D258100C4CB24EA202234AA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f52983c72d258100c4cb24ea202234aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Adware.MAC.OSX.BundloreCA.1" + }, + { + "Type": "File", + "Value": "172033427EE2F84A44774B11E48A6A99", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/172033427ee2f84a44774b11e48a6a99", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "84584FA177F1561D700D9E788151714B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/84584fa177f1561d700d9e788151714b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F3B1F888499037C29F6B837E1F879246", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f3b1f888499037c29f6b837e1f879246", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FD8C243E32A7A427AAEE18D7E136EE4C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd8c243e32a7a427aaee18d7e136ee4c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "62A5A251F58C861D686814A84065D4FA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/62a5a251f58c861d686814a84065d4fa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C7CB34B3F5FEE200FA6CCE45A235F9CB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c7cb34b3f5fee200fa6cce45a235f9cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "96650285C39823B1B839EE08B0E6E7F7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/96650285c39823b1b839ee08b0e6e7f7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8E38C68F2AA12A7715B065F37A1CA1EE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8e38c68f2aa12a7715b065f37a1ca1ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7A21F42CFCD589332C93B6B52746228E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7a21f42cfcd589332c93b6b52746228e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "65B5C22D7FA730020BD7B8E13291C275", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/65b5c22d7fa730020bd7b8e13291c275", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "6411B4C9FFDA051E7F68ABCA62603CFC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6411b4c9ffda051e7f68abca62603cfc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.015775" + }, + { + "Type": "File", + "Value": "E98B3653D21033B5C1A5D4203569DEE1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e98b3653d21033b5c1a5d4203569dee1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.11EFDA2D" + }, + { + "Type": "File", + "Value": "5ECDF1EFFCDA5547BC3DFCFD851DCCAB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5ecdf1effcda5547bc3dfcfd851dccab", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "655AE02745C07CD064464DC9196D5569", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/655ae02745c07cd064464dc9196d5569", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "45D79EB6F4E6B9EB6B19D8DA6BD53C63", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/45d79eb6f4e6b9eb6b19d8da6bd53c63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Scar.hmoc.yleu" + }, + { + "Type": "File", + "Value": "AA6BB3B9209AFD653BA94FB11F7763CD", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aa6bb3b9209afd653ba94fb11f7763cd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B675A97389A19B891F007F07908178B7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b675a97389a19b891f007f07908178b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "VIRUS_UNKNOWN" + }, + { + "Type": "File", + "Value": "3636A56327B765C3A750933A3762A29F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3636a56327b765c3a750933a3762a29f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "112A5D7C739CF763A70400F9AB48E696", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/112a5d7c739cf763a70400f9ab48e696", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B87FF49AD3AF4FCB3334DE1F6F477364", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b87ff49ad3af4fcb3334de1f6f477364", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "EED2F1BC51498762FA0FE55416A1CDEB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/eed2f1bc51498762fa0fe55416a1cdeb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FDF6A0066305CD6A61A6F75B611C463F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fdf6a0066305cd6a61a6f75b611c463f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "21E0570C0375A9F76362F4A55B554FDA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/21e0570c0375a9f76362f4a55b554fda", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0CE0B58D99582E81DAAC3FEB538A2D37", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0ce0b58d99582e81daac3feb538a2d37", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/AndroidOS.apik" + }, + { + "Type": "File", + "Value": "C051328FD47557B2C1E43A9E03B54E43", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c051328fd47557b2c1e43a9e03b54e43", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5D4FA4B5FFC571657212F8AE24C0115E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5d4fa4b5ffc571657212f8ae24c0115e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "DD1A633E3E6911F09BF556EFCCBBD991", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dd1a633e3e6911f09bf556efccbbd991", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6E10CE03EF88E916000B6594508A21E5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6e10ce03ef88e916000b6594508a21e5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Amonetize" + }, + { + "Type": "File", + "Value": "7E2787E53FD1AC8B73EEA7917AA6DE59", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7e2787e53fd1ac8b73eea7917aa6de59", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "52399493B74B72676D94B925A7B7F3D6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/52399493b74b72676d94b925a7b7f3d6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "090838AF9D8629E297A872C2D6B5C788", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/090838af9d8629e297a872c2d6b5c788", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DB4303FA703C73DD730F31E4F657D74", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0db4303fa703c73dd730f31e4f657d74", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "82E9E6D73CB8562A652E0931C350E7AA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/82e9e6d73cb8562a652e0931c350e7aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E4BE2C18CAC5066E99ECDA871B35634A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e4be2c18cac5066e99ecda871b35634a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63821FD4408D5E178ADA09F494F7CE37", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/63821fd4408d5e178ada09f494f7ce37", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Win32.ADH" + }, + { + "Type": "File", + "Value": "3D3F9F65CE356974B5BE87C3A76DD69D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3d3f9f65ce356974b5be87c3a76dd69d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.iu" + }, + { + "Type": "File", + "Value": "4DCD39603A6CC22B785019B69D8CDA82", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4dcd39603a6cc22b785019b69d8cda82", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Win32.FlyAgent.h" + }, + { + "Type": "File", + "Value": "45558AF8A0148496C65B9B7BCEB65D9A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/45558af8a0148496c65b9b7bceb65d9a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "4CA957FD128DCBCB7FB9CA9FB50F21D8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4ca957fd128dcbcb7fb9ca9fb50f21d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "8529C62AB777CAEB4AC1AEA69A24413D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8529c62ab777caeb4ac1aea69a24413d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Trojan.Heur.FU.pq2@aS5CA0dG" + }, + { + "Type": "File", + "Value": "AA4D5C7F48EAF18D79E8C2D66A5133BE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aa4d5c7f48eaf18d79e8c2d66a5133be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.Heur.gen" + }, + { + "Type": "File", + "Value": "36B75977A3FCA41C4242322E11A283E9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/36b75977a3fca41c4242322e11a283e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6720889D3305F56BECC3ED262BAA4994", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6720889d3305f56becc3ed262baa4994", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8C7EA6C7D4094AEC629E7728422574B2", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8c7ea6c7d4094aec629e7728422574b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6DD8FDD1924AEF1E907C24CE79F2F047", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6dd8fdd1924aef1e907c24ce79f2f047", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Crypt.Heur.gen" + }, + { + "Type": "File", + "Value": "F8ED3F3FE0C4EB818F7743EED26BD057", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f8ed3f3fe0c4eb818f7743eed26bd057", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "EC1F31A521A2D5BE801A21E07C47D753", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ec1f31a521a2d5be801a21e07c47d753", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "94658A5F92F71886FA06DD4DB3241AE5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/94658a5f92f71886fa06dd4db3241ae5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.OnlineGames" + }, + { + "Type": "File", + "Value": "BB4048CD88C020D360A793F2CA7F7EE5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bb4048cd88c020d360a793f2ca7f7ee5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1FEAF1AC432034E5990DD5A4CBE3B5A8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1feaf1ac432034e5990dd5a4cbe3b5a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.ewlj" + }, + { + "Type": "File", + "Value": "190E2619B5ACD44ED931CDEB096E111A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/190e2619b5acd44ed931cdeb096e111a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious file" + }, + { + "Type": "File", + "Value": "AAC3A8763DC205B2FA6DF972411B5D09", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aac3a8763dc205b2fa6df972411b5d09", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm/Runouce.fc" + }, + { + "Type": "File", + "Value": "E38A94F451DA023AA6E04A428542BDF6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e38a94f451da023aa6e04a428542bdf6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4DF7D46EBE299DC58051BEDB83DDD9B4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4df7d46ebe299dc58051bedb83ddd9b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.cbyt" + }, + { + "Type": "File", + "Value": "28DB7C6C33AAC0BAF147C8B12C0ADCF4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/28db7c6c33aac0baf147c8b12c0adcf4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bkbsn" + }, + { + "Type": "File", + "Value": "702F5296AD3D6FB3C2D123B43D417769", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/702f5296ad3d6fb3c2d123b43d417769", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "81134C402BEE0C139F934DE3BFC4A5FD", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/81134c402bee0c139f934de3bfc4a5fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1804AF72EBD7C2212ED6674F16C5F9DE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1804af72ebd7c2212ed6674f16c5f9de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "0EED990236D5AEE6CB25506F9F1A90D5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0eed990236d5aee6cb25506f9f1a90d5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.MSILPerseus.54860" + }, + { + "Type": "File", + "Value": "B42ECCBB4752221537508C350F2D170D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b42eccbb4752221537508c350f2d170d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "BCF04DD1F4C1505368B3DAD8E3D2774F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bcf04dd1f4c1505368b3dad8e3d2774f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "056CC4075578FF1CF1F8613AC10C6D78", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/056cc4075578ff1cf1f8613ac10c6d78", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B1252AAFDAD5CB8FC3B28E3A77404919", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b1252aafdad5cb8fc3b28e3a77404919", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "E89A9133FF29C3B654407C49B3439094", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e89a9133ff29c3b654407c49b3439094", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.MSILPerseus.52729" + }, + { + "Type": "File", + "Value": "97EBB3DB8B5917E136F96887DC24A585", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/97ebb3db8b5917e136f96887dc24a585", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "03C94C8B93F73AEE02F7BDD0F7ABC336", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/03c94c8b93f73aee02f7bdd0f7abc336", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B499D6C4D6D89C224E31C6E600FF5123", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b499d6c4d6d89c224e31c6e600ff5123", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Crypt.Heur.gen" + }, + { + "Type": "File", + "Value": "24061A430CBFD0B855C8640A7758B0C9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/24061a430cbfd0b855c8640a7758b0c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Barys.68" + }, + { + "Type": "File", + "Value": "EC9D1804C743654FC1D65A1BD8A65B19", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ec9d1804c743654fc1d65a1bd8a65b19", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "54CD1DCFA7348CCBA36492A0FBB1F263", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/54cd1dcfa7348ccba36492a0fbb1f263", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.zwty" + }, + { + "Type": "File", + "Value": "1A32D9F46A36648AA191057A2B482E8F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1a32d9f46a36648aa191057a2b482e8f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "2CBBEF7F92C6D0565EEC9EFA02EB83F7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2cbbef7f92c6d0565eec9efa02eb83f7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "036CB2C65A0BC54EF05BF77DB9FC71ED", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/036cb2c65a0bc54ef05bf77db9fc71ed", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B30A995422FCF645FAA61EB66EA90B6F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b30a995422fcf645faa61eb66ea90b6f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B28CABD67C6FC5AB05D56B798DBA4C80", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b28cabd67c6fc5ab05d56b798dba4c80", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "57D004665D731AE5755D994729ADEC84", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/57d004665d731ae5755d994729adec84", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "8B2698D3F6D76A4892A0A14AB8BD62E0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8b2698d3f6d76a4892a0a14ab8bd62e0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Heuri.NewThreat.MVM" + }, + { + "Type": "File", + "Value": "F90EF34759C444C968771C11EEF9C465", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f90ef34759c444c968771c11eef9c465", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Strictor.50582" + }, + { + "Type": "File", + "Value": "89D080EBD4F2A05F7043F4D5F8482C46", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/89d080ebd4f2a05f7043f4d5f8482c46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.cbyt" + }, + { + "Type": "File", + "Value": "BBA704E4AD7A5BCDE99B830AA4A6A3DB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bba704e4ad7a5bcde99b830aa4a6a3db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Heur.hm" + }, + { + "Type": "File", + "Value": "C4F9466380A3B3764A4851774901A373", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c4f9466380a3b3764a4851774901a373", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9C7BDF4B7FFD6099F7847D61E62FAC0D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9c7bdf4b7ffd6099f7847d61e62fac0d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "VIRUS_UNKNOWN" + }, + { + "Type": "File", + "Value": "0E0304EB1F87285D49F41D0C7492DB82", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0e0304eb1f87285d49f41d0c7492db82", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "B248BCD0FC310F6EC11EBCFB62468B63", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b248bcd0fc310f6ec11ebcfb62468b63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "868F17216BE01B4563402325D88D6391", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/868f17216be01b4563402325d88d6391", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3411EB49F3243A74A3AD600B9D199644", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3411eb49f3243a74a3ad600b9d199644", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TScope.Malware-Cryptor.SB" + }, + { + "Type": "File", + "Value": "DBFBBB0A8B712D44FC883ACCFE920D5D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dbfbbb0a8b712d44fc883accfe920d5d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanSpy.MSIL.oey" + }, + { + "Type": "File", + "Value": "649DCFF9A4DFE0BE8657E2B42A924098", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/649dcff9a4dfe0be8657e2b42a924098", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "1F8BC930973074B00C40D6B84101A399", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1f8bc930973074b00c40d6b84101a399", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FC9719CC2A028DC7B7746862A9C5A928", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fc9719cc2a028dc7b7746862a9c5a928", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DB5A39CBC149C67B5038D63802A55700", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/db5a39cbc149c67b5038d63802a55700", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bkbsn" + }, + { + "Type": "File", + "Value": "FD3325BCCDD50AFA0A3851096A47E5BF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd3325bccdd50afa0a3851096a47e5bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Megalodon.A3" + }, + { + "Type": "File", + "Value": "929F2D445A22C31C23988FC6A5127CE9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/929f2d445a22c31c23988fc6a5127ce9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "285D13580A99624361003DBB97423158", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/285d13580a99624361003dbb97423158", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDropper.Injector.arlb" + }, + { + "Type": "File", + "Value": "517923F8B766FEBE07CF5F96C0FDAD7C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/517923f8b766febe07cf5f96c0fdad7c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D1B24AA44E895898481E49C83C5F9508", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d1b24aa44e895898481e49c83c5f9508", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CA9B56CEC15EA4422714AC8B3B42CF62", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ca9b56cec15ea4422714ac8b3b42cf62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BE4A93081FE98191969D2C89B37B7F89", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/be4a93081fe98191969d2c89b37b7f89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C94B8D5D783BB5438832B02BCFB1A58A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c94b8d5d783bb5438832b02bcfb1a58a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C56FECCE56A65607506482CACDD058CC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c56fecce56a65607506482cacdd058cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:008!Eldorado" + }, + { + "Type": "File", + "Value": "171E9FB3A5FDA6346FEC20D669CCDA79", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/171e9fb3a5fda6346fec20d669ccda79", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Malware-gen" + }, + { + "Type": "File", + "Value": "051B4FC06BDCFD0AFCB07092F0500D7F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/051b4fc06bdcfd0afcb07092f0500d7f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0B8DF8080BCF252FD781EC8EB79C8853", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0b8df8080bcf252fd781ec8eb79c8853", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "EE31AB8BE6AE94EEAAE929B7A57DDDF2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ee31ab8be6ae94eeaae929b7a57dddf2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "1CDB6C9B30C1643238259EA3C3B41AB3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1cdb6c9b30c1643238259ea3c3b41ab3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:W32.Rodecap.AS.pjcs.mg" + }, + { + "Type": "File", + "Value": "551262B811EEB9FDD47021DFE9392080", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/551262b811eeb9fdd47021dfe9392080", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4101BFBFD9DE396620CE50E1D9F4FB4C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4101bfbfd9de396620ce50e1d9f4fb4c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.avfto" + }, + { + "Type": "File", + "Value": "DC7DEE1F8BAFC1B6FE0A46E813B3D3CC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dc7dee1f8bafc1b6fe0a46e813b3d3cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3AE7EB505E66572F729A94BF4C6D800F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3ae7eb505e66572f729a94bf4c6d800f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Zapchast.bv.(kcloud)" + }, + { + "Type": "File", + "Value": "18021B7183B307FD8B616389C4987122", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/18021b7183b307fd8b616389c4987122", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A365D4187132B0C4632314A53F250A91", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a365d4187132b0c4632314a53f250a91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "447A76BDA423AD777C2101D3907885C1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/447a76bda423ad777c2101d3907885c1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "650F41116377E74697723158FE9298B6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/650f41116377e74697723158fe9298b6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E45383EB0E6A22F830452D08DB1779BB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e45383eb0e6a22f830452d08db1779bb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "047CB821D26CF3E5B9C1A5FAFD06511A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/047cb821d26cf3e5b9c1a5fafd06511a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2ECDB593E0D2CBD00E3D07482493F125", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2ecdb593e0d2cbd00e3d07482493f125", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.a.(kcloud)" + }, + { + "Type": "File", + "Value": "1C05AB4D0DE2AF8A552DE6CEC1BBB7A9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1c05ab4d0de2af8a552de6cec1bbb7a9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FA7F76943BFE23BF34D0AD9722974E42", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fa7f76943bfe23bf34d0ad9722974e42", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8F468CBDB514DBDA67974CFC4E9F55DA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8f468cbdb514dbda67974cfc4e9f55da", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "93D7E719709EF7C8D16631D691560115", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/93d7e719709ef7c8d16631d691560115", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C00C2FA411EC66BA2E59A11C6B9F81C9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c00c2fa411ec66ba2e59a11c6b9f81c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Strictor.111324" + }, + { + "Type": "File", + "Value": "0166337CC5F01C16F1B49CE41054B267", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0166337cc5f01c16f1b49ce41054b267", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EE0194EF81530D465190FF7D5919153C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ee0194ef81530d465190ff7d5919153c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "017AD18C94DB958301CAC87AC8F797A3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/017ad18c94db958301cac87ac8f797a3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B0AC800209ED0FC5A920A12F5DB741A8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b0ac800209ed0fc5a920a12f5db741a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "E964D815BD0E42778BE94ED8D58B580E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e964d815bd0e42778be94ed8d58b580e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AED842CEC0CBCFCC4D5766CE0B527192", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/aed842cec0cbcfcc4d5766ce0b527192", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDownloader.Small.adxz" + }, + { + "Type": "File", + "Value": "063182B114BAD28C6239703C6686F112", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/063182b114bad28c6239703c6686f112", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "8DC446E39412864EEB19FA8CC8B3586C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8dc446e39412864eeb19fa8cc8b3586c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/FlySky.AH.worm" + }, + { + "Type": "File", + "Value": "4AD940090AA00FC193C320CEDD5C3965", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4ad940090aa00fc193c320cedd5c3965", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "F285665B1C49DB2ABA95AAF3FFEAE055", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f285665b1c49db2aba95aaf3ffeae055", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2C2493FB05C7E525241A57D66126524D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2c2493fb05c7e525241a57d66126524d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "7B04CBAE9255B1F98D15921FF33DC311", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7b04cbae9255b1f98d15921ff33dc311", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.024583" + }, + { + "Type": "File", + "Value": "E20BBBA6367DF654ADAA36C150AC39D3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e20bbba6367df654adaa36c150ac39d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "B11F21696860F2BCCA6FCF723DA251D6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b11f21696860f2bcca6fcf723da251d6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Virus.Lamer.a" + }, + { + "Type": "File", + "Value": "58E63D7A9C8EC8CB7C5E954DF174EA4D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/58e63d7a9c8ec8cb7c5e954df174ea4d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "1059526A3697EED7ADF67CE3B8FCBD3F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1059526a3697eed7adf67ce3b8fcbd3f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "74CA5B6B40A99F4337480DF22E7E6150", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/74ca5b6b40a99f4337480df22e7e6150", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1BAB956FF65C1D7EDC06DDCE18B932FF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1bab956ff65c1d7edc06ddce18b932ff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "20727DD178AE016F8A061B7029938619", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/20727dd178ae016f8a061b7029938619", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A20C23061A62A9590A699C9D66BDE78", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1a20c23061a62a9590a699c9d66bde78", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.01823" + }, + { + "Type": "File", + "Value": "28191B921FD08B8D412B0488727A84FD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/28191b921fd08b8d412b0488727a84fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "AE9B69A344F3B126EAF93045BD0D158F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ae9b69a344f3b126eaf93045bd0d158f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "AB70F69C74AD39F7C112EF7D35DB5C2D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ab70f69c74ad39f7c112ef7d35db5c2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B396729290884E9120F0A76CA81805A7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b396729290884e9120f0a76ca81805a7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "0287C297D676A30218E34C2EE96E3D64", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0287c297d676a30218e34c2ee96e3d64", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "VIRUS_UNKNOWN" + }, + { + "Type": "File", + "Value": "DDF8843BB025D9FAE70CC9A94E77BD5F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ddf8843bb025d9fae70cc9a94e77bd5f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "414442273D94DD64BEFDE0BDB10A4ABC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/414442273d94dd64befde0bdb10a4abc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "DAC3B76A75488BF0FA1D647C4A2921B3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dac3b76a75488bf0fa1d647c4a2921b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.XiaoBird.33 (paranoid heuristics)" + }, + { + "Type": "File", + "Value": "81C6EF722A00BE8F0968CF17457D68BD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/81c6ef722a00be8f0968cf17457d68bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.016410" + }, + { + "Type": "File", + "Value": "7234B6D04789E4D37897975E44CFBF63", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7234b6d04789e4d37897975e44cfbf63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Barys.1920" + }, + { + "Type": "File", + "Value": "ED6E9FADE5E5DEC1267AC9976B0388B6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ed6e9fade5e5dec1267ac9976b0388b6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Scar.hmoc.yleu" + }, + { + "Type": "File", + "Value": "5F26FE81A892C8A33436A2686B007156", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5f26fe81a892c8a33436a2686b007156", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D63FE9EF5EE1FEF5355FBCD7D508A0D8", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d63fe9ef5ee1fef5355fbcd7d508a0d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EE664592D82BFD6474D75627880AFC9F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ee664592d82bfd6474d75627880afc9f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F0B00103BA847D225F86DF9ECD38F6FD", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f0b00103ba847d225f86df9ecd38f6fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "A815A94664F656433489E091282BC2B0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a815a94664f656433489e091282bc2b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "CD9467AF1135187FE24A1C3EC7390B17", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cd9467af1135187fe24a1c3ec7390b17", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1141B5E52C3059413A6D339A275D13C7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1141b5e52c3059413a6d339a275d13c7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "3E566ECE66E708E4577D9E7DF052982B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3e566ece66e708e4577d9e7df052982b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Crypt.Heur.gen" + }, + { + "Type": "File", + "Value": "A4F95A74B530241172B06FD8439BE974", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a4f95a74b530241172b06fd8439be974", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:008!Eldorado" + }, + { + "Type": "File", + "Value": "41DC3D5CE8BB13A283BC8B97B5C2BD72", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/41dc3d5ce8bb13a283bc8b97b5c2bd72", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CE7EDB7A2DEBD556A49664EC1A7A0651", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ce7edb7a2debd556a49664ec1a7a0651", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:010!Eldorado" + }, + { + "Type": "File", + "Value": "4FE624613045BB18789ED8F3A6560222", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4fe624613045bb18789ed8f3a6560222", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "071936D7FAF70D11481232126662C47D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/071936d7faf70d11481232126662c47d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A82F9241C9A2CEFEF92D1804EA9D9B27", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a82f9241c9a2cefef92d1804ea9d9b27", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.017466" + }, + { + "Type": "File", + "Value": "C71D542B5B4AE4738688456CD2F08D51", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c71d542b5b4ae4738688456cd2f08d51", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "A88B8F15D454CC884AAFDF940703B576", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a88b8f15d454cc884aafdf940703b576", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "00AE2947C29A2299E694D4A1063BF45C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/00ae2947c29a2299e694d4a1063bf45c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "224EECD18D7D7EF61BC37897D01D2049", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/224eecd18d7d7ef61bc37897d01d2049", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6BC2628275B37A308952ACD5441BFB93", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6bc2628275b37a308952acd5441bfb93", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic Malware" + }, + { + "Type": "File", + "Value": "74E5E7A7C1CB05123747FEBAA678EE69", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/74e5e7a7c1cb05123747febaa678ee69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "9A1C66BA92097753C9694BB125AD5D09", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9a1c66ba92097753c9694bb125ad5d09", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "14DE67971C6943C754B4F0100AEFB175", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/14de67971c6943c754b4f0100aefb175", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EEF2CB96B5908AF3C4F2575ACE315019", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/eef2cb96b5908af3c4f2575ace315019", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DEC188C25FBED36C773E19621A5A7BD5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dec188c25fbed36c773e19621a5a7bd5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FAA70F5B741E0BD9A5455DBA964873E8", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/faa70f5b741e0bd9a5455dba964873e8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "37A91C2D7E39103D2B45B8516E7D5CD4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/37a91c2d7e39103d2b45b8516e7d5cd4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "F3B7553ECD9C505048A4281F2C7074D6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f3b7553ecd9c505048a4281f2c7074d6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F44974C740B8C3B2825A8B403716AEEC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f44974c740b8c3b2825a8b403716aeec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CCCA004605D96A229CEF07AA25DBC30D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ccca004605d96a229cef07aa25dbc30d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "59A114C563F89808FDFECDE6C94C89F8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/59a114c563f89808fdfecde6c94c89f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.pak!cobra" + }, + { + "Type": "File", + "Value": "D418B0D672606F31CE6A681E70B74AB7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d418b0d672606f31ce6a681e70b74ab7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63869981EB17AE2E6F9344E5E6BFD31F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/63869981eb17ae2e6f9344e5e6bfd31f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "289D937424B69B89884B38C60C24D604", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/289d937424b69b89884b38c60c24d604", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "CB1FEEDB154A6DF924CE76D93B396D3F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cb1feedb154a6df924ce76d93b396d3f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "45D75B58330AA27900B55DE3BD24370C", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/45d75b58330aa27900b55de3bd24370c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "84DEE2BBE8480E4DF0DACD26F24F433A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/84dee2bbe8480e4df0dacd26f24f433a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm/Mytob.aka" + }, + { + "Type": "File", + "Value": "3FC354F4CD9DAF35012B16259140F34B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3fc354f4cd9daf35012b16259140f34b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "29D0B16224B2EF7D466576B62E0E0B2F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/29d0b16224b2ef7d466576b62e0e0b2f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Hacktool.Flystudio.015448" + }, + { + "Type": "File", + "Value": "E6560AE854F8F017F40F8F04EF88D37F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e6560ae854f8f017f40f8f04ef88d37f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B19CE28EB16BDC1BCF0AF772619DB4D0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b19ce28eb16bdc1bcf0af772619db4d0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "LooksLike.Win32.Beebone.a" + }, + { + "Type": "File", + "Value": "49509A92BD54F761939BE4D93375FA2D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/49509a92bd54f761939be4d93375fa2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "AdWare.DealPly.aetr" + }, + { + "Type": "File", + "Value": "F890CEA8E20504F403C46FFC2E13CFDE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f890cea8e20504f403c46ffc2e13cfde", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious file" + }, + { + "Type": "File", + "Value": "976CC9347BF74F176E873A3971B88165", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/976cc9347bf74f176e873a3971b88165", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.027729" + }, + { + "Type": "File", + "Value": "ED049DFD5E6C9AF34AD0EFB3EA143BF5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ed049dfd5e6c9af34ad0efb3ea143bf5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.ajoef" + }, + { + "Type": "File", + "Value": "9ABFC0445D721B38AEC16A866A00616B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9abfc0445d721b38aec16a866a00616b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C3B53EA691F80085FB6868A413FC07A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4c3b53ea691f80085fb6868a413fc07a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A474AFF7CCF9F53793390969DA4DAC8D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a474aff7ccf9f53793390969da4dac8d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:004!Eldorado" + }, + { + "Type": "File", + "Value": "D623CF6C3D503CD2A35C34104D2ADA90", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d623cf6c3d503cd2a35c34104d2ada90", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DB2AE6953B428C75ABF0E7FB6709E47D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/db2ae6953b428c75abf0e7fb6709e47d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E33034E5D06C976A41ACAA8F1344898E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e33034e5d06c976a41acaa8f1344898e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9EB825E9DC0AE4DDC6932EDCFC32D67D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9eb825e9dc0ae4ddc6932edcfc32d67d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "A4C7A2A6AC4133F10C31E614B565E514", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a4c7a2a6ac4133f10c31e614b565e514", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1A065CB612A5A11DE5C2F36BDE2D99A3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1a065cb612a5a11de5c2f36bde2d99a3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm.Rebhip.019054" + }, + { + "Type": "File", + "Value": "CF5B0264BB6ABB53FBCF20917A08ACED", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cf5b0264bb6abb53fbcf20917a08aced", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0756C80FF84CF37F90190DDC3D9EA50E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0756c80ff84cf37f90190ddc3d9ea50e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5AE28C8E523909F0A315FA13DAD6A49B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5ae28c8e523909f0a315fa13dad6a49b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "5015B9E0D27CFDE46829849DA4C1A8F4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5015b9e0d27cfde46829849da4c1a8f4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2542BD52C8AADB11A9AF9A597EE614EA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2542bd52c8aadb11a9af9a597ee614ea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "31C7FFE6B486FC87288CB652381C3664", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/31c7ffe6b486fc87288cb652381c3664", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Dropper.Heur.gen" + }, + { + "Type": "File", + "Value": "BCE4576E6953647EBCDF3732FC081F90", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bce4576e6953647ebcdf3732fc081f90", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.akmct" + }, + { + "Type": "File", + "Value": "334B14076EB1516B8D228906AC7C8DDA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/334b14076eb1516b8d228906ac7c8dda", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BB28659F91D1407299849335FDE365F6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bb28659f91d1407299849335fde365f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.015775" + }, + { + "Type": "File", + "Value": "DDA36949633669F6851DE05C6388C3C0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dda36949633669f6851de05c6388c3c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "EBB61F669C45135D5D3B34F6927D213C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ebb61f669c45135d5d3b34f6927d213c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Zusy.127736" + }, + { + "Type": "File", + "Value": "BAA80F1C3319ECBAD947C0AE5C59EE7C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/baa80f1c3319ecbad947c0ae5c59ee7c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "B298835A7426BAB63B00AB0F40B77DF6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b298835a7426bab63b00ab0f40b77df6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EB3EF52556F75F9AFA66539C841683FC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/eb3ef52556f75f9afa66539c841683fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.c.(kcloud)" + }, + { + "Type": "File", + "Value": "CEEB09BBEA867B9B57BF911AD4286AE2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ceeb09bbea867b9b57bf911ad4286ae2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.a.(kcloud)" + }, + { + "Type": "File", + "Value": "ADF6A56F2749AB9F06B470D6B3C3C57E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/adf6a56f2749ab9f06b470d6b3c3c57e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "FF38BCA2BB695CDF93EA99CBEA778F10", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ff38bca2bb695cdf93ea99cbea778f10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Backdoor.Heur.gen" + }, + { + "Type": "File", + "Value": "7D617536CEA063092275FAD5B8379783", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7d617536cea063092275fad5b8379783", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/AndroidOS.apik" + }, + { + "Type": "File", + "Value": "E43CA5C3E59063073B320450ADBD255B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e43ca5c3e59063073b320450adbd255b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "83EF8C1426250754DA340A66C4FC4E40", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/83ef8c1426250754da340a66c4fc4e40", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Dropper.Heur.gen" + }, + { + "Type": "File", + "Value": "36B97059A33BF44256E825BB2FD18AC0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/36b97059a33bf44256e825bb2fd18ac0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "63FA72FDD038E149A54CDC4A9A0EB4AA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/63fa72fdd038e149a54cdc4a9a0eb4aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "E6D8FD74CD0CBD6336A6CAB04D02E7E7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e6d8fd74cd0cbd6336a6cab04d02e7e7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "[Suspicious]" + }, + { + "Type": "File", + "Value": "0F5B7EE49B1FEE8927D9C4970AAD5B86", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0f5b7ee49b1fee8927d9c4970aad5b86", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.017725" + }, + { + "Type": "File", + "Value": "717ED79E475EA9EF41D9FFD526B213F7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/717ed79e475ea9ef41d9ffd526b213f7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/GdSda.A" + }, + { + "Type": "File", + "Value": "8C62DD29BDAF957675B442A68519B379", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8c62dd29bdaf957675b442a68519b379", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DB104A79FDB4542D2268F9DDEDB190A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2db104a79fdb4542d2268f9ddedb190a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Variant.Kazy.cqa" + }, + { + "Type": "File", + "Value": "DE5454A8A83FB90B64649816EA2CDB6F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/de5454a8a83fb90b64649816ea2cdb6f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "411F460B98DA26C2B29B479FD92E358A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/411f460b98da26c2b29b479fd92e358a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Crypt.Heur.gen" + }, + { + "Type": "File", + "Value": "FC0467EC0A51A24118FD1CEDF0A84550", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fc0467ec0a51a24118fd1cedf0a84550", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A0CFF2F7530E629CE622769DF8ACDC06", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a0cff2f7530e629ce622769df8acdc06", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "09F63870636FB59BED4BFBA2321C8EB8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/09f63870636fb59bed4bfba2321c8eb8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic.Downloader.A8" + }, + { + "Type": "File", + "Value": "1FC6B2C3C9CDCE9696EB786C0CB8C6F4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1fc6b2c3c9cdce9696eb786c0cb8c6f4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.acpce" + }, + { + "Type": "File", + "Value": "1408B03DADAD3001B3A8DD16F994A249", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1408b03dadad3001b3a8dd16f994a249", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0716B47FAA8660C301E73872EB86F080", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0716b47faa8660c301e73872eb86f080", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.cbyt" + }, + { + "Type": "File", + "Value": "23D62FCA74E217139788AE64119AC5C9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/23d62fca74e217139788ae64119ac5c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.Heur.gen" + }, + { + "Type": "File", + "Value": "A221D2C8A9950B8A7932117E72EB83E9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a221d2c8a9950b8a7932117e72eb83e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "A26372A3BB2ABDA5D027CD1AB7C716BA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a26372a3bb2abda5d027cd1ab7c716ba", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "9536973C0EB42CB2FC880AC97C2CA38F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9536973c0eb42cb2fc880ac97c2ca38f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Banker.(kcloud)" + }, + { + "Type": "File", + "Value": "955C5E631D989E263A8069DCAE464F95", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/955c5e631d989e263a8069dcae464f95", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "4528D0281D8F2B9DC89CD3FE30B82B0D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4528d0281d8f2b9dc89cd3fe30b82b0d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "59BF19D65459DA8EB91F6F5F9A5F722E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/59bf19d65459da8eb91f6f5f9a5f722e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "93B1FD16A93688A1D9541988B4145C99", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/93b1fd16a93688a1d9541988b4145c99", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5228B5D2C973A33EAC5E0ABEF51943B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c5228b5d2c973a33eac5e0abef51943b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "E4A29D9485E33D74573C09D0D58C3014", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e4a29d9485e33d74573c09d0d58c3014", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5A98091590E703FCC88D2C595EE802EB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5a98091590e703fcc88d2c595ee802eb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "DD5C4609D6418E11B30E9E1D275BC92A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dd5c4609d6418e11b30e9e1d275bc92a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Malware-gen" + }, + { + "Type": "File", + "Value": "E80BDFA7C2514982B86E6316C88B753E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e80bdfa7c2514982b86e6316c88b753e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "AB8D2F0BA7FAE62541AC01AFD9A179C5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ab8d2f0ba7fae62541ac01afd9a179c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A69A9EA7CEE1A585245A7577DE78574B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a69a9ea7cee1a585245a7577de78574b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C208DC2E0D32B55041BEA6C70AEEABA8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c208dc2e0d32b55041bea6c70aeeaba8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "NetTool.RPCHook.f" + }, + { + "Type": "File", + "Value": "4535E8371C087FD4C62ED91F9CFA71F3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4535e8371c087fd4c62ed91f9cfa71f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Packed.Multi.fbj" + }, + { + "Type": "File", + "Value": "7583AE717ADFDA85D296DBB75909D991", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7583ae717adfda85d296dbb75909d991", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "F9910CF278E38C1911BBEAE3DDFBEDC2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f9910cf278e38c1911bbeae3ddfbedc2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Trojan.Heur2.DP.uYW@aud77Fni" + }, + { + "Type": "File", + "Value": "4C506D43C889C605D0FCCAF8B76A4885", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4c506d43c889c605d0fccaf8b76a4885", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "EF8324B9CD65A1BB2C83B2EA0C68809A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ef8324b9cd65a1bb2c83b2ea0c68809a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Packed/PECompact" + }, + { + "Type": "File", + "Value": "3CEB34621AAC25794116DEDFA4B01387", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3ceb34621aac25794116dedfa4b01387", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "4774525CC9B2E84F877DDFB15A1B6364", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4774525cc9b2e84f877ddfb15a1b6364", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "398EDFB2867963B87B7615C30FD2350F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/398edfb2867963b87b7615c30fd2350f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "786141E65C4282BEA89CCB5A7A0C146F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/786141e65c4282bea89ccb5a7a0c146f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "3C82623278E1DDA5DAC8670BC5DC4173", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3c82623278e1dda5dac8670bc5dc4173", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Jorik.htdp" + }, + { + "Type": "File", + "Value": "9E0570B9DB89EE85B398309920185469", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9e0570b9db89ee85b398309920185469", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "A060BA1F6E0847CBB592B08FA3BDE251", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a060ba1f6e0847cbb592b08fa3bde251", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4F4049DB5FCE237A7D3B54E057311592", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4f4049db5fce237a7d3b54e057311592", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "1B5910EAD2E973879F67302C8B2595BA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1b5910ead2e973879f67302c8b2595ba", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "RiskTool.HackKMS.w" + }, + { + "Type": "File", + "Value": "CAF2AFE5AA30EABAC5F2E8C7571A92D4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/caf2afe5aa30eabac5f2e8c7571a92d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "17E42EEA559097828DD2EA69C3E81045", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/17e42eea559097828dd2ea69c3e81045", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "BD240F259C6CED1AC1868E629FF85321", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bd240f259c6ced1ac1868e629ff85321", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "60AFF626938E90D51A27D1E17C53B00E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/60aff626938e90d51a27d1e17c53b00e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm.VBS.aad" + }, + { + "Type": "File", + "Value": "8C3B6841DA399A2FCE47E5D0F375646C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8c3b6841da399a2fce47e5d0f375646c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "8C27D27517B8C74E5F64FA0B8486E53B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8c27d27517b8c74e5f64fa0b8486e53b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.MSIL.bxse" + }, + { + "Type": "File", + "Value": "1D7FACEDA9A4CE0CA8849194ABDCD35D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1d7faceda9a4ce0ca8849194abdcd35d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "2EBF323D0BB700CBF97D595A5C6A87E2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2ebf323d0bb700cbf97d595a5c6a87e2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Farfli.arb" + }, + { + "Type": "File", + "Value": "0F969E6FFB1156D2B96AB9F043F98220", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0f969e6ffb1156d2b96ab9f043f98220", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.a.(kcloud)" + }, + { + "Type": "File", + "Value": "2F653B5FB60B0A0334BB11052BC1151A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2f653b5fb60b0a0334bb11052bc1151a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "DCDE4A8CB8EC9C20B92B64C346A7CCC4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dcde4a8cb8ec9c20b92b64c346a7ccc4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8852186CCAE53A5236FDC73176E81C9D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8852186ccae53a5236fdc73176e81c9d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Kazy.156045" + }, + { + "Type": "File", + "Value": "619A2E1F9508EF22A3B472A8323EA7FA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/619a2e1f9508ef22a3b472a8323ea7fa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Win32.Bladabindi.353792" + }, + { + "Type": "File", + "Value": "CE21E6D9958E5B4805F623197DF1CC75", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ce21e6d9958e5b4805f623197df1cc75", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Downloader.Donex.p" + }, + { + "Type": "File", + "Value": "13399A3F62B94454576492ABDC275115", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/13399a3f62b94454576492abdc275115", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C4504154B89B26E317E18314540BC9B2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c4504154b89b26e317e18314540bc9b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi.25236" + }, + { + "Type": "File", + "Value": "14143DCD9164DACF091F3574770307E7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/14143dcd9164dacf091f3574770307e7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "615EED693B8876FB715659F5BF4C8B45", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/615eed693b8876fb715659f5bf4c8b45", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Genome.asqy" + }, + { + "Type": "File", + "Value": "501211B8DF6BDD18D0D9A10FE8BCD63F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/501211b8df6bdd18d0d9a10fe8bcd63f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9BB992C137BE667C4A41793062B2D584", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9bb992c137be667c4a41793062b2d584", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F51ED36DFFC080AAFD4186749737A1D1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f51ed36dffc080aafd4186749737a1d1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3F139DC8A0565701B6AE4DC5135D010F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3f139dc8a0565701b6ae4dc5135d010f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Agent.fc.(kcloud)" + }, + { + "Type": "File", + "Value": "0F5A44F29C1F2708CFAFD78F7CED2B46", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0f5a44f29c1f2708cfafd78f7ced2b46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:012!Eldorado" + }, + { + "Type": "File", + "Value": "58855032E5ADE59081705141C4EF8AD8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/58855032e5ade59081705141c4ef8ad8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Downloader.Heur.gen" + }, + { + "Type": "File", + "Value": "1CC12EC160F0D2AA38E93AD2C7532B48", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1cc12ec160f0d2aa38e93ad2c7532b48", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "F925D985A221823FC466559F0F15821D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f925d985a221823fc466559f0f15821d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.PSW.QQPass.ib" + }, + { + "Type": "File", + "Value": "AE2E9F77D1AB1BD8EE3139A3082D7358", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ae2e9f77d1ab1bd8ee3139a3082d7358", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7AD9DA268FE07C5D3B07A61355F9BED1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7ad9da268fe07c5d3b07a61355f9bed1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "CBDE5CF2814D0D7A165DBEA12992A099", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cbde5cf2814d0d7a165dbea12992a099", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "8F385770017D074FCAD0686B73D57D6A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8f385770017d074fcad0686b73d57d6a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Diztakun.015380" + }, + { + "Type": "File", + "Value": "963162E19B1357C161A571ADA822E782", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/963162e19b1357c161a571ada822e782", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Android.Trojan.AutoSMS.PG" + }, + { + "Type": "File", + "Value": "5732703B5F3A4559036CDEC71F040081", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5732703b5f3a4559036cdec71f040081", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02725C183A2BE51946CB331A71F63383", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/02725c183a2be51946cb331a71f63383", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic!BT" + }, + { + "Type": "File", + "Value": "47FA4BE44A61AE6B4BCF9CA5ADDBFD5E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/47fa4be44a61ae6b4bcf9ca5addbfd5e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojanDropper.Agent.btez" + }, + { + "Type": "File", + "Value": "BEDA45AFF74DB8A59EBC278E914044C5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/beda45aff74db8a59ebc278e914044c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "EB40DC35D413DBF916A9476CABEB5158", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/eb40dc35d413dbf916a9476cabeb5158", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "B2513F858C46D5547DD7AB09C610CB92", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b2513f858c46d5547dd7ab09c610cb92", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "066A72F72B5A951D9E6C39B1CFA11F62", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/066a72f72b5a951d9e6c39b1cfa11f62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Bladabindi.P.owvf" + }, + { + "Type": "File", + "Value": "4A608E3F93027BB32138A17C1FE61E12", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4a608e3f93027bb32138a17c1fe61e12", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63FBBA267A68205DD9FDD29554BF0986", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/63fbba267a68205dd9fdd29554bf0986", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Trojan.Heur.GM.1000810900" + }, + { + "Type": "File", + "Value": "4D2A800F8D15694DE3D2AEDBD9E528BF", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4d2a800f8d15694de3d2aedbd9e528bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ADE3187925834D4BF691FE0FE0853DE0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ade3187925834d4bf691fe0fe0853de0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic Malware" + }, + { + "Type": "File", + "Value": "846AA83AF2753D65DF23A35D1963AA1E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/846aa83af2753d65df23a35d1963aa1e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B9302D343DA191D1E12574A4E9317A35", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b9302d343da191d1e12574a4e9317a35", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "927384D9D293FA47803AC69EF95C1B58", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/927384d9d293fa47803ac69ef95c1b58", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH008.a.(kcloud)" + }, + { + "Type": "File", + "Value": "F5CF6A20A29F28397C1621442C6EF9D9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f5cf6a20a29f28397c1621442c6ef9d9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/Hupigon.cmtl" + }, + { + "Type": "File", + "Value": "EDB522CA6074CCD19FE0A31EDF32B4C1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/edb522ca6074ccd19fe0a31edf32b4c1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "5FE56CEEBD3FE2BEED556AC36CB8AD3C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5fe56ceebd3fe2beed556ac36cb8ad3c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "MSIL:Crypt-KT" + }, + { + "Type": "File", + "Value": "CE25465D6CA9A1CF5BD8DFE4E5B9E71C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ce25465d6ca9a1cf5bd8dfe4e5b9e71c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:W32.Delf.PVZ.bfju.mg" + }, + { + "Type": "File", + "Value": "8EBECB25F716103470AB98D600BA3C4D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8ebecb25f716103470ab98d600ba3c4d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojWare.Win32.TrojanDropper.Agent.PNA" + }, + { + "Type": "File", + "Value": "86676E15A1E85BC2FF04B4C9FFC46C27", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/86676e15a1e85bc2ff04b4c9ffc46c27", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "E851838ED6029E2A14C16099DF2D3440", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e851838ed6029e2a14c16099df2d3440", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "63B42E0A9548270748FA912C116FF2FC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/63b42e0a9548270748fa912c116ff2fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D3E0C15B1120242580C6D2E51B57C26", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2d3e0c15b1120242580c6d2e51b57c26", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVM099.a.(kcloud)" + }, + { + "Type": "File", + "Value": "FD388572E0DFA183DA5A3CA13999C87A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fd388572e0dfa183da5a3ca13999c87a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Riskware.Dupatcher.A4" + }, + { + "Type": "File", + "Value": "0C385C0A8D0A0EBA23C05F96617D8AE7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0c385c0a8d0a0eba23c05f96617d8ae7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "763372C29BAA38240A85198F6E5F92E6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/763372c29baa38240a85198f6e5f92e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "95D6D927F8C49D13A2E637AE9D2677C9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/95d6d927f8c49d13a2e637ae9d2677c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Packed.Multi.fbj" + }, + { + "Type": "File", + "Value": "0B74F78A8A1F9F6116C8EA8AC7F76F4B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0b74f78a8a1f9f6116c8ea8ac7f76f4b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "92997DF1D7EA94D3A99E6D28DF8500C0", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/92997df1d7ea94d3a99e6d28df8500c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "85C2D4334D1C6593A57266EC61DA6B6A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/85c2d4334d1c6593a57266ec61da6b6a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5A845F08289714C32D11126D976AEEC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c5a845f08289714c32d11126d976aeec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "F5C5469D8D13FBFB6D2B3D26C506F094", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f5c5469d8d13fbfb6d2b3d26c506f094", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "425D23DC70238819362AE192C33C5F94", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/425d23dc70238819362ae192c33c5f94", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A9EA23BA1F4E72B7885B2165B7D0CE1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0a9ea23ba1f4e72b7885b2165b7d0ce1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "24B9C498DD4DA4A82A73FEC2D4D64208", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/24b9c498dd4da4a82a73fec2d4d64208", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm/Mytob.aka" + }, + { + "Type": "File", + "Value": "3DE4A776A01239036EB97B386878C924", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3de4a776a01239036eb97b386878c924", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "HEUR/QVM11.1.Malware.Gen" + }, + { + "Type": "File", + "Value": "7A3B99A663BC0D5ADF4C3A760764A1E9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7a3b99a663bc0d5adf4c3a760764a1e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DA5D467938DB113FAF342F858145185", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2da5d467938db113faf342f858145185", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Risktool.Flystudio.017723" + }, + { + "Type": "File", + "Value": "21393D04C7A3CCBED66ABBB558E9A486", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/21393d04c7a3ccbed66abbb558e9a486", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C70B199F71DD8F4060D8671229B9485", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0c70b199f71dd8f4060d8671229b9485", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "421954D1F4144A390207B2CE25F4F5A0", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/421954d1f4144a390207b2ce25f4f5a0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "39BC005B2BB31E0E1BBD4154D217BBE6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/39bc005b2bb31e0e1bbd4154d217bbe6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "8DE0D99485D83F4E3FF44D283492549A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8de0d99485d83f4e3ff44d283492549a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "C224F63DE577958964DDDA83CCFDCA3B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c224f63de577958964ddda83ccfdca3b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "7698C5E581E87EC5818B03300BC28499", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7698c5e581e87ec5818b03300bc28499", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "DC9081D0B4D4A11D6B694DD4FF0C8373", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dc9081d0b4d4a11d6b694dd4ff0c8373", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "EBDA06FA46D8B6D84A51DC2DCAEA02AD", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ebda06fa46d8b6d84a51dc2dcaea02ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3E8E322B2F99C46E45C7E80635775D87", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3e8e322b2f99c46e45c7e80635775d87", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vienna.730" + }, + { + "Type": "File", + "Value": "0168C52018FBD1B8ECE2A8CB6D0580F2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0168c52018fbd1b8ece2a8cb6d0580f2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor/Linux.io" + }, + { + "Type": "File", + "Value": "6576D36D5CFD3AB9B46F8CEA8636B1E1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6576d36d5cfd3ab9b46f8cea8636b1e1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Heur2.dd" + }, + { + "Type": "File", + "Value": "AFBA01269A9859E1E57CEDD550672613", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/afba01269a9859e1e57cedd550672613", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic.Downloader.A8" + }, + { + "Type": "File", + "Value": "688D276B6695DE3A03652A77F496DEC8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/688d276b6695de3a03652a77f496dec8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "1DFC5E744E1F7D0114E96A1103947812", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1dfc5e744e1f7d0114e96a1103947812", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Menti.ljoh" + }, + { + "Type": "File", + "Value": "07E539AF9C1F42652D2DAE485F00FCD9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/07e539af9c1f42652d2dae485f00fcd9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.14926A98" + }, + { + "Type": "File", + "Value": "4C667FDD801786E63090570D988E0DD2", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4c667fdd801786e63090570d988e0dd2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "59A1BBAB35DEBC6AD9C479E39D94E67E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/59a1bbab35debc6ad9c479e39d94e67e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B7FDBEAAC85105F038A83F90EB69ED47", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b7fdbeaac85105f038a83f90eb69ed47", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "488FC23BE76445D4400F0C530D9E1D20", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/488fc23be76445d4400f0c530d9e1d20", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "DDC13D848884843C86E3FDD241261645", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ddc13d848884843c86e3fdd241261645", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "972D54772834A850E365382D99DFB1CC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/972d54772834a850e365382d99dfb1cc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bedqy" + }, + { + "Type": "File", + "Value": "DB3F4BD99BFBD602E8C0FD959E100DAA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/db3f4bd99bfbd602e8c0fd959e100daa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "CE2F3013087747A6A3563F8BD57BD8C1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ce2f3013087747a6a3563f8bd57bd8c1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "F80FD059839533C6AD19DC1DDC59D21F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f80fd059839533c6ad19dc1ddc59d21f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "275918B1CF8682A677FFFEB782E06340", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/275918b1cf8682a677fffeb782e06340", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CE2FB7D0209CEDCBC469858EE0A646F7", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ce2fb7d0209cedcbc469858ee0a646f7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P:Unknown!Eldorado" + }, + { + "Type": "File", + "Value": "A2B5746FBA862B227FC0CFD2BFAE8410", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a2b5746fba862b227fc0cfd2bfae8410", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "BE12D059C2CBA7A0FFCE8227FA6F2FE5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/be12d059c2cba7a0ffce8227fa6f2fe5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "44DC3C049358C12EC3FE94F63BBFD758", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/44dc3c049358c12ec3fe94f63bbfd758", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E01C14B5BE8D0776229D7F7A8DC87023", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e01c14b5be8d0776229d7f7a8dc87023", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Backdoor.Heur.gen" + }, + { + "Type": "File", + "Value": "DDAA751AF53F88FE0F3BC5B471C94AD4", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/ddaa751af53f88fe0f3bc5b471c94ad4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Malware-gen" + }, + { + "Type": "File", + "Value": "698495B389A54F3584F4AF0001DADBCB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/698495b389a54f3584f4af0001dadbcb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "37B89735842BF0C7A4FD177906BDA851", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/37b89735842bf0c7a4fd177906bda851", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BE089DB84747872AC43BC76682A20192", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/be089db84747872ac43bc76682a20192", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BB31F2776536ABCFC1093CBA9F6CB44F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bb31f2776536abcfc1093cba9f6cb44f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7735DBCFA0B16CD08F76AA4743B46D2D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7735dbcfa0b16cd08f76aa4743b46d2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH008.a.(kcloud)" + }, + { + "Type": "File", + "Value": "5E158E88BAE8FBCF257E16C1B07FD6F9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5e158e88bae8fbcf257e16c1b07fd6f9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "TrojWare.Win32.Trojan.XPack.~gen1" + }, + { + "Type": "File", + "Value": "849B60FED52E8244D0962764782F03C9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/849b60fed52e8244d0962764782f03c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "F9958FF941727AE3891BE6E95BB983F3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f9958ff941727ae3891be6e95bb983f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Agent.hvkx" + }, + { + "Type": "File", + "Value": "BB06E88D9526CA41C4A5EC64DE925C41", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bb06e88d9526ca41c4a5ec64de925c41", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6ABC095713852AAE178FAB6A34D86DFB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6abc095713852aae178fab6a34d86dfb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B5774650119080AB6DD2303FA7050319", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b5774650119080ab6dd2303fa7050319", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1544E15DA698CF9DE67682558141CC0B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1544e15da698cf9de67682558141cc0b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "HEUR:Trojan.Win32.Generic" + }, + { + "Type": "File", + "Value": "F995C5FD53A218EB6D99FC281C436908", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f995c5fd53a218eb6d99fc281c436908", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2412C76A827FCBF986D6384DC97A85DE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2412c76a827fcbf986d6384dc97a85de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "29C9DA8F8F1E63E754549B1E7762B7E9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/29c9da8f8f1e63e754549b1e7762b7e9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "5D51CBD5CB797CFE58733C294FAF2296", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5d51cbd5cb797cfe58733c294faf2296", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "858D7011EB3924C9750A21E1A9A36B4A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/858d7011eb3924c9750a21e1a9a36b4a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7164E9E26C6F2A96247CF93DF798216E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7164e9e26c6f2a96247cf93df798216e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "not-a-virus:PSWTool.Win32.NetPass.ah" + }, + { + "Type": "File", + "Value": "4CFE6CF4E8E54A102CA07B9C6087348A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4cfe6cf4e8e54a102ca07b9c6087348a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Heur.ahz" + }, + { + "Type": "File", + "Value": "7A0F653DDA725A15DE969C6D8DCFD1DF", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7a0f653dda725a15de969c6d8dcfd1df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic.fgoq" + }, + { + "Type": "File", + "Value": "D7F6C96C295747292366CF87FB14DCD8", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d7f6c96c295747292366cf87fb14dcd8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "RiskTool.HackKMS.j" + }, + { + "Type": "File", + "Value": "B229A8FAA6FA5BA27EBE5694E9BF3261", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b229a8faa6fa5ba27ebe5694e9bf3261", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "D64C1AE11699E5D327E1FF9C7B8BBF62", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d64c1ae11699e5d327e1ff9c7b8bbf62", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "1B1E00A1E0452031F9FF7F5C19E4BE40", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1b1e00a1e0452031f9ff7f5c19e4be40", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "94AB0E8AC64D6EB2A64016B31F9811E3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/94ab0e8ac64d6eb2a64016b31f9811e3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5690F218F714292391A3B1971563CDFB", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5690f218f714292391a3b1971563cdfb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DEB73B9798C5DF87D3BFA24313CB0AEB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/deb73b9798c5df87d3bfa24313cb0aeb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "0FE9BF46EBFA96A51598D4C2EAB751F3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0fe9bf46ebfa96a51598d4c2eab751f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5279033339D74A2B22E10678E67CF85B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5279033339d74a2b22e10678e67cf85b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "3ACCFDECD2997EF6E53A805A6E87F38B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3accfdecd2997ef6e53a805a6e87f38b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "HackTool.Win32.Keygen" + }, + { + "Type": "File", + "Value": "C68AB527252127D8678B40BFEB3CCC89", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c68ab527252127d8678b40bfeb3ccc89", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Zusy.69665" + }, + { + "Type": "File", + "Value": "6FAB2F126F416220BBB62A16F01E0DB3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6fab2f126f416220bbb62a16f01e0db3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Android.Adware.Wapsx.A" + }, + { + "Type": "File", + "Value": "94D75527033326CD209F9237B356B5AD", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/94d75527033326cd209f9237b356b5ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8C44D2A31866F263C04D3DC8996294F9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8c44d2a31866f263c04d3dc8996294f9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic Trojan" + }, + { + "Type": "File", + "Value": "F293A1F95366BA980BBE9B6D049C8886", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f293a1f95366ba980bbe9b6d049c8886", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "A3B44EBF7B23830572D6B4DB5DCF5637", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a3b44ebf7b23830572d6b4db5dcf5637", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "980FF1BA011B66F5B95BE8E0BA9009D1", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/980ff1ba011b66f5b95be8e0ba9009d1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "018D2E78EDFC17D51D4EAA18FE4A0DEB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/018d2e78edfc17d51d4eaa18fe4a0deb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Zusy.127736" + }, + { + "Type": "File", + "Value": "7181ABD724DB11391C0176D2715F9F30", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7181abd724db11391c0176d2715f9f30", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "18F945BFD9E2D0444DCA1EFADC5A179D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/18f945bfd9e2d0444dca1efadc5a179d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.pak!cobra" + }, + { + "Type": "File", + "Value": "3A3DCCCD66A5014D667E716C03D346C0", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3a3dcccd66a5014d667e716c03d346c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Crypt.Heur.gen" + }, + { + "Type": "File", + "Value": "A67632F3782A3EBAD762AA78C21FF670", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a67632f3782a3ebad762aa78c21ff670", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:P0:ASPack!Eldorado" + }, + { + "Type": "File", + "Value": "40A05C2E4084C66990FF8B572E1C792A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/40a05c2e4084c66990ff8b572e1c792a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "99C27ECABAF1045C73B3DFA17D0A6C10", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/99c27ecabaf1045c73b3dfa17d0a6c10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6237EBCC1FD198E7DF366630265C1DD4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6237ebcc1fd198e7df366630265c1dd4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9A5DF7F097B6A8A49E2E04753D1E44C7", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9a5df7f097b6a8a49e2e04753d1e44c7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E95DD51DDF96950C91FC70A3546D9A2E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e95dd51ddf96950c91fc70a3546d9a2e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C105FB38F8EAFC6DE128CADDD852294D", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c105fb38f8eafc6de128caddd852294d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B8E05D58D9B51471BEA4B3BCF70ABFAA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b8e05d58d9b51471bea4b3bcf70abfaa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4FB719248FC16B194E922A372B25BE5D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4fb719248fc16b194e922a372b25be5d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Win32.Inject" + }, + { + "Type": "File", + "Value": "8423B955A05D9BF3DB4DDF5D17A62199", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8423b955a05d9bf3db4ddf5d17a62199", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "408758680C9409E98C7E151F2CB5EB2A", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/408758680c9409e98c7e151f2cb5eb2a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "13804BD2C184AE86D22A3D711DA77B8F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/13804bd2c184ae86d22a3d711da77b8f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Worm.Rebhip.019054" + }, + { + "Type": "File", + "Value": "57808B6DBE73C29D447D021D4DBFDDC4", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/57808b6dbe73c29d447d021d4dbfddc4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C09A0A55CDE5404789BF54D380800F8E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c09a0a55cde5404789bf54d380800f8e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11A5D5C121F85BA54ECDE63F2F6FA49C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/11a5d5c121f85ba54ecde63f2f6fa49c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "F6B9D8CE136F72D6E012F560F429F2A5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f6b9d8ce136f72d6e012f560f429f2a5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09C4081AF2934F76BC7FFD9ADFA242D5", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/09c4081af2934f76bc7ffd9adfa242d5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4B656E4F734A7D96FAB14EE118740B6C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4b656e4f734a7d96fab14ee118740b6c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Backdoor.Generic.aeqp" + }, + { + "Type": "File", + "Value": "8E72536C61DBC378434ED91716609468", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8e72536c61dbc378434ed91716609468", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "6FAAF7DCBB53B1036793CCF1593E8E41", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/6faaf7dcbb53b1036793ccf1593e8e41", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "F6D8BB708D6896443CE8026861358EFA", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f6d8bb708d6896443ce8026861358efa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "604188E98764AA6C9A8FA9D40A7602DC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/604188e98764aa6c9a8fa9d40a7602dc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:001!Eldorado" + }, + { + "Type": "File", + "Value": "1E58A097DC7CB6A7862CCF34450FD657", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1e58a097dc7cb6a7862ccf34450fd657", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Generic Trojan" + }, + { + "Type": "File", + "Value": "574841842851F8B49AECDA74E124EBD9", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/574841842851f8b49aecda74e124ebd9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "835E3715E7D11C0873875BF5D1EFC816", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/835e3715e7d11c0873875bf5d1efc816", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Generic_a.a.(kcloud)" + }, + { + "Type": "File", + "Value": "9012BA2400EF27089C5522F5930F4765", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9012ba2400ef27089c5522f5930f4765", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D7D4FC4C83FE5C618B43FA81FCAB33E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0d7d4fc4c83fe5c618b43fa81fcab33e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Win32.Generic.14926A98" + }, + { + "Type": "File", + "Value": "9FD5D4BCF1535874B30BA315AC433F69", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9fd5d4bcf1535874b30ba315ac433f69", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "437797137F87CCC969FA156C2A89255E", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/437797137f87ccc969fa156c2a89255e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "DAB0017D61B490C7FED21016D9B508A9", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dab0017d61b490c7fed21016d9b508a9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D6F8F33E86932FAFDAE1936F6BAD59CB", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d6f8f33e86932fafdae1936f6bad59cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/Trojan.97a" + }, + { + "Type": "File", + "Value": "FEDD26A1A08DC7B0EEA111296815D71F", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fedd26a1a08dc7b0eea111296815d71f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3037169609B8F1123A36BB97529B622B", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/3037169609b8f1123a36bb97529b622b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:007!Eldorado" + }, + { + "Type": "File", + "Value": "D6FB8E3EAD57F262A1676FFB0A3651FD", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/d6fb8e3ead57f262a1676ffb0a3651fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9BECA19F9BD7139BED56FAC56B5A4681", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9beca19f9bd7139bed56fac56b5a4681", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Heur.KVMH004.a" + }, + { + "Type": "File", + "Value": "41361019EE4657EDE224E44C7E6AA9B5", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/41361019ee4657ede224e44c7e6aa9b5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "101FDCE4EEC6390AAA4455741557376A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/101fdce4eec6390aaa4455741557376a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:.NET!Eldorado" + }, + { + "Type": "File", + "Value": "5FF8F02123A70A369C9ECC7068629592", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/5ff8f02123a70a369c9ecc7068629592", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8253824BDDC355AC887363E37C2BCFBC", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8253824bddc355ac887363e37c2bcfbc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "E38DBADD3EDADF8C5F58C097E95668A1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e38dbadd3edadf8c5f58c097e95668a1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Cosmu.luq" + }, + { + "Type": "File", + "Value": "79092C99FA066BEB4B5EFB8D280254DA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/79092c99fa066beb4b5efb8d280254da", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/Trojan.Dropper.b73" + }, + { + "Type": "File", + "Value": "E7BCFAC3350D4F147D2A2ABCB96AD920", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/e7bcfac3350d4f147d2a2abcb96ad920", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trj/Delf.ZL" + }, + { + "Type": "File", + "Value": "F17B61603F4093AEA07BF2246313D3AA", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/f17b61603f4093aea07bf2246313d3aa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Strictor.111736" + }, + { + "Type": "File", + "Value": "065F4A5A9BA9F8759C18AF3DD9EAF5C2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/065f4a5a9ba9f8759c18af3dd9eaf5c2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "8C1D4409BFE788B85D30FFED612258FE", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/8c1d4409bfe788b85d30ffed612258fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DEFB34EFA47B368CAB0179F1CF150D14", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/defb34efa47b368cab0179f1cf150d14", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DEE779F251847E82F7C618E96E5BF656", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dee779f251847e82f7c618e96e5bf656", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "47F66A59D6AD5F9C6AE738E528585E88", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/47f66a59d6ad5f9c6ae738e528585e88", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4FC457B08A43D351C2E12C4AE88D64B3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/4fc457b08a43d351c2e12c4ae88d64b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A71BCEC8E0EE9A15942B98FDF5F3040B", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/a71bcec8e0ee9a15942b98fdf5f3040b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DC5251DBAEBFB43131996EB8310AAC06", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dc5251dbaebfb43131996eb8310aac06", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "9066C14B0D28F56D216D1FF213C822B3", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9066c14b0d28f56d216d1ff213c822b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VC!Eldorado" + }, + { + "Type": "File", + "Value": "2C1DF2964EA76E9AC668E367DF64A338", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/2c1df2964ea76e9ac668e367df64a338", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:Delphi!Eldorado" + }, + { + "Type": "File", + "Value": "59F6E285356B203426E62AFD26D01DC6", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/59f6e285356b203426e62afd26d01dc6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "469BD77240C4201A2217A9E7EB818BAC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/469bd77240c4201a2217a9e7eb818bac", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CFC47CED171470E3C66E385975A5721C", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/cfc47ced171470e3c66e385975a5721c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Android.Riskware.SmsPay.G" + }, + { + "Type": "File", + "Value": "0BF0DA7B7ABAF815726649444F0E3867", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/0bf0da7b7abaf815726649444f0e3867", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "781BAAEF947CB575B7740115456E48E6", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/781baaef947cb575b7740115456e48e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.MSIL.bxse" + }, + { + "Type": "File", + "Value": "C19521BED13C45D129218238C45DCA4F", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c19521bed13c45d129218238c45dca4f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.bemfm" + }, + { + "Type": "File", + "Value": "1DB0B12F77A4DA66173351AAE0AC16B3", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/1db0b12f77a4da66173351aae0ac16b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7D6D2AC747DB8825F6BEC6857810C560", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7d6d2ac747db8825f6bec6857810c560", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32:Evo-gen" + }, + { + "Type": "File", + "Value": "759CD746BB1FF6A8B6D50FA98DDB7679", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/759cd746bb1ff6a8b6d50fa98ddb7679", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7CEEEC2B8F9F4C88499D12D60FB1E6E2", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7ceeec2b8f9f4c88499d12d60fb1e6e2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:IN:NSIS!Eldorado" + }, + { + "Type": "File", + "Value": "BC13A1870C8A962CCE481D5E10FAE12A", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/bc13a1870c8a962cce481d5e10fae12a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.Generic" + }, + { + "Type": "File", + "Value": "98BEE62544B20F39279CC51D8CBB7DB1", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/98bee62544b20f39279cc51d8cbb7db1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:EX:002!Eldorado" + }, + { + "Type": "File", + "Value": "9F6CC00D40117E1FEC60AE5C8CCB7739", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/9f6cc00d40117e1fec60ae5c8ccb7739", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "W32/Felix:CO:VB!Eldorado" + }, + { + "Type": "File", + "Value": "FB0DABDFD8D708DE049A5F90D9701972", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/fb0dabdfd8d708de049a5f90d9701972", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32.Troj.Undef.(kcloud)" + }, + { + "Type": "File", + "Value": "DC91FB821876A15C0F6A3603C6BE8E6E", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/dc91fb821876a15c0f6a3603c6be8e6e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7F74E8030B70B49759011EDB1125FC96", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/7f74e8030b70b49759011edb1125fc96", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious:Backdoor.Prorat.eyu.bizk.mg" + }, + { + "Type": "File", + "Value": "B987F311DBE2F191CAF531A0CF0E12FC", + "Organization": "VirSCAN Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b987f311dbe2f191caf531a0cf0e12fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C819B5FAC35250C2ED0CFC2403D1CDEE", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/c819b5fac35250c2ed0cfc2403d1cdee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan/Generic.azsxr" + }, + { + "Type": "File", + "Value": "B5C07BA77527A31F1EB63BE32B6EAA2D", + "Organization": "VirSCAN Source", + "Rating": 2, + "Confidence": 50, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://r.virscan.org/report/b5c07ba77527a31f1eb63be32b6eaa2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Win32/PatchFile.et" + }, + { + "Type": "File", + "Value": "CE8B6E20E0EE177174FCA864C7451731 : A189EE99EFF919B7BEAD989C6CA252B656B61137 : D136B5014C7637DF063EF9F439A133CCE09B490A613F370FEBB620A474B15D30", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d136b5014c7637df063ef9f439a133cce09b490a613f370febb620a474b15d30/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "A68A3CD1CAB3DFD31F1EAAAB08894A8E : 06A45394EBE872452F3C286DD9444FBC14C7EF55 : 391B557ADDFE3CE888B5B9EB2DE3F51B367B7EC4E52CEABD160E5D74B9A48347", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/391b557addfe3ce888b5b9eb2de3f51b367b7ec4e52ceabd160e5d74b9a48347/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "83BDB732A83C04E5B843B15D18F349D2 : 32AA447B0715F5F3B94D3864D493E223BA0F8DE2 : EF98586C8FCDFE31BD0DCE0AD2BB9DDC89C27C2EFF2ACC41332D233789E4F898", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ef98586c8fcdfe31bd0dce0ad2bb9ddc89c27c2eff2acc41332d233789e4f898/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "74120559C84EA61C7CFB27B17F3B3554 : 81E9CBC56D25C1604E4AD7791A58A06ED9AE54D4 : 1450E7C04911D768821CD88BEE22D9C958EB06291E521BD5CA76388AA2CF665D", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1450e7c04911d768821cd88bee22d9c958eb06291e521bd5ca76388aa2cf665d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "9FB7BBEC367E940051FD9FA5B6C5EEE7 : D27A98A2B7918CF353931347ED886E838B944BF4 : AC2DA71D8B06ABB43C75A16C3EF58628ED4ADFC6E9D7F07D33E108EEB5DA4290", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ac2da71d8b06abb43c75a16c3ef58628ed4adfc6e9d7f07d33e108eeb5da4290/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DE46A6C4F4F7B98698B3888F1543FC8F : 0D98942FFFA5204B44F31E7C782919402AE486EE : 61837A590A43F0CB39E3954521DD2004EE6914085FD3AB71F4E5FE32158DE463", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/61837a590a43f0cb39e3954521dd2004ee6914085fd3ab71f4e5fe32158de463/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C1BE60694664A44B901E102B867E78E5 : 6190A844E6D451F1E73E0F8EEEEE227134D6B307 : 9C85A0BA87E2E4CAA2E55BE97055943E7629A0BFD38509AAA35644F5E939A49E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9c85a0ba87e2e4caa2e55be97055943e7629a0bfd38509aaa35644f5e939a49e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F0B8C17ADBDB750B49705960D20A8CEF : 7BDF2D8B529274241DF74EBEF3F9B4F0E935AE30 : C9783B3D3016A72A359E8C57770D207A26967632992FE371D746BBDC5E4AA7E7", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c9783b3d3016a72a359e8c57770d207a26967632992fe371d746bbdc5e4aa7e7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "326B77AAACB50D5A35244ABE858F31F0 : 7E57AA42B4AA15BCD35B7481809AFCBA10674E8F : F71986280469097A9CB62C200C8BC3789872E7DFB41D75D5A9179564ABFE5A30", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f71986280469097a9cb62c200c8bc3789872e7dfb41d75d5a9179564abfe5a30/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E6C820F15D17426E94220902A935AE30 : 673428D847E6DB8834B636E2CC25DE8F3B597FA2 : 32567A2BFF0E3DA39CAD36D4D78BCD1E657CFDAF1F5517A46C74406A6617A835", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/32567a2bff0e3da39cad36d4d78bcd1e657cfdaf1f5517a46c74406a6617a835/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "4618CD3D72D87CDCA2629B7D4CB98968 : 8E8C62F72E885F3EC66B954483A03C6609012D25 : D03FA1457FBAA777EA62659E1C17B1B1352447C76C4CAC55BA8747CD6F90C596", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d03fa1457fbaa777ea62659e1c17b1b1352447c76c4cac55ba8747cd6f90c596/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "820F4B932326364C0672557D67747740 : 9F9FA297AB67A128024D5B64C9FD4F8AB92DBCE1 : 109D2A8A7DF07E0A80D70BCA7FF9540E2CB33B9BFF65BA05F1F1A5243F454C98", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/109d2a8a7df07e0a80d70bca7ff9540e2cb33b9bff65ba05f1f1a5243f454c98/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "45568541DB4936B74E4DC28F9F94D44D : AA3C7F1BE3C1590916776F88A372A927C7938718 : BD4F4097C07F8CE62C462E50099A714672C55744155BA7E5EA5CF269C321486A", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bd4f4097c07f8ce62c462e50099a714672c55744155ba7e5ea5cf269c321486a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "21C77D8544222F7D9A77DF7078777442 : CD1189EED94804BE947D9093D8CB62D38DC997E7 : 849A5F4209A9E0F2E4116294C84CC98033F14FFCECD0B01734967C3C4EDB524B", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/849a5f4209a9e0f2e4116294c84cc98033f14ffcecd0b01734967c3c4edb524b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "AFF613122C648DE83CF4BDCB85FAC15A : 63CD758A3E2140A93C5646F315750174391118F3 : D8F9330151C7BB05688571DEDC47A4C3BBC0FB117868C1196C05EF977E416B31", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d8f9330151c7bb05688571dedc47a4c3bbc0fb117868c1196c05ef977e416b31/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6339FCD303FBCC3A9B5A9880F7B81A6C : A91160449CF4C83624B4A5CBD7A455FC80A305B1 : 9B63CDED4696BD6F8092424003D5206DCC98D1A30DA6D9B46154AFB8760A2E7F", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9b63cded4696bd6f8092424003d5206dcc98d1a30da6d9b46154afb8760a2e7f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D5C44560E44A377598C124DFC97DC13 : 4493EA98CA7CFA22B86718D9BBE0B2C8365A9047 : 2955247A6010B45CB3B466C078BB1CBAC7088BE40FB42AB4E8E57509FF203B08", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2955247a6010b45cb3b466c078bb1cbac7088be40fb42ab4e8e57509ff203b08/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "7C1B15F93397018CA340B9A73BCE3585 : F9B745F58E059A63FD3EBB3E816B1010EAD92405 : 4609B1ADE5F782F9CFB6D8DE0D2E75F9A9AA488260ABB883E62758CD0096AF6F", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4609b1ade5f782f9cfb6d8de0d2e75f9a9aa488260abb883e62758cd0096af6f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "90EC75B11693C68A5E69735269B1F1FA : B99BCC95C5E4745B9A6EB8E22E510F0FA8F03890 : DF98BD4B7ED72843357033290C3C13934DEE543318BF716E6CE933C4153E5B8D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/df98bd4b7ed72843357033290c3c13934dee543318bf716e6ce933c4153e5b8d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "22ADA27405DD2DACC8729508867E2251 : 43BC4EFF6FF325463DAB6E40D98A257F3718C4F0 : 665D8800BB1A40B5D56CB683CDA7A868459D9C42B08B543F4B284122D098F5C8", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/665d8800bb1a40b5d56cb683cda7a868459d9c42b08b543f4b284122d098f5c8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "42243A236CAF0D54F143C0390B4C8976 : 8CCD090E7D0DFEAE5ED34C4ABEA7C0F770F6FA43 : 0FE4F9E56E7449DB949852F4018DBBDCD5F8A63C1AEC7834FCFFA8B66D73143D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0fe4f9e56e7449db949852f4018dbbdcd5f8a63c1aec7834fcffa8b66d73143d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DE1AA6FA12653258326C7ECF75C13776 : AB13C9C56FA1E278CCAE677F5BCE8B3F3A752D74 : 717FFA13BF9BEDF783D081C7E8482455991FB04B2860D3DD6795610DAB75223A", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/717ffa13bf9bedf783d081c7e8482455991fb04b2860d3dd6795610dab75223a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5B6FFEC5C3A42B9573246C3959B7678B : D4BD555BCC0DC2578773E27C2AE846A79B557C44 : CC3920F45C3715A1A72FB21134C7388FD520F9A5CA4E7339FA0969CFA3995B1A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cc3920f45c3715a1a72fb21134c7388fd520f9a5ca4e7339fa0969cfa3995b1a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "2DC7CB46D93CCFC5BCB287D1B2E9E6D9 : A9A5217BD4BF4C90EC2D65CAFEB32880208CA9B5 : 41F2E41B5D89B116750E9C9D5AD310273648005B7BB7338AEC179CF7D2C9213B", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/41f2e41b5d89b116750e9c9d5ad310273648005b7bb7338aec179cf7d2c9213b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F55F67DAA9C67CD8FFF49520C3AD5E86 : 7455C1B15046F85B30EC468B92916FA08C045FF7 : 4B21E152EA7A155BDE3194E65E87E887848CFB547ABF4859F1B65A84C87FD326", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4b21e152ea7a155bde3194e65e87e887848cfb547abf4859f1b65a84c87fd326/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "4E72B56F8B671CBE489B9F2262D03069 : 67A2902D1235B4A9F16420A7BBF440FAA49D08EE : 7C78B139580EF9493C165E5A236295ABF3B9A8AC0E0708E75C9BCB0EF7541441", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7c78b139580ef9493c165e5a236295abf3b9a8ac0e0708e75c9bcb0ef7541441/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EE664A83A7149285782DF8CD4D421778 : 9912A03D05F8EAE94BD330B51935BFF9D86AA6CB : FC04FD4F2DF3DDD7CBCEA105B799C707D0C494BFD165EEAD9A4B9F35DDFDE5E8", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fc04fd4f2df3ddd7cbcea105b799c707d0c494bfd165eead9a4b9f35ddfde5e8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A53B1C261E2EDF1C9DD4D3C93DD391E0 : D2C489834D9D5497DBBBC548A64EA377A3159083 : 28CE868E92F9708ECBADE8FA03C3843279081D398ED48891ABF48433646E7EBB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/28ce868e92f9708ecbade8fa03c3843279081d398ed48891abf48433646e7ebb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "01E53B3E53463BAC9CC7DCF4920BB3B7 : A602CDCC651B00D86FDD51502E3140BF82A4640D : E5B2FCD4514DD6660AB07A4B832962C9C97D35825B5C71FB112D5AA02A0329CC", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e5b2fcd4514dd6660ab07a4b832962c9c97d35825b5c71fb112d5aa02a0329cc/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B5D651765962B828C195E5861F95D52D : 49FF000B43D8278C8F8B4248B8C0B1629B356CA6 : D428C3B336E0533585B1E54259774ACB49CA1D2C3885EA9062F639B72A750899", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d428c3b336e0533585b1e54259774acb49ca1d2c3885ea9062f639b72a750899/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DDB9B218E2BBB649E6834403A5C61C62 : 51ED23FA92C250B5E40E471AD98AD603E329DDDA : 0C00411AAEA258006504FCD763D08D5858FC9EB4FBA75934D101A8B4392E1418", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0c00411aaea258006504fcd763d08d5858fc9eb4fba75934d101a8b4392e1418/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CF80B06A25D8D45C9B3C8880F24C5A7D : 55548904BDE5122E96B07A61C3BC682398361BE6 : 8D12F2F1D2A617F4CA3526EC7BCF901215E9F243CA41E9BEBB9851E55151A617", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8d12f2f1d2a617f4ca3526ec7bcf901215e9f243ca41e9bebb9851e55151a617/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DE80F95D25D779DB9A08F90ABA1C2D7 : BFEE0CBF3F762DA4985CEF42215A807E0E5D04FE : 4CB3D75D441D4BF123BF4C4467B1105285F0696E215892497CEA0B31B9484B20", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4cb3d75d441d4bf123bf4c4467b1105285f0696e215892497cea0b31b9484b20/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "94A5E93A962B5CD37F35157A46EEF798 : 46639DE585DBB324C5DBE98B62CE29956021971C : 53D5E04AF7AD818CA58F5442D4A0FB877B0B583A0CE4C2395C19F48E5220559A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/53d5e04af7ad818ca58f5442d4a0fb877b0b583a0ce4c2395c19f48e5220559a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "979B11FCC8BEE3ECC2099822F9D5918F : 58DAA17DD6A6A056F5ACCC60732DDFD9622AFDF2 : 401332E3B72BE545B4810126DF40B529122C81CD7831FB1EEF9379BF4AC6B28D", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/401332e3b72be545b4810126df40b529122c81cd7831fb1eef9379bf4ac6b28d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "963A903CEF4F18A7B976C502328B9350 : A7651EA022B0DD8A27552F56FA7A11E3364A2CC0 : A1848BA9D0A82504F1444F0BBA67AACBD08A58A59A235D69745B39F603F1C4CE", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a1848ba9d0a82504f1444f0bba67aacbd08a58a59a235d69745b39f603f1c4ce/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "4E3E9669912BC6D03D494E452F151A30 : 53C1E040171CA6CA8D3202B70C00AAF68007A32F : 62D36166E811C6588397F639513F787A8E6E5A75B1C389F970C4450B4780DF1C", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/62d36166e811c6588397f639513f787a8e6e5a75b1c389f970c4450b4780df1c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Nastjencro.A" + }, + { + "Type": "File", + "Value": "FDD6528727D23C161CEAAF8B889334C2 : 9C9381B6FCC7A6DE52ACB9072F1A438051383C41 : D589224B2A64834E3B001761DBB8D4E4484677F01756F8368B276AB12375D31C", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d589224b2a64834e3b001761dbb8d4e4484677f01756f8368b276ab12375d31c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AE3B47863E7D88636A5C87D90643E845 : 3E272AB2D987710D81F721301BC9105BD3072F44 : BD8F4D261C0E76BBC18F172B9C52B308036BF62B424BCD9A924D840ADD2A581B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bd8f4d261c0e76bbc18f172b9c52b308036bf62b424bcd9a924d840add2a581b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9127D0DCD5722B3815351939AE283A3D : 3F2AC082D933E3F296D8BE430EBEEF930B701237 : 7D30010D96EC4ED54DCF31CCDC1D69882D988956783856D5FC68FD6ED8B54529", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7d30010d96ec4ed54dcf31ccdc1d69882d988956783856d5fc68fd6ed8b54529/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6612AEFD802D3760EDA7C4D3410CBEF0 : 13939AEEE6AD304A77DFF79ECC44368E179E4C97 : A669204EFEF9E0F7CA668640D2928C0DF8686F9632753401A3FAEA2A75FB558B", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a669204efef9e0f7ca668640d2928c0df8686f9632753401a3faea2a75fb558b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "25CF96878467B8A33E0BF5DAF12422B5 : 21B7CA7ED9B8469734D4AD76F52F6B232BED729F : 3B7ADAC6E41B50959F4C5CFF79745DF45D22C4E0202E7727908FACAEF266D199", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3b7adac6e41b50959f4c5cff79745df45d22c4e0202e7727908facaef266d199/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8C7F6B1AE3F656CFEAADE66352EF8E8A : D30D54E0638A73243E5EB3F9206B647F498DC6FD : 5BBC1EF95B59087487BFFDB2C78D0CC97B12BF49F52577492EEDE761ADF73D82", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5bbc1ef95b59087487bffdb2c78d0cc97b12bf49f52577492eede761adf73d82/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9FB66419CB2FFFC5D436123F08DA71FD : 327200DC769704FFEF9CC813209E3FA3A486FB24 : 6FA3C008ED34FBE658779E522EAA15DC21DD386556FE1143B5F3635428B6FA0D", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6fa3c008ed34fbe658779e522eaa15dc21dd386556fe1143b5f3635428b6fa0d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "62D1029D2BB878FF632E2C5DCFA57E63 : EDEDA0113CFE6FAEA56BB87C64A88AF38857443C : DC13442EB93C58D7D14EA8D7E295325DD42C8DE8F962B27A3BAFE7C7C0ABE94A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dc13442eb93c58d7d14ea8d7e295325dd42c8de8f962b27a3bafe7c7c0abe94a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "DD95EB476DDEAC10B846EEAAF77F7218 : 0CA2C24314C42560F0565253C5739CCF79B9052B : 68A552104148156A59D5CB1002E9C503BFC6101C4DF6D5BD9A15E5824053B5C8", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/68a552104148156a59d5cb1002e9c503bfc6101c4df6d5bd9a15e5824053b5c8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3063E4209AA1C6853E3477A95B884B7F : D79F0F4F7FAACCA3A6D80D4620318A1B8DB39D54 : 9E64C07F4A2EBBF4C8D1CA00520536C6221C3C0462E7C70AEA09DD696FF7F06B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9e64c07f4a2ebbf4c8d1ca00520536c6221c3c0462e7c70aea09dd696ff7f06b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F790B0035A01241FB6EE1C360CB85500 : 5AFB34CFD4771D3373D45DD3447D50097FD343D5 : BF7E741D81E8E5BDF26E71D60FF703FE9D610EFEE939F824C139006A8C613944", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bf7e741d81e8e5bdf26e71d60ff703fe9d610efee939f824c139006a8c613944/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "05E4EDFB8B9D33675042011DC686FC6B : 69C3C26917BC074BA91341FDA4B2E0270A497550 : 8A6DF6D52AB56730904381DCCE628F53C12D66767FF3D66D503C990370165931", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8a6df6d52ab56730904381dcce628f53c12d66767ff3d66d503c990370165931/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5934B21079BF58D57992391B44866CFB : C113B2703AE8F50B4A4EA3F63E8D24E52CC5CDDC : 41EE80439420657027418E41E67071532322323A9E8FAEAE537E6825CBA3F62A", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/41ee80439420657027418e41e67071532322323a9e8faeae537e6825cba3f62a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "6CB51522E5D4F7CDAC75C1D386A63429 : 5671FECAA92F117C1B0777B7DDADB36694E04280 : BD06A533F2293506A41FFD6C1AE96C5F7F6DC357D804E4F1AE26AEC2464302CB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bd06a533f2293506a41ffd6c1ae96c5f7f6dc357d804e4f1ae26aec2464302cb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5E12550DEB2A15CD8081E29BCF673C1A : D1BEB4F8E39207DEAE4F73785A1449A5022EE8D8 : 6C1AEC03F6CD531B90FE50F88866C7C282A2E20F0C3B4BBD5E6312348E0A121A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6c1aec03f6cd531b90fe50f88866c7c282a2e20f0c3b4bbd5e6312348e0a121a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "F237EFC798694AD69A1C62EB7AECE9D6 : 3E8655811C4BE1E623E9D7AA80AA0091B938EA24 : 4682E2BE90F37132763B6485F46BD54CADB09B323C26BB7EC44406007DE4DE7E", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4682e2be90f37132763b6485f46bd54cadb09b323c26bb7ec44406007de4de7e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "204A676FC6BCB7C34CC1801F5097A557 : F1FCA44E5BC09D6C46F158CA8885F7184B92806E : C420EFA7E968EBFE5B7F91585CE11B0C1E1A736F55FB122BA5E8AE048C686C50", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c420efa7e968ebfe5b7f91585ce11b0c1e1a736f55fb122ba5e8ae048c686c50/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8BD82C544DA126298C1170A2AF6EB18A : D94062D940D0C77822763858409364A9E76070C3 : BD776CB9550474038643A17C8AC90A27FAD58A3CFE9B08B795A9D1402AB4CEB3", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bd776cb9550474038643a17c8ac90a27fad58a3cfe9b08b795a9d1402ab4ceb3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9C4009AC57AC400E39F0A1386D6D98E3 : EDB279DBD1FEF0E4B14F8EEE6383E5DC514ED168 : 5F6D834EEA1728E15862787B64A67A774E7E623F72E759E5E82DE61403E995D0", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5f6d834eea1728e15862787b64a67a774e7e623f72e759e5e82de61403e995d0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "70BD0C645E9DB1EADF68FE8562E88423 : E66B9E1B6205E25D0A3C6EB6E4B7398D2DBE5102 : AD850DBA74557E70A1C79B648CBEDC8991E6CC3E25E36D9F77BBA2C2479EFCA8", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ad850dba74557e70a1c79b648cbedc8991e6cc3e25e36d9f77bba2c2479efca8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BAEC3D409324CB115861D982592BEFA9 : A9A823E104E2675687242619EC2A2A16E0C2BDF3 : 39833FB6324DE0DE4C29085AB2557D4A271B66EF89725DFA5EC818F47EFDF3DF", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/39833fb6324de0de4c29085ab2557d4a271b66ef89725dfa5ec818f47efdf3df/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Razy" + }, + { + "Type": "File", + "Value": "D5BEAA7C02435DA67ED5774C231F6101 : 412E4C48429167E652EEA31CEE04E066BFE10E1F : FF7274E2AB40B199A00DF9C386AEE439FAC00CE0EF61F238763913AA02D8A38A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ff7274e2ab40b199a00df9c386aee439fac00ce0ef61f238763913aa02d8a38a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F6D7C2E7E104AE4B5C9441AC35BD6062 : A749358CF12C45C0CD00CCE9E57317CC962CA4A1 : 18AC2090E9EB532E1C18F97B057B293E8AC165A1924A9ACF8B4CBD0EA571C44A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/18ac2090e9eb532e1c18f97b057b293e8ac165a1924a9acf8b4cbd0ea571c44a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D9BC836587F281839385527A09F64D02 : CBA35E1A4B24D0AB4BD1080CC30A4F94F199C9DA : D5728CF3178BAD1D3BAF4936E138D52267325D8ECE27A0462250ECD6C3DF7D92", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d5728cf3178bad1d3baf4936e138d52267325d8ece27a0462250ecd6c3df7d92/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E22467380C46CEDCB408AAE183BC84B7 : AF2599966D45DD5F511EA5BFE137A73B937F988D : 3A94DF455C2B26EE7E405CA916B5BC9F1708291ECF1F87A7F93326DCFEA4571F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3a94df455c2b26ee7e405ca916b5bc9f1708291ecf1f87a7f93326dcfea4571f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "8CF121F7E1C614CA1C2FE6FD1B740E2A : C2030B50BE02CFBE620FEF050FEE198BAC2A74F7 : E288E4A4179557E124564D426B52284C262210ACB81CD1037AFBBD0DC80F89A5", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e288e4a4179557e124564d426b52284c262210acb81cd1037afbbd0dc80f89a5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E1CBA331F4BB8B6BBCAFF82A5D660B22 : EA065E89985A5B1EC81460FCBA1E1F5B91DE8D12 : A969EE265BE00AAEEC9D7F9A6757D837E273354393AA43A8EF968D4EA5B64AE4", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a969ee265be00aaeec9d7f9a6757d837e273354393aa43a8ef968d4ea5b64ae4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "6B55FBA723955001308DF0D0AC2028E4 : C34301F14B0C2ADEDA4A129D63A90FB9177087EE : BC9DDC4698C3DB0598C39F91469F5A26B2BF9F9C61B8F31F4AD6993365AD909E", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bc9ddc4698c3db0598c39f91469f5a26b2bf9f9c61b8f31f4ad6993365ad909e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "32CC6F902E5B6AB1132B8E222BE92E47 : 9DE298E9BE7FC56A951C1168E1EBA76D99698428 : A75A98775028870C058E0799CB845CD4B5574390FF7AF4A2323C859C601F1958", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a75a98775028870c058e0799cb845cd4b5574390ff7af4a2323c859c601f1958/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B3A00C1F783B6B557620CCDD597ECC04 : F0F72DB6E3D42266945A4D892AC8E7EB0EAB7F13 : 59BD9B16869B22725E68DF5F5EC0D37A944255ADDF306223F45649CE520AE916", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/59bd9b16869b22725e68df5f5ec0d37a944255addf306223f45649ce520ae916/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B4D4954BF6B3240F8A29385E3A953656 : B669EEE6F18CFCCB27CBD7D3901A5662BF11A373 : 024222C3DF0539E4B3C692F12CB284DCB285DE5299993E3F0CF64ED6899672C1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/024222c3df0539e4b3c692f12cb284dcb285de5299993e3f0cf64ed6899672c1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "CD1A9BED7103F565ED3EC235A5D77164 : 8C967CE54D160686A18D54A5DB69F43361A654B9 : F76AA9CA6286AF480FF10FDE0BE966BFABFF7B9E6472BA49CD8AD4CA2E50565D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f76aa9ca6286af480ff10fde0be966bfabff7b9e6472ba49cd8ad4ca2e50565d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "864B5F1075AD860CB8B60A6DE27DD8CA : E5C0ED55D8DDEEAF8E1544328EFEB9CB61E6F6F8 : 07564AD42D0843837E0D69986F990BB8B8C2F2D9DC4700486CB3A18561F2ADA7", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/07564ad42d0843837e0d69986f990bb8b8c2f2d9dc4700486cb3a18561f2ada7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F315D7DBBCC21EE4E447E37D560C33C1 : D68708C49935EA6E2C22F4B6A04229A665437190 : D74C77BA37AE407E76BAD0F4FDB1CEFA8D14468F0C7FA0344CE13E5A18B08227", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d74c77ba37ae407e76bad0f4fdb1cefa8d14468f0c7fa0344ce13e5a18b08227/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E8C8F0E2043DCED0C35304DBB9397A1F : DFAE0303B1F09AF93D62106909DC0BCC695D6F1B : F9F4DCC45EB91983AB0BD1002D170AF99F6EBB80F4E86B1BF8B3ECBE813C7D01", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f9f4dcc45eb91983ab0bd1002d170af99f6ebb80f4e86b1bf8b3ecbe813c7d01/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "48DBF89DB74B402A34501DECA9867BFD : 2F7DC6A438B4CCC54F72F9F78057561B055555F0 : 638EB43AE66CD0F07973E238F5288A9B035659639BF63E23203C806184C9628D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/638eb43ae66cd0f07973e238f5288a9b035659639bf63e23203c806184c9628d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E4F82F7FBDE4A9555265DB751669EA21 : 5D338A6073DFD93C67A60F8D2C076C7E01BEECCB : 955179D2B7E7C00E32D13712EB18C3FDFDF0E16A262F61927AB7D98D649B6F6B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/955179d2b7e7c00e32d13712eb18c3fdfdf0e16a262f61927ab7d98d649b6f6b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5907B1A81832DD012B835693DE5BDD86 : A02E9DDED21450A19E074D13898E88DDA8525D63 : A291934FA4E6C86E358B09ECCA70E2E139202C93F48D14CE930D2C7E19603BB6", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a291934fa4e6c86e358b09ecca70e2e139202c93f48d14ce930d2c7e19603bb6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EBE5BCDC7C24174F4F446126A5965F04 : A6CEA1674FC2503A0CB67A73E266202855750BC8 : FC7931A5F4C1FA6291AD4B99B26348396AFD17C6C7D4EAF303E40675247F27FB", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fc7931a5f4c1fa6291ad4b99b26348396afd17c6c7d4eaf303e40675247f27fb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "30F279F1D7931E55A7B4ACC0E89A3257 : 16123A567E90DC4D745C05924DE5F5913A55AF92 : 8A51451BC706A7AA86D3D9972BEE02ABE99840177CCA88A9468FBB923ADADBA1", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8a51451bc706a7aa86d3d9972bee02abe99840177cca88a9468fbb923adadba1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FAFCA7F5C8A6CC270C2C29FFE438AE78 : 91F649A75A6F7DD39EC3ACF04352D97C092C041C : B38F920F19FE99F65DA6274620F5804531AC5E4BD39022F33AF1CF07EC261379", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b38f920f19fe99f65da6274620f5804531ac5e4bd39022f33af1cf07ec261379/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4C9451B95C15B641A29F2D1C65E12954 : F85AA6D394F24F6EBEBE463C956F50484424CF3D : 2E6A72200FD5AC0E1F2476C8B0767C5EBE08844C34425975545B2809104FEE80", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2e6a72200fd5ac0e1f2476c8b0767c5ebe08844c34425975545b2809104fee80/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B3581F426DC500A51091CDD5BACF0454 : 8DE30174CEBC8732F1BA961E7D93FE5549495A80 : B4E5C2775DE098946B4E11ABA138B89D42B88C1DBD4D5EC879EF6919BF018132", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b4e5c2775de098946b4e11aba138b89d42b88c1dbd4d5ec879ef6919bf018132/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "78E959B4C64C14CBEE6215FE159A69A7 : FC8B04025745420E838DB9C3EA39D156E0C868D8 : 5D7D666D6AE18A86198E4259589BBEFBDDFF464D83330D89592EB647E4456A04", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5d7d666d6ae18a86198e4259589bbefbddff464d83330d89592eb647e4456a04/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9A997AF4A66FDA617388D57794283303 : 26F884802AC5175ADD07CC2457AF743AD3737CDE : CE0F55BB73E73D203E3F660079A7FDE58F8C737582EC8B6E72B7FC55390F84C2", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ce0f55bb73e73d203e3f660079a7fde58f8c737582ec8b6e72b7fc55390f84c2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C198FD45F5EE4697AF7249F5CE1E2FE1 : CCFF4EF2039EE229CD8834FE4508BD18225A128A : 6C1054613EA73AEE079428112BE9EC7DB7FA08228C9FC48D437BEE1286DA0146", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6c1054613ea73aee079428112be9ec7db7fa08228c9fc48d437bee1286da0146/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "195BC20D73506B76DD6A9E00AEB34827 : 27FB4082D567BD778926AA61A91632A479A4E068 : A6DB5C9B6BCB0B8085EE406572F3D529BE39B441F955FBDD74A582E784A2D226", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a6db5c9b6bcb0b8085ee406572f3d529be39b441f955fbdd74a582e784a2d226/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "FCF6D324B516D80C705164198E1014D2 : 01C239F67AD3C1F6E640DB84015A6075699653C5 : 3283D667ABA040858163C58C0C83B6487CE7DB88F6265AF022D4EE954BC3BDB2", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3283d667aba040858163c58c0c83b6487ce7db88f6265af022d4ee954bc3bdb2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "587617CC3A190F3C13D48E3320A42A12 : A52DB75E12EAAAAE1ECC960E762FD753CF00ED99 : 72669E6E222C8A833210F1163E35A05F25B863C96AF257CA7990AB1184105345", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/72669e6e222c8a833210f1163e35a05f25b863c96af257ca7990ab1184105345/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "748B61A09033FFAC71DFAFD1BB212E54 : 63C0CB74408C7E48389DBCAB44478EA6B494A0E7 : 64CB1A675FFCC0AD9754E9FCCE9DA1A905D79D272EE9A41135256F0BE01CAF14", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/64cb1a675ffcc0ad9754e9fcce9da1a905d79d272ee9a41135256f0be01caf14/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2BE46D9CE651474DBDCD1166B6DCE9E0 : 0DD78BE78A8F9A862AD14CBCE47D51CC5E43EBB9 : C45CB52A0B99E43D8F4819FC03E4739E458B7F87AC0EC5AA9F1968915CBEDCD7", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c45cb52a0b99e43d8f4819fc03e4739e458b7f87ac0ec5aa9f1968915cbedcd7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C1B1EC68B8D756162B0D146B3B6F743 : 54CC6DD97C7B982193201EAC79BEFA951A778A59 : 9665E00362B82A4B04B507A87ADC34D8F3B0E1D1B302F8AA6A4A011F1C8B51F6", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9665e00362b82a4b04b507a87adc34d8f3b0e1d1b302f8aa6a4a011f1c8b51f6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "8D3A90B9F067F0B139DB07ADEAD0A900 : 81F681BEF75B6C50477C0729B6207839CB31A934 : 732A084FD640585C900C0FC0B9C47989BB151C8777CA20B489D96C1044F38DBF", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/732a084fd640585c900c0fc0b9c47989bb151c8777ca20b489d96c1044f38dbf/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "54F3FAD61DB012EBE5F4517B1745DC8E : B13BE3CD3706F7C0A165264E211AAD43B9274621 : B7733E296CF831F904801228F2FC5133CEF03606AE0B51108A5904E40C84F317", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b7733e296cf831f904801228f2fc5133cef03606ae0b51108a5904e40c84f317/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C0DA1F349EA4B4583BC74BB1A1322D1A : BF9EEF2CF1387FA707B24EB13285C1091F1E729B : 8A2846560FFD187113405304B29300078B23A190DBF470B5223EAD86D15E8B19", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8a2846560ffd187113405304b29300078b23a190dbf470b5223ead86d15e8b19/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1DFB8953ABFC8FF72B763595D55A4854 : F3769213FB555273E08BD6AC7CFD57119DF850C8 : 6108D8265C6B7870C37818489B973C5016EDE133C9A71147471B2CF4248F7C79", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6108d8265c6b7870c37818489b973c5016ede133c9a71147471b2cf4248f7c79/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3308EBC00950E7DBC3D39AFC2F347ABB : 9F7767AF0891BA6C86B478FA4B79A7B3BE8CBE10 : 2EB48381BD2BEB1E6FE50D7BCAAEE607342E00DD7060884BDC8F07A6B4161EB1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2eb48381bd2beb1e6fe50d7bcaaee607342e00dd7060884bdc8f07a6b4161eb1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "98AA1D8FCD757F25504D929BAEBB2C41 : 5F0DF46086A62D44C8778F0D7FF6CC5729033E95 : 12A1B1E8ED432961A9AA8EAE0325CD83B8AED4CA23865FF00E5FB0711EFA40E5", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/12a1b1e8ed432961a9aa8eae0325cd83b8aed4ca23865ff00e5fb0711efa40e5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A9A5BF373E0B1725EB04FD7B678A48EE : D3D3CE9E1F74E59F03AFC948341EB2618AD882E6 : 743B6AA490B5CEADBA78E1F8E221C03948F141758A0F06794D4B909BF6354860", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/743b6aa490b5ceadba78e1f8e221c03948f141758a0f06794d4b909bf6354860/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D5EC32F7E70D6EB3B9D3DAB11A2AAB4B : 109E2DBE06A0FEFAD42428501CF0D60C884A9354 : 28267D1CE652526F6CB45B2476808341D75958326C2D8F6DF5DEB50615C7C66A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/28267d1ce652526f6cb45b2476808341d75958326c2d8f6df5deb50615c7c66a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "19F560CF335F6919242F3932470DAD12 : 4D3FB8B63364AF09387BC30D67DDE4C13CBEE010 : 014DEC974CFDC5A2BDEEB35724FADDD879F21DB2F88EB39161A71CCBB9CF4CB1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/014dec974cfdc5a2bdeeb35724faddd879f21db2f88eb39161a71ccbb9cf4cb1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E9FCF0BC7074F12628A64C86F121CF5B : 33CC33BE623997C15EB37B188F285328407D988A : A74F9FEA55BBFCBED79F23F5B366BE72CA45B20D8FF42811CA6346874C5A6E68", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a74f9fea55bbfcbed79f23f5b366be72ca45b20d8ff42811ca6346874c5a6e68/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0041681318C9F5507FCB71E3ED0ACBDA : ED3E86BDE861D310894E0A1916781AD6631363BF : 401CFD7696788FBB0D55C5CB9683B511554AF66337C654D962CD31576BE8AB78", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/401cfd7696788fbb0d55c5cb9683b511554af66337c654d962cd31576be8ab78/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "685667692FA02915505314F9BA030AD2 : 4C4E519F74B8EFE4FCC7A6B9BC80245563982236 : 8615AE27AB50A1FD9B6ED040513B813E82F351233D5265C01FA550F53FD6604E", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8615ae27ab50a1fd9b6ed040513b813e82f351233d5265c01fa550f53fd6604e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "BD0CC2CF2E099248592C5BA5489025E0 : 72C99FC933A165D3F9DD050EFEC8EC370EB967E0 : 4AD465B840CF7A5B5098806A97DD31846B1459FC592BB8021096B7392550389F", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4ad465b840cf7a5b5098806a97dd31846b1459fc592bb8021096b7392550389f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5E07CA24B1CEBDFAE704A8AE6CF7EAF : A05A9590A398AE9CE11CF459200D0E1533511607 : 46C3601DA09C65E3323F054B0402C21A79ABCFB78015978CE4A7266D998C5E3D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/46c3601da09c65e3323f054b0402c21a79abcfb78015978ce4a7266d998c5e3d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "53F88334A82BA6059789C4285FD53307 : 1B7D123CA56E87C153BE67941DF4A0249F6BC9E7 : 3F8C5A621FB2408C79D74596D721EF08E1360874B122F44E7F32CB15F97D9627", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3f8c5a621fb2408c79d74596d721ef08e1360874b122f44e7f32cb15f97d9627/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "68C50C3B04EAB46396B662A2DEE458E8 : 25856C65BB4CF05B9F3604C50BF75A2A2DC290FD : EB534ADFFB72B20045C6340136E1E7D4B98BBC23973C8A17E8AEC6F4C80F2755", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/eb534adffb72b20045c6340136e1e7d4b98bbc23973c8a17e8aec6f4c80f2755/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BD8CB75CD1D80A311D72DB68B7BDE770 : AD0C0F2FA80411788E81A4567D1D8758B83CD76E : 88F11ABDD3E82C4FF30C0B67D4AF73E10DF6F83D6CBE0CE4F94FC2B2EBC013B8", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/88f11abdd3e82c4ff30c0b67d4af73e10df6f83d6cbe0ce4f94fc2b2ebc013b8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "CC2D00D3348188B5CEC1BC442D0CF491 : FF2DE190DE4E25C398D3CAE8961CAAE8B82E20A9 : 56E7B9D7B6892A8A0F033B266B1F2AEDDA493950AB2105023670BEC27722735B", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/56e7b9d7b6892a8a0f033b266b1f2aedda493950ab2105023670bec27722735b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7002A8663400A81F41E6959E51494D10 : 6A449A1D2F6D171CCEBF763389189F685A4A97E2 : 2AD95C53334F632143792195883F966DDC55E7B0AFA1B8F52579070FB74B55FC", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2ad95c53334f632143792195883f966ddc55e7b0afa1b8f52579070fb74b55fc/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "06FA5B4186A3B7F7CCDD09D8BFBB299A : D7167DCC6BECCA6DA424D7D4D8EE70D9A5D75789 : 2002618E2D21EE0AE5AF3F0FD4272F55728AB4476DB64704177574DC0145E57C", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2002618e2d21ee0ae5af3f0fd4272f55728ab4476db64704177574dc0145e57c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F9D67D60850AA8359C968D1EEB710D32 : 07B2B7CD696807B4D0CE7E42D851F4361B766068 : 52D7B6FF31B70E341DF8F4087EE9B799A35E3DC20FA72D5F77EB01400DE17C05", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/52d7b6ff31b70e341df8f4087ee9b799a35e3dc20fa72d5f77eb01400de17c05/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4FCAEC3A9E9720ED17C16DB2421C9BD7 : 0908C49E9B5AB4C7B5E589AF7F337CB26372B744 : 48790B9A6C0005BF21753C4C872850EA05D283D71084EE5A0276E8577479174E", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/48790b9a6c0005bf21753c4c872850ea05d283d71084ee5a0276e8577479174e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7AB9FE909F12673C3DF0B117FA854E45 : A74325D42551F6FFC99271D03E27D22DC651B5B4 : FD16F41BEF4360348DD70E409771AE555E54A1800F0C2466C7B2F29F8983F4E1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fd16f41bef4360348dd70e409771ae555e54a1800f0c2466c7b2f29f8983f4e1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "898616BC98585306663EE6D268443002 : 65A3D1424E72F742751981EA0BFCCD928546D42F : 43EFBDE1CF605F308D0458586E9C47EED00B13596ED96029B89BA8FB3CF3AC1B", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/43efbde1cf605f308d0458586e9c47eed00b13596ed96029b89ba8fb3cf3ac1b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A6909B616553A94EB7F449566B9ACAD9 : 0DD1030E6265D4BB31D31D6511AB5FCAE28026E4 : D1FEDE0F530D4ACAD0B7234C602F2E01F451118133F8DD3C190D9C9D26B1E5B8", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d1fede0f530d4acad0b7234c602f2e01f451118133f8dd3c190d9c9d26b1e5b8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EA16B3A7ACA8C83942BDF83829BD95FD : 8E7D66E05BF82A07FFD7F20935F1C3BE4F70C41A : 5D113B693C53CB44C206C377BE4956C9154B8B1A44175CE59B5249DC39CF5F80", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5d113b693c53cb44c206c377be4956c9154b8b1a44175ce59b5249dc39cf5f80/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4BD4799ED62031CA3DC41F89F7F8FE25 : E721C59642682DB7A048B83FCE0C9A26080A4AC1 : FC7D12365F09C8C8B3F2E14F9D72C6F691A3890791A2600F183E0F58664AA6F4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fc7d12365f09c8c8b3f2e14f9d72c6f691a3890791a2600f183e0f58664aa6f4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA3E28CEFF1FE62E44AA8A85EBC336F1 : B9D244873AB16B9FBDF6A52F25D00B1E86EBCCD1 : 199396C4A3D9D1F80DDFF0623153FC7FF8351E02DDDF558CA807175108672E38", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/199396c4a3d9d1f80ddff0623153fc7ff8351e02dddf558ca807175108672e38/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "FD3A85919FB7890B8C58E5AF99731488 : AFAB4CB79F3E3F6C878CEA46960E928259813A24 : 277CB5FDECE9C1C0F0EC914193152DEBBC0DAF07F7C0542EB6D07D914728AE75", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/277cb5fdece9c1c0f0ec914193152debbc0daf07f7c0542eb6d07d914728ae75/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "74F44A858032D5A28F535B1C68DC39E0 : 606C4238DA3F0033BDB5A70D8C71A151585D4E20 : 08DCB605E3C7D4BADF64EEBBB7A3078F3B27E55821FB00B7CB34905C6F161FA5", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/08dcb605e3c7d4badf64eebbb7a3078f3b27e55821fb00b7cb34905c6f161fa5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1370F3CD3312B47F897B04035A6705ED : D50398A9D84FADF8954F184DB31A42C6B9095977 : BE1144195250199359C181CA7FCDE2B1D35DD1E0605FEA436C500067922E20A8", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/be1144195250199359c181ca7fcde2b1d35dd1e0605fea436c500067922e20a8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "9AB2F41800729616E12557307EA4A04C : 114129A0E938F0BA261DD80DE20B700851F2B51C : 172852271C79D2375330553926167CB31C111415DD52719A89211757BE57AB55", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/172852271c79d2375330553926167cb31c111415dd52719a89211757be57ab55/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "56BF4F99C49A7878B477CA6686C5E736 : 07C4C94A1A81D05FAB1DE3C89EB20DEBCA908D45 : DD7033544015C2B8FD08D6B325C673BB6C98D2E6D0F0E838D23DF312EADFB28A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dd7033544015c2b8fd08d6b325c673bb6c98d2e6d0f0e838d23df312eadfb28a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "C78C62EAB8C0D292AA4FC7EF0D1CEC1B : AB500F67EC8E1082C9CD2467A95C02F3A81BF20A : 65C68E250FF1023A5EB18107EA4F82DFC8AAD9F178E8A158938DEE2E4771A0C1", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/65c68e250ff1023a5eb18107ea4f82dfc8aad9f178e8a158938dee2e4771a0c1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "74CB85CD8E1A2CA199CAFA444D719396 : 2400AD80AD95B101002F29CE8B7C4223A35A9DB9 : 1022C8176652CDF24A7F954905ACC7C358CA34163EDF5B75B4BF3505C9C62828", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1022c8176652cdf24a7f954905acc7c358ca34163edf5b75b4bf3505c9c62828/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4017ADC09685A495EF1927B1716B6F79 : 891B8CAD104D240C44B33E8177B133D2147A481F : 8CBFD45B9937855FCA5092705B3E31D2BF2484D241BD6BD277C219CB8254E5EB", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8cbfd45b9937855fca5092705b3e31d2bf2484d241bd6bd277c219cb8254e5eb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2B3742E423AC0C5B7326E84B8FD58D72 : D1C888B029AC42C8FD3BC9E626142E9DAF435C35 : AF8D6B22B8C7E761C84A6BB80A3DB2A867C03EB8420D41C352BC4BCFD948D855", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/af8d6b22b8c7e761c84a6bb80a3db2a867c03eb8420d41c352bc4bcfd948d855/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1EE548D0E77CF0FBA526DE7D97B9315B : 3DB07AE94AB7578DE5E6EDDD179142DE330BBAEE : 760CA5D3B199C4D1CF65C82EC0010C13B2B460D924FD0026EC05F1D0197C9AC7", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/760ca5d3b199c4d1cf65c82ec0010c13b2b460d924fd0026ec05f1d0197c9ac7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3B4E92E6D2DEFDCFB1201610A472B6F8 : D3B78E8654B3F4D0611499C4CFD1A68406E85586 : DCA18AA9048DB669F93F80E3652397238A8079AC97185BEA153F790B512E6E50", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/dca18aa9048db669f93f80e3652397238a8079ac97185bea153f790b512e6e50/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "0D9CF419EC4848F4435038A96B1FAE9D : 168060AB77C43B19F6E89B726405D76539AAD471 : 61A221F9343472AF45DFF0FB9AFF61F49DF02EB5A10F55535943DB01598DAA88", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/61a221f9343472af45dff0fb9aff61f49df02eb5a10f55535943db01598daa88/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "544B523C16D300589A51A251B637398C : F75F00331BCAB22C6A7A8BF0012155FA8033D4C7 : 2F730DB64FB1BE666CC821BEE81422E6A701E660839B0732E036DEE7F5B07C0D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2f730db64fb1be666cc821bee81422e6a701e660839b0732e036dee7f5b07c0d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E7AB0581E23E57406A9B56EA8785EF6A : 9B96CA38E9303BC72DE4431ADA4CEF6DBEFCD9A1 : 8ACBB0AA18E03CE29483918FAAFD080918C222881068486C4418C6EE4A7F5BE5", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8acbb0aa18e03ce29483918faafd080918c222881068486c4418c6ee4a7f5be5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0B6DF12B2434E0282C2B6F027CE3E599 : 1534F9AE473A4E99C6BD0082A0710DE6B12E900E : 1DBB986F7475A2A58BC3BF81E4246D76BC8E69350AA3781CADD9A106E2E2FCB3", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1dbb986f7475a2a58bc3bf81e4246d76bc8e69350aa3781cadd9a106e2e2fcb3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "01924649190D5F73A039E295AF4728ED : 0880DFFC55970BEA0E9D0425CFF4AE71FF84F421 : B4F43473A4D3B2E2D687B1B5B158388F54A7CD80347CC8E04AC2D202F75A3198", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b4f43473a4d3b2e2d687b1b5b158388f54a7cd80347cc8e04ac2d202f75a3198/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "73A1ACA81D7B468B1BAC13314657FB32 : BBF43C85F00BB41AAA15EFE06C16B833D90A3CC0 : 1ED86E787F084B7BBCEEB37AEFAFF4FF6DDE0E961289952EA4A1D073518C4960", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1ed86e787f084b7bbceeb37aefaff4ff6dde0e961289952ea4a1d073518c4960/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "8ABDC20F619641E29AA9AD2B999A0DCC : CAAD125358D2AE6D217E74CFCD175AC81C43C729 : CDC95D0113A2AF05C2E70FAB23F6C218AE583EBCB47077DD5B705A476F9D6B96", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cdc95d0113a2af05c2e70fab23f6c218ae583ebcb47077dd5b705a476f9d6b96/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BAD767D1589AE3207880F8481CB06257 : 5CD42F6CFC8FF285203A6A89CACA2AB5033C6406 : 78A581B6FA36594EECE7CCAE3E5D34C0EEEAEDC7A66607F7D3C216177F8AD418", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/78a581b6fa36594eece7ccae3e5d34c0eeeaedc7a66607f7d3c216177f8ad418/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "2B98F1E42539300D1A667236EFBCD832 : 352F2AEB574D756D9DD9BD6B60E7182F541588B1 : 17C8B59D0B0A794970B014435A75BE31E5EAE776FE69672EF03618869ED92817", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/17c8b59d0b0a794970b014435a75be31e5eae776fe69672ef03618869ed92817/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0B8AC16284EE0E67DE3EFC23BEB2C96E : A6864B691D736143EA156EC5C305E3ED49078E90 : 64D890AA90F52513EADD1E804A18ED3D33A0C14AB4C6994892DEFD3E4EAF52EE", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/64d890aa90f52513eadd1e804a18ed3d33a0c14ab4c6994892defd3e4eaf52ee/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3D89699DE94690DF02FA5EB8D3F92741 : 5E86B86ADA8B2CB39F6B31306C1090D41D7797B1 : 266AAD0852697363604E637789291D46A552531739A69D36E7D63FB9A464EABE", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/266aad0852697363604e637789291d46a552531739a69d36e7d63fb9a464eabe/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "15E3D8F6CA653D345B9061DC3E7B9981 : 9508A1F04408B54F080BC26F071AD2C3C3DF7910 : 1787EEAD7D6BB0D581139B941474E8C0A5B3C182EF653CAC7D527B64D82D2CEF", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1787eead7d6bb0d581139b941474e8c0a5b3c182ef653cac7d527b64d82d2cef/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "D1C46FF311268703941EC4CFC4B17C21 : FA47CD6D4A995303771A81336CF9F67BFDE7EDB9 : FA62A3B1AE968B31122B5D2AC6C7E0F017D83B0D5B48C49514F7DB865BCD6181", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fa62a3b1ae968b31122b5d2ac6c7e0f017d83b0d5b48c49514f7db865bcd6181/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "ED7F89686155800BC9EFF241DE350DDD : AC508871FA45B6FFF14F6B16CCA01AF148E46531 : EE6ECA5C67DD4FB99B4206792B2BAAF13E4FB0DD96D7EB9E9E3D3F980B021D73", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ee6eca5c67dd4fb99b4206792b2baaf13e4fb0dd96d7eb9e9e3d3f980b021d73/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4B4B61BEDD1BF7F40075A6E6EB422A21 : CBFB8ACAA41159A0D60FF3C36BA076DA35A05439 : AB1415768AC600B7EDD971D530E64B2D6E0307B47E842FAEB484423432BD4529", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ab1415768ac600b7edd971d530e64b2d6e0307b47e842faeb484423432bd4529/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "57208FAA01AFAE94837514A3ECC2C6B9 : D950CB896AECB8DD61FFD2DC01FD7EAE961F9AD5 : 3DCBE31BFDB0ECFCBCFB690910EDF19DBB20CAC1AD4CAEBE853FF9A74D666D4A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3dcbe31bfdb0ecfcbcfb690910edf19dbb20cac1ad4caebe853ff9a74d666d4a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0B40D3EA2040552BD47CD9FF37205730 : 51C86DC5AEFA0E06DB1201BA2F8F3B80B767C86C : 792C9A4A69A5AC257A719ED689029016DD0401F81C36777D935BF643FEC15569", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/792c9a4a69a5ac257a719ed689029016dd0401f81c36777d935bf643fec15569/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B05607D002F2B1BC1F95F35B3C0BC36E : 004C934AB776D080504E316FCE2F1086523D1886 : 1515B2BA5E675739F5FBA0A0FE906C39AB3C74FEA8708A8C43E95EB769AE58D5", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1515b2ba5e675739f5fba0a0fe906c39ab3c74fea8708a8c43e95eb769ae58d5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A9AE87AE456F4414FB212560C0469518 : 4E69CE04E17B53D08B0F63101B841EFBD5C051A2 : 07EB4FDF7ECA6F1FDC8E8EE49E3056AC0E52D5BE6800FF31813498CC73D8B9D8", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/07eb4fdf7eca6f1fdc8e8ee49e3056ac0e52d5be6800ff31813498cc73d8b9d8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D806101B39480249DACA1A30AB746E78 : 00F57C21A1754A106969C9944212D1C1F5BC710D : 44F278ABFE5B2EC3BAE8CCDF2DF9B118948D4CB133A813F2287ACC9E2650D589", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/44f278abfe5b2ec3bae8ccdf2df9b118948d4cb133a813f2287acc9e2650d589/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "104E435C57D4BDC450E0BA0BCF11246B : 45FB5461F113E285B9DB2587A45C53C20E3ED5CE : 656B8A7973B032130922567FAB777E3A177359092FA305FE2E3AE8D271E1804C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/656b8a7973b032130922567fab777e3a177359092fa305fe2e3ae8d271e1804c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "9C74F9F27337328ABC04BDF36BD1F18A : E74B5218CB9E989DA8E23B8F9CFE7472B9DC5388 : 9AB793921496E6C4963F2CC924D99EFCE8A34674981FCA057EB64FB62E29DB28", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9ab793921496e6c4963f2cc924d99efce8a34674981fca057eb64fb62e29db28/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F08229CDC7EF91E8C7171EA4E9F5FABD : 02741BE65E443298A2EE31AAA4AEE182F5C3A5D4 : A56568E485DAC50F2EC5D4EB0B49E7C9DFC1D51FF518ED344389220C58154113", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a56568e485dac50f2ec5d4eb0b49e7c9dfc1d51ff518ed344389220c58154113/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "5ADD8EC2FC64CD7256AEF1C03C4B7647", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4AE784F5D57A78D73D5453BE1497417E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "484E75AFDAE2DD969A463B06AA57D0BA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CB254CDAC2E2F617B8866C39A3E4F8C6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "277C726CDDC87A773FFBD9B463263490", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1470661621CBB48FD4C320EE375BC3C6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "79485F0E99104C001E28A5B294B19F26", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "79FA6AB8704F274EC9EBF39E51FE036A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "20A3886F80980E2F31B32A4097503028", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B8AAAA34BE21A5AB1E53B63D9F7C9764", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9027C11900DE0348BE10FBED518F7C08", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "498EB4571F9C952E1472D64A5292CD29", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4186792E0C3E04CC51A426918F5FB34C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1E07A1C587002E2E8672256356863A01", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0129EA22668988477B48F3E0674A52A7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "06878B7EDC008DCA6961835588405C9F", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8A88CAAB209874A014599B8B1DD49B62", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "48045006A884C07B2BFFE6D0BBA6F61F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A6A26C5CDC6D4279FEC9FB7EDFDC02D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2444DA79E934C372D291627CA259705F", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2F56D2DF9460F2E1755DC60D08DC7802", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "098379217DB5D7AE5DCD05424FE2B611", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6F631FA549B37004F87859469BB8C4BA", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "220AC2AEEBC75ED0DBDE6C4E39712D1F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "29CD7C863A0FE4FAA43216B822BEED7F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "327B1EF4C2CDEEB0F541194FF87E097B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16EB0B6684DBB711360538026373BCDF", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6BFCDC4B4114C2E70C62F1E2D61BB02E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5D1F6031B5B9B448B36910F08129E0D6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0EBC77106863FBC6493B1801BB56A34D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2C3E5B84BF11AD3F0D296BB2C7A10A0C", + "Organization": "ThreatExpert Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "78315E8173945A21D6107188A0E9279C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2555E913ADA4DE644DA0E5FEA5943028", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "07D4037F35C2AC4822FFABD6B8AE467A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E225B8018FB668797FD6CBE371AEFD0", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A6901EFB2F81E3F3DEECB3A64DF98F0F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "283E7A138496BCC538D805AC022C3805", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "00531D249E417069E67A610C20C57DA1", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "46E6AB82AFF49AEF51AC7E7039061741", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1126B1FBA761B893F5CDBD87B24BA046", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DFE73689E60BABAB68FC158B2869A55", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1FFE94FDF017E393B33B439F4903674C", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16407B061B49EC6BCC1675E4087D9E83", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "18AC5AD47C801EEB2549736D756380DC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1F3C92A0393B07A97BA209C614E79D4B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C67D28908D60EC6089AF663581BAC320", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "05A540AD5F08B836270864C2B23B9385", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1AD105736E523097B5B1ABBB770110FA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "62EE664D4DA302D7C8088363BD5B5C91", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "291E4FF9FCFD9481FC6F81A512FA7F06", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A185B0E8DE6CBE2E712256F892C46A8F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "049AFBD9626F2746330A5DEB302A239F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A7255403AF63B2145B9756C1A94C2030", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2B859C93CD27BA9DDA38A8127C45CA6C", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7ED15306689A6CE28D857A696FA28550", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4F6759DD87F64F7E2C80892E8076BB04", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "438E1BCEB3463715B6EC7F68AEBEA27D", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "115AFEC5043F9376F8CB6E74EEC6D09F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AD1C1065DC6BDA246675BAFEE0D43504", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2C75E8A7AA59C5DB78887974094A5CF4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "04586C5DD5A77619221EDA3D8CF06F52", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19AF62EA3EF7A8D8FE8F5747B14D6825", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19B75577C4EDC82F2A623588610088A6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B00A40FF9E8DD9FF91E0968F30DE9F63", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1130937B82EB2E8CCD05E31F0908CC19", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "225EE75DA110CB3381614198695AF486", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E1528A743FA683D8C7F3248E15E0CE7A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11751CA027A44C4CF783A8E4F7EE49B3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "056CE2A6A8ECF42E1CCC074289E05A23", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "91A52A0471CE1C170486F71807B730C3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1D2BC8F1E097691D4D8D268F62C87A3A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1DCC9E55DCCF0DC34361326639AAE5C1", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1C866449F51582B0C7E4AD072EE6E0CD", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4CCB71433BE57ADA820EC5F1FE234A9D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8C3F8ACADEF2D64C206B76CF79865396", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C4B68F0B5E20447DC31811E430A5F4D8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0332DB3E477E1C518A791860C8BE26BF", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2B6DCCBED7343CBED848BACEF5483478", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "022A66C9AAE35C8B931EB859B6F82E30", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C1B970CB8B4A7BF03816E36AA576D115", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "54F05E9E2509CBEF4E8063584DFD22CC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A8D8F9C488CD7DCBF0DA1E14C2B8A35C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "04F883CC0066E9E9AC13FF6A37F54894", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "43EABAC06970359957E96D90CF63B580", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5E45360BCAB61E124ED28442F7F01F8F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F61D58B2F468AD468168B8BC7A570991", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C335AD93509217756C8B088C5C55605", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "41D10F14CC31BDC14CE631018B16F267", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3F367B4D105B5E45AD91D13AD955FAA2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2C77E8B879D7B17A4204E45DC1E95561", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14C921D5E492EB06DA36801EDC2E954F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9FD6500507BAF87AEE7DA9FA1724AB7F", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1EAB0B6C59476217DF32838B832C2A61", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "85607A7E21909D7A2B809BCA79EF047E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2545F787B8D72C2CFD41AC5B7720B5D3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FCF4DFD946D471C83F36EACD48C05E0C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4087B2DA7F539BDF5259FBF54005FF0B", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "05E224E7BD162F9A10CDEBF83FAE2636", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3C05F54C2D46D9257980E45C84D98D0B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "414F9E7247096AB4FAE642B7A64B68F3", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "95D914E391B0BDB17730984359C82C52", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "135F3F143413EF34CC1B31397C6C55C7", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C3577FE70533B9439D9A90A4665D1A4F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7654B2A677E82B39B5EA965A12A2AFA8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7654b2a677e82b39b5ea965a12a2afa8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "73541267506A45B74AE120B1B302E555", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/73541267506a45b74ae120b1b302e555", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CEB25BFD9D2B8BB1EE500B5CDC482E08", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ceb25bfd9d2b8bb1ee500b5cdc482e08", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3F36B2417B9C7401EA9C2CF5129B25F6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3f36b2417b9c7401ea9c2cf5129b25f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "84ECEA5B8923CA8AF57D4860D5A840D5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/84ecea5b8923ca8af57d4860d5a840d5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E2F629651F92B4C437C29A3F8BA2FB10", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e2f629651f92b4c437c29a3f8ba2fb10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6F371E174A5E8FCB305BF47BBDFB6927", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6f371e174a5e8fcb305bf47bbdfb6927", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "83C9F49A42310096094D01B790B07791", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/83c9f49a42310096094d01b790b07791", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "98BD6DBD64626D719F78AFFA0D9C34C6", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/98bd6dbd64626d719f78affa0d9c34c6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1624FDA40C2E68242209BEA3317E702A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1624fda40c2e68242209bea3317e702a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1FED03FF81A8AE9A696863CC83E4312D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1fed03ff81a8ae9a696863cc83e4312d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8E0F4FCF86B0C4960003CFF447525483", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8e0f4fcf86b0c4960003cff447525483", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2BDE7C7FFA3D14076EE150D97614B43E", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2bde7c7ffa3d14076ee150d97614b43e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2CE1FA04C6AC356C1B5ABEBB4464B121", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2ce1fa04c6ac356c1b5abebb4464b121", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "590D4D291BFA57523B54473319E615D0", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/590d4d291bfa57523b54473319e615d0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FA71D5728E5CC46B6A2626372E0BA855", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fa71d5728e5cc46b6a2626372e0ba855", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "591B7411A6F44D1F84FF7A19149E936F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/591b7411a6f44d1f84ff7a19149e936f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AF545E4788053DE4ABA0282594CFEC7D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/af545e4788053de4aba0282594cfec7d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "67E5EA2DC8CFB3389A7EC92BA0EFC711", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/67e5ea2dc8cfb3389a7ec92ba0efc711", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9615B7125EDC76687EE7E602E9A7A4E7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9615b7125edc76687ee7e602e9a7a4e7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B23D528A5FE93B909B543BAE25BFE34C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b23d528a5fe93b909b543bae25bfe34c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8DC16A11E2C02FA0BB404CEC6B898117", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8dc16a11e2c02fa0bb404cec6b898117", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C0DE6A266B13CF6D794E376EE3EA7D42", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c0de6a266b13cf6d794e376ee3ea7d42", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "97D259ECE831C2B6CC647D3D88203305", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/97d259ece831c2b6cc647d3d88203305", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A9422EB9B3DEE24A65C10828DD000FF7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a9422eb9b3dee24a65c10828dd000ff7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "888E92A508C5D84CE93EAF02BEC5AC3B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/888e92a508c5d84ce93eaf02bec5ac3b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6D14E66DA31333FA5A2841CAB1A8773D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6d14e66da31333fa5a2841cab1a8773d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C100B40BF6BE66631D95D3A162D4AF67", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c100b40bf6be66631d95d3a162d4af67", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7C1B78AA1F3826AE0DA0FCD6C0790BE4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7c1b78aa1f3826ae0da0fcd6c0790be4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "987A510BEE2C068265215055F1AB4FFA", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/987a510bee2c068265215055f1ab4ffa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6DE6F142A2D425D7AD532C6E01B10D9F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6de6f142a2d425d7ad532c6e01b10d9f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "43548BE15173368702E0AEFC8C7AEC18", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/43548be15173368702e0aefc8c7aec18", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5D546811CEF38CDE8087A3A2B22CC1F2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5d546811cef38cde8087a3a2b22cc1f2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "40446261C4308A06FF86E614340FC8BE", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 100, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/40446261c4308a06ff86e614340fc8be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E76A46F8E7AC352CCBBD612E96BE9730", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e76a46f8e7ac352ccbbd612e96be9730", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6073C51689E07866A98E3DE3BFAF45C5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6073c51689e07866a98e3de3bfaf45c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "80451B14604EDF7294CBCB631D962CAE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/80451b14604edf7294cbcb631d962cae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "CFE6E54AE835F109D8B04B56308C3EC0", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cfe6e54ae835f109d8b04b56308c3ec0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B6D5D3C1CFD86A6498D180A5CDFC136A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b6d5d3c1cfd86a6498d180a5cdfc136a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5DB8A34C8410CC3692EE5377241DCAF1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5db8a34c8410cc3692ee5377241dcaf1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "437803F0B7E66FCA747B29ED4C1C9C22", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/437803f0b7e66fca747b29ed4c1c9c22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E1A85EFB73C14B09909D264B945B670E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e1a85efb73c14b09909d264b945b670e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "87E61B70267CE2E0EE51D47F9EC5507F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/87e61b70267ce2e0ee51d47f9ec5507f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7273482362A3DE9464B3F11E5969B9AC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7273482362a3de9464b3f11e5969b9ac", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B1CDD80F00EFC73ECDD4CC8823D85916", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b1cdd80f00efc73ecdd4cc8823d85916", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "910109430C2CEDFC8F62A77AB6F1583D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/910109430c2cedfc8f62a77ab6f1583d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "949CD8600CAC40BF422EF70ED5E6A71D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/949cd8600cac40bf422ef70ed5e6a71d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "79E9264473B33D00B9ABB9504ABC6D0B", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/79e9264473b33d00b9abb9504abc6d0b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "ED7DD2D414EBD8C030B309638FE97D95", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ed7dd2d414ebd8c030b309638fe97d95", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3A992F92415ABFDFB48604BE4E2AE323", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3a992f92415abfdfb48604be4e2ae323", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7858428895AB340C42812A01ACF34B9B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7858428895ab340c42812a01acf34b9b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FD87E1B7DC47C4F5261F011EA4D5301D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fd87e1b7dc47c4f5261f011ea4d5301d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A1718212FCBC1C0323D57D85ADA101E6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a1718212fcbc1c0323d57d85ada101e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6F253D7628D6A72029D479C60FF7A9DB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6f253d7628d6a72029d479c60ff7a9db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "18A36ABE16B0351E8A6638D78D8C03DD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/18a36abe16b0351e8a6638d78d8c03dd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A0C410DE72E5714BEF6F7A43E8F0E3D7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a0c410de72e5714bef6f7a43e8f0e3d7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "00460C96536971305734D2CA6D432E3D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/00460c96536971305734d2ca6d432e3d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FC3EBE3E3525CE719195ACFFC4F2C1FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fc3ebe3e3525ce719195acffc4f2c1fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "092EDE5818BAC8DF99E1EF3921F97F72", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/092ede5818bac8df99e1ef3921f97f72", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EDC2579D5709B8FE6E1FAEA69852FCFB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/edc2579d5709b8fe6e1faea69852fcfb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A69BE69700F040506A92D2F16852881E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a69be69700f040506a92d2f16852881e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "25C82A3E8CC35205E7F05FB87EA5871C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/25c82a3e8cc35205e7f05fb87ea5871c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4E3CBD695D69A3A44E55888C139D2479", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e3cbd695d69a3a44e55888c139d2479", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3BEF4797B0AFFF58E497B346ECEECAC9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3bef4797b0afff58e497b346eceecac9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7AD377210EDCA2F58CCAC5D89F38B9A5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7ad377210edca2f58ccac5d89f38b9a5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A173D6F2E81AF995D71AA97C9E3F37EA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a173d6f2e81af995d71aa97c9e3f37ea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1282AA13FE4DA9055E5DFCDBA6C05866", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1282aa13fe4da9055e5dfcdba6c05866", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "585B11DA93C8A73DCC2C8D35825E7F7B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/585b11da93c8a73dcc2c8d35825e7f7b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1CCBD5F4ED8E638FB10ED15032520430", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1ccbd5f4ed8e638fb10ed15032520430", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BE52F772029BCE686BC4DF33F299366F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be52f772029bce686bc4df33f299366f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6C444165ECD939D29B48F115E4F972BA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6c444165ecd939d29b48f115e4f972ba", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F455EDBFF3E21A25F31DB484C4329074", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f455edbff3e21a25f31db484c4329074", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AD4EAD0AA9628534585ACF46CF3B7256", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ad4ead0aa9628534585acf46cf3b7256", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "20078FD9A93EF96859C64665B6C60A8A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/20078fd9a93ef96859c64665b6c60a8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B15E9159EE5BF05B740B920209042E01", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b15e9159ee5bf05b740b920209042e01", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "621E5CB40616497B960729CA2102E33E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/621e5cb40616497b960729ca2102e33e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "47B9D84D167D716BBA12760615064F37", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/47b9d84d167d716bba12760615064f37", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1D5F40BA89A7848D440AAC3F5B72E397", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1d5f40ba89a7848d440aac3f5b72e397", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7DF77A41FE1E06664690438B07ACD1C9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7df77a41fe1e06664690438b07acd1c9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5F27F62EABCD11518112EA99DE02BEF7", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f27f62eabcd11518112ea99de02bef7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "9C3A957EBCC7D5C094DA126FD55AFF49", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9c3a957ebcc7d5c094da126fd55aff49", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "72C4AEAB33480EED941E7D97E5A74473", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/72c4aeab33480eed941e7d97e5a74473", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F0E08878FA2F93CAACCDF518636F1EEC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f0e08878fa2f93caaccdf518636f1eec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "175A4A7A13C01869C083BF19D845CE82", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/175a4a7a13c01869c083bf19d845ce82", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F228999028B9B03F225D95DA41893AD9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f228999028b9b03f225d95da41893ad9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "07CFB1CBDC749DDD9CD4644840F16167", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/07cfb1cbdc749ddd9cd4644840f16167", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0C3DEB8C545A2C4D8F84278234CEC3A2", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0c3deb8c545a2c4d8f84278234cec3a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1AA13DB05A7259E2BBFE82EEBD519150", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1aa13db05a7259e2bbfe82eebd519150", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7915ACFD42EF9F141EE9FF7AB10038B4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7915acfd42ef9f141ee9ff7ab10038b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1A5099F78EB4D3B1990899411C67148C", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1a5099f78eb4d3b1990899411c67148c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2F5C1921F2D094282EFA4EF98851FEE0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2f5c1921f2d094282efa4ef98851fee0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "995F60F07870C67CC341A75671F7C184", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/995f60f07870c67cc341a75671f7c184", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5E943E9E2A73AC9FCF26E3F5F6CA89A8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5e943e9e2a73ac9fcf26e3f5f6ca89a8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "55E6C7004ED8060DAAE6874424870184", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/55e6c7004ed8060daae6874424870184", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EE514C434050A8C04A8D6B91E010096C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ee514c434050a8c04a8d6b91e010096c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3798E15050387425F0376FDF186921D7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3798e15050387425f0376fdf186921d7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F92A72B4850D5D15CE5B9208AAD7DB6A", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f92a72b4850d5d15ce5b9208aad7db6a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F7CA5924EE05763E5ADD5144736D6B28", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f7ca5924ee05763e5add5144736d6b28", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "30F3249B84CCB316D7399281948D7130", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/30f3249b84ccb316d7399281948d7130", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3E80CAE756F20699E5634B15B98A5C2F", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3e80cae756f20699e5634b15b98a5c2f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EBF52064854195F23C86EDE3683EB5B4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ebf52064854195f23c86ede3683eb5b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "076065F71620E1B48EB3D2669DCE4011", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/076065f71620e1b48eb3d2669dce4011", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D1FD43D582EEAE7417896855612F230A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d1fd43d582eeae7417896855612f230a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0AC2993F0ED4F081561A082319467329", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0ac2993f0ed4f081561a082319467329", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7B44EA8BD26998CDB14524F9C1CE6F27", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7b44ea8bd26998cdb14524f9c1ce6f27", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D44A41867CF4F6252B1B41E77036AF53", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d44a41867cf4f6252b1b41e77036af53", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D155E065F4C186487D9251BE4003E8BF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d155e065f4c186487d9251be4003e8bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "428098F5CBC5E915DD9CFED747968963", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/428098f5cbc5e915dd9cfed747968963", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "6AB9877888BDCAB481C2E96973CA593C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6ab9877888bdcab481c2e96973ca593c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D5D9B3F1FEDDC78F5D9B52487907594B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d5d9b3f1feddc78f5d9b52487907594b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8223B880C67F636FF8DF0F70F9196D84", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8223b880c67f636ff8df0f70f9196d84", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EC75388AE8BF3C5DB57D3B318808751A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec75388ae8bf3c5db57d3b318808751a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E38D779B7489A06D035B4A1E75F95845", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e38d779b7489a06d035b4a1e75f95845", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "796ABA8347AC7AF632C0439CB7317197", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/796aba8347ac7af632c0439cb7317197", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "545300E7FC03E5F5CB225ED9B01EBCEC", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/545300e7fc03e5f5cb225ed9b01ebcec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2891C20F87F2D21EBD11C22389E1271C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2891c20f87f2d21ebd11c22389e1271c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "45CD732931C236B4E1073149622F821F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45cd732931c236b4e1073149622f821f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "99ED1ED7248C18D1B2203EC1F11E170C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/99ed1ed7248c18d1b2203ec1f11e170c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "452A589414E07F1BEAF47E4086ECD8E6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/452a589414e07f1beaf47e4086ecd8e6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0F5D1C65A08CB89CE8E7F431270F901B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0f5d1c65a08cb89ce8e7f431270f901b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3F180CE1426CD19EE9B291433616AA94", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3f180ce1426cd19ee9b291433616aa94", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "AAF35CD4572E08F57E6D659DAD3AAC6F", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aaf35cd4572e08f57e6d659dad3aac6f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C1132D8F3BC6EBAC0F023326A7EA9271", + "Organization": "SARVAM Source", + "Rating": 1, + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c1132d8f3bc6ebac0f023326a7ea9271", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "137EFEFB706DAF5D5CB2D48EBDE62070", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/137efefb706daf5d5cb2d48ebde62070", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6731583D69A71D42EEDF2A5CCE3946BD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6731583d69a71d42eedf2a5cce3946bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "71499B90FBFBDC7FE39A6A22927AB0D6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/71499b90fbfbdc7fe39a6a22927ab0d6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FE98C50ACA8385AA8E3ECC6A5D894F97", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fe98c50aca8385aa8e3ecc6a5d894f97", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "7E6A7E744066EB09D01C5DC5869463F9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7e6a7e744066eb09d01c5dc5869463f9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C60FA277A5CCF6B2E8BD99199CA9A320", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c60fa277a5ccf6b2e8bd99199ca9a320", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F4AF1496058BC6E3A0E546167F9A45B1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f4af1496058bc6e3a0e546167f9a45b1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4BB602365C628B605FACD30B43CF8922", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4bb602365c628b605facd30b43cf8922", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "633930A11DF529C4B20ABA6019D2D4B3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/633930a11df529c4b20aba6019d2d4b3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7ED982210BC05E24B686392C76E1F472", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7ed982210bc05e24b686392c76e1f472", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "425E111A49A17A3D19AFC15AE397EC9C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/425e111a49a17a3d19afc15ae397ec9c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "794050A784B746EBD81557EAC4888DC8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/794050a784b746ebd81557eac4888dc8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D59306011A85DC46A267FBBFE2F58E02", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d59306011a85dc46a267fbbfe2f58e02", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BBB9C3EFB404CD5BADEA26BA025D2227", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bbb9c3efb404cd5badea26ba025d2227", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "24281F84C5521204E4454207F3BECF96", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/24281f84c5521204e4454207f3becf96", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3E548A172D0A41EFDF6703F4FE614746", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3e548a172d0a41efdf6703f4fe614746", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "46D698FB8AC49BBF4393FD251021CDAF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/46d698fb8ac49bbf4393fd251021cdaf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3560CA052A4532578C0EA11870D7DFE4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3560ca052a4532578c0ea11870d7dfe4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "73A1ACA81D7B468B1BAC13314657FB32", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/73a1aca81d7b468b1bac13314657fb32", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "62482405B37A9A716FFCC2BA78740A0C", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/62482405b37a9a716ffcc2ba78740a0c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "768BF6AA974D6C631873B82F2C3F10B4", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/768bf6aa974d6c631873b82f2c3f10b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "139B4A3E29572327894C8F5F51B3D30B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/139b4a3e29572327894c8f5f51b3d30b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A2751A33CC98D668052C089EFB97AF11", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a2751a33cc98d668052c089efb97af11", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A0287CE9011F8919F544D0769EB459F1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a0287ce9011f8919f544d0769eb459f1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "673D82DBDEC2C707C51B641672B618BF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/673d82dbdec2c707c51b641672b618bf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "685D3A70D6EBDCE78AB6E18E90DAD373", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/685d3a70d6ebdce78ab6e18e90dad373", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F6EC928FCB3DF67E7145B05FF8B08891", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f6ec928fcb3df67e7145b05ff8b08891", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "996E711762DE33D70E63DCF3B727DFD8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/996e711762de33d70e63dcf3b727dfd8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F43BB898B826C41E38C0FF18D2234BDC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f43bb898b826c41e38c0ff18d2234bdc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "21AEFE0F91FDA0283C148E214EA170B2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/21aefe0f91fda0283c148e214ea170b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "30A15776313808F88810A7961DBBF0CF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/30a15776313808f88810a7961dbbf0cf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "75A87A14EE1442388F39BF4041DA8A10", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/75a87a14ee1442388f39bf4041da8a10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A2C3993333B7F94C7BEF325A1722C52D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a2c3993333b7f94c7bef325a1722c52d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4D3BCE9C644C57CE3DF8CC3DF60E8A28", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4d3bce9c644c57ce3df8cc3df60e8a28", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C673975AE1E5B4B3C05D30F240ED8905", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c673975ae1e5b4b3c05d30f240ed8905", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9F83817AB31E3453DADCFF9071689D50", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9f83817ab31e3453dadcff9071689d50", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "741157106873CA6C36E29FDD474E7461", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/741157106873ca6c36e29fdd474e7461", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4C899CF62A51EEB9D4EDE7549854F948", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4c899cf62a51eeb9d4ede7549854f948", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "86E15A868A1D841237F9842425CDF792", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/86e15a868a1d841237f9842425cdf792", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E7C1121B24D008DAA5ED5BA0944C1B54", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e7c1121b24d008daa5ed5ba0944c1b54", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "946622310A27B018F0078F585F323177", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/946622310a27b018f0078f585f323177", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3D3E6BDBDAC8F75BDAF7A4DF98136FD7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d3e6bdbdac8f75bdaf7a4df98136fd7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F13B4EE093500309054EC40807660890", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f13b4ee093500309054ec40807660890", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E8930C16F3CD4DDE6337A41152771911", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e8930c16f3cd4dde6337a41152771911", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "390132B3A9F4B94957A7841EBBA4C754", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/390132b3a9f4b94957a7841ebba4c754", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CE44328EF6650B60F6E35C9821CF73C4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ce44328ef6650b60f6e35c9821cf73c4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2BB421519358662FC1BD4742BA837D97", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2bb421519358662fc1bd4742ba837d97", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AA57137B4B884347F9C4AB92DC1DF392", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aa57137b4b884347f9c4ab92dc1df392", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9CA42947D77737E75F00AF1F4D0D276F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9ca42947d77737e75f00af1f4d0d276f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D885A6087E922443C0231FE97F081A94", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d885a6087e922443c0231fe97f081a94", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F1BFFF850E68B13C2B668D85DBF65850", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f1bfff850e68b13c2b668d85dbf65850", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "15D4EFF531E900D596CACD32C51BA6BA", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/15d4eff531e900d596cacd32c51ba6ba", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "1DC597CDD79E3487B31CD7FE65B093DE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1dc597cdd79e3487b31cd7fe65b093de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "09571F3A0ECC5BC4D952D65876CA158A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/09571f3a0ecc5bc4d952d65876ca158a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F2DF7CBB3ADC677AC0F5E57C548A4D5A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f2df7cbb3adc677ac0f5e57c548a4d5a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4887A3716F03F3B437DCA4DE45E19935", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4887a3716f03f3b437dca4de45e19935", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D36D6A9780E24903616008E35BCE4416", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d36d6a9780e24903616008e35bce4416", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A0C5CC06F6E5E9FB6DA7529A02331972", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 2, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a0c5cc06f6e5e9fb6da7529a02331972", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "BFF0D14FFA8C895394647A58C680B7C6", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bff0d14ffa8c895394647a58c680b7c6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E2B699816DFCF5E4FCB80FCBE7B0B22A", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e2b699816dfcf5e4fcb80fcbe7b0b22a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "D6916A5619C826FEF4E66408E7A1E401", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d6916a5619c826fef4e66408e7a1e401", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2742C1AE44429800EB4014C42F35FF50", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2742c1ae44429800eb4014c42f35ff50", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5235D31B042D9E131F7578DDC1F6B7FE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5235d31b042d9e131f7578ddc1f6b7fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AB38D2D8940BD71FF3078BCC14DD53B1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ab38d2d8940bd71ff3078bcc14dd53b1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "624A723BFE38AACEE8522BCE0F853DDF", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/624a723bfe38aacee8522bce0f853ddf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "A387B3801F84275D481280083A073F8A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a387b3801f84275d481280083a073f8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6FB91E74FC1E1A8BA251A2894B4024CE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6fb91e74fc1e1a8ba251a2894b4024ce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "56FC972846E0A7A9B43BE1A191BF3738", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/56fc972846e0a7a9b43be1a191bf3738", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "28B4A29A42D2C9E65805E4B4DE0F968B", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-07-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/b142c9c877d7d8924dccf6e1733f84d9f781393bf39a2bb54386c4b761f2780c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7DC879334936D22C5546C1B7B3621959 : CFF1F20EA4335DD2D01CA2764B3A4188F5BB2543 : 74EF5A35DBF3246C8CAD38D7B326366EF6C2E08D4D3A0DCFEB7A3BC177F55BF4", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/74ef5a35dbf3246c8cad38d7b326366ef6c2e08d4d3a0dcfeb7a3bc177f55bf4/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E6191D98D1AA00D30C29613AF1ABEA9D : 3F12B38B0996E931947A3F9AA67D34961DC20AFF : 2D386D5BBC57492C58ACBAA5E751B10685911D8B44AF60431A5199C0800457FB", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2d386d5bbc57492c58acbaa5e751b10685911d8b44af60431a5199c0800457fb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "467099DBEB7FEAB8EBAF8B42285D1978 : 8DCBBA962F67B68FA7D2D320396A3858C2D07E80 : 621C17985E1E57482A4D80644216C8E0DE6B414924D440E1C486F8E1CA106216", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-07-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/621c17985e1e57482a4d80644216c8e0de6b414924d440e1c486f8e1ca106216/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4D2C96D7533A3C636CE2E4F8485C96C1", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1caa27e07c6b5a6935a92cf047d01bfd425e237bd14c1d1c3172a09004fe12fb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F01EBD1F09886E890058743AA652D7D8", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=f01ebd1f09886e890058743aa652d7d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "580FBC21755DE37D189A362EA3C61856", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/b586ba8a8c0fc8fae4da3d2562b60dc21da884c936cf6feefd68c1fc4ed6ef91.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "28A564D240E7CF577A56826F32DC2F01", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/46f05ced4e7190b00c95a6799d1f454b4b0e69662f1539483dfaebbdc8ea3a2e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8962F97F725BAC412AD33F0486E23564", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/109eb0c69ab67943c41c9c03a9367253ea55438e3394d525d8af29e3c09de11f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F59CE454DF3BCB3D8EF9D72B35DE67A4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3A6065A5E61CFEC2BD2377E6636F7089", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "71C45E54EDB36A7B0BB75562460137C1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D86DF1202EE75646C053872FD9DACB5C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "098C18CF1E25B16157A6B560DE041909", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "24281F84C5521204E4454207F3BECF96", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "40C8DC00A8B1EB1B86C53445BE1E646D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F663F65C84355909A61C9BA84096B5E5", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E90885FE28CDF25B9A06A439C60B5AFE", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EBD9FEF61B6330935CB7489B3F95DF13", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1D1A4525969C7ED0DDD5C178EB403FEA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4C1B293B0669421EEB5CC3A8679A6763", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5E73781CA57FE34CBFAAC841AEE133F4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FBEEF82280762CB81BE81C785E385C9B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B27893C5C6C12222EA041622D3D4597A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7AB1C3C2DFCF50C714EBF2E0E16E9886", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3863AA38057AC0CC0E7D9F568C3248A0", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "633930A11DF529C4B20ABA6019D2D4B3", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "46D698FB8AC49BBF4393FD251021CDAF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D15577BB8B4FC8178CD3AB94FB1A376", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "60559CBDC4FAA57570255A6255AC2BD4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5E0BBD89955AF375C43AAA4CCB97FBFF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "399D77617B870C73F7F39708F8490411", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1420605482D356D97D2C088A7D0DB8DB", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BA3CC06E6FD0F8B72D39FF7030344BFA", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B08A33BFDD72E29D64A6F83637B7C982", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3E548A172D0A41EFDF6703F4FE614746", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0DF89A455B1D970A690A26F31C5610F0", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8E7E07E36041A4BF7A93A27DB3231B1A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6D845BA0A8D60733338F1C05359D728C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6FE7C59B5F6BECCA9DB3C0CBF8B1026A", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3A0E00176CEB8DF1ABF567074970E496", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "28D6AABF12FC23ABC3894D2321186886", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BBB9C3EFB404CD5BADEA26BA025D2227", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F4AF1496058BC6E3A0E546167F9A45B1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3AB57365065F0520C9F6168EAD54A5A8", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "41EEDF19649E8F2A96B978D02F8125A1", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1ACBC0024429E4D3541E3FB83C57395E", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BB66E5A1CAD4F3014A7E3FA6FF6D90FD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9A084EAFB384F170F4EACA5BF26B51DB", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6FE317DCA9900B18FF08A61A31FDE86D", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A1349C8339C25A9D5B73A7A463667E27", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CC3BF1CCD66129EBC0EBF52F36F3D8A8", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "05BBC7081A0256D961E96157862A2084", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0156062C952652A57DEE9ED1BB7FDD92", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7AB15400DE974180D0011459637BC7BF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6DE2127E1FC86ABDE2D5A7887B0DBBA9", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5840D6A896F84D45E53395C538C5C69", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DC7C0684115C1B7FA947D06EF399A0EF", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B921A302D6D1D23DCF3D62B8713BE28C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2DE24C0DA89AAC8ACF294A33AD960FC7", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BF166F072B9A7EA9E901F498A0880859", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D1E45C70C01D91B259E46F1594C4CF52", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "117B9D89BA03DE47EE2E6F43B290BA96", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BF9C10AEE5E0F81C7CB4C2C6E6CC68D3", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3560CA052A4532578C0EA11870D7DFE4", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "62482405B37A9A716FFCC2BA78740A0C", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9114959ED2D1D57323A0C4202A2BF3C0", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11D3977A855F0F35AF78C97D8A5567DD", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4CD38858E243F3C4EFA0A3DF7D7D8A5B", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "06F5632485650DA60479133AC40F4AD9", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "18DA9BEEA7AAD52FBE97F4D9D3297CD8", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1247BBF5412156ED48D7AF94EC1E2A86", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "73A1ACA81D7B468B1BAC13314657FB32", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5B9DFAD29C238B258935EBC28CA9B230", + "Organization": "Malshare Daily Malware List Source", + "Rating": 3, + "Confidence": 50, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "Malshare file hash.", + "Source": "http://malshare.com/daily/malshare.current.txt", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "ED3C3AF6831AFAEC2BF7A8C76F07AB44", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ee8a33f448868665abc84b043c9f99c471a728da631234b162e806e1178e5ffe.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6BE157DB50D90055ECBDE873DEE8D1DF", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/9500743f62968156d62905b8b9a5ed36d0baad22c7397b4a76477054a722b894.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "321CB06699B22FCA1B5B94D95CA79618 : A95BDEF545D52346CE6571FF92A4CC5C7B760329", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/15c5a13396cc4cc266ee25f569b72a43dcb48247dbad71f7e946e3a2608cd759.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "ADFD0257C981AAB5E28495A283DFAB45", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/296763a919c294348e40b48cfd9daf27d15bf17e9d0ec1b6a6585dd1b2808644.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "605FD6C0274F77346F661388FADEEC20", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/587bb1c3c166f87fcf7e6630425ee786884a14ba3ae4d53ae159b06e3b548678.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F18266E759FB36F205C3E93655DDA6D4 : 585D48552BADF2DBB7EFB8F9C308FA18F1AC6597835E334971C1B7562A658940", + "Organization": "PDFExaminer Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=f18266e759fb36f205c3e93655dda6d4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E73142E15CC5C940C1B1C8787166327C", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/da5b51939bd9ffc88710ef06883ae58f587c12b1b5f7fe33d545a6efcd95b121.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "99122932BE6E9A8BE28CAD77727E95DD", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/30456ac47970b8d566f43bbf1f50b26abab9345c2ea21acb2b716e7a68b8e180.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "EBE078FAF153C4D4DCD36BCE0753A8DB", + "Organization": "PDFExaminer Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ebe078faf153c4d4dcd36bce0753a8db", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E62CDC80DDAA7EFC4744CF69C3FB9854", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/25f851e8db53b5de42647ec9b023a5d51bf4a559ee45e93e8dde9610d0f648cf.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "80507B04A77385FAE9A600D37E2B843A", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/15a4c128e9e287e99c80969f58c9cfb004c2970fe650b61608cc513582429adc.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "958EC73EAA8CA80D5CEC00182CC67F54 : 8DB300C01EB9BF8CA118C56FC14D5F7CD600D9232348A54F0361CFBEBA3CE146", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=958ec73eaa8ca80d5cec00182cc67f54", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "DE2DA10B30C956A4760694F05C311C28", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/942c3dad152b50f6c368761f62fb57d7c7c478ab6c257f396ea2ac9b226d7684.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9D76644CF0A33FD323CCF65670612FC1", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/816e5beff54b966380230cb9bff8a7e0b0ae27c4494812569fef26e482ea11fd.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "28BA04899541AD80884FD337CBD126B4", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/6643bc971f4467dc6d6f67a5f1151b13fbe952d0e06c4cacb2cce63effac753d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "0663A67736922BF761D42B59FCEE7736", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/15bcb8a977a684f79ba399ef2dd825e7c39186d488db3a4af7600a38bf06cb6c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "86156E738EA13B89993DE4F9ED5EB590", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/86e8113d7070d5aca2736899d94a08a903940dab53271cdc9fbff8fd8c30a67b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6C031EBA2EE91A4C30A112958D91779D", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/13d9f5825d0d0ee9d80b7f6eb626bb64c84f0cb039d3c1ffa806f5d69480f50f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "EmailAddress", + "Value": "jemiethurner@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "charlotte.fernandezcanal@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "writjayquacri1976@xrum.xyz", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ward@b.ouijaboard.club", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "andreevemilii@mail.ua", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "heckmaier@t-online.de", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "alvaayres67@bestemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "josephsatly@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "selinealines@hotmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "sfl@gem-residences-showflat.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "pasha.9vw3@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "mijze@yandex.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "tamekher3@com3.cf", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "jsproule@conferenceresourcecenter.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "j.stroda82@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "misha5ten@aol.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "olgakonbk@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "hipeme@iphoneandroids.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "fedortori@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ekzorlova@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "megan.taylor2@mcgill.ca", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "lilian.x.reyes@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "dgdfgdfg-dfgdfgf@mail.ru", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "michaelabailey2@simplyemail.bid", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "24@g8.anntman.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "sam@ucgbc.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "zftxkgjms@the-people.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "woodmanchadbournejqszs@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "steve@ucgbc.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "repanden@free-mail.bid", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "s.uperv.i.s.o.r.2.0.1.5.i.n.vino@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ujubemse@emailer.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "jeromybeatley@hyperemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "izelaqenu@mail.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "lyanza@jaggernautemail.bid", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "gabriellels11@aubreemadisyn.coayako.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "kaylajx69@mike.tango.ezbunko.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ant.onje.f.e.t@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "aqqupemu@g.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "chief@free-mail.bid", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "jyudomero@kromerigex.xyz", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "maribeth.breckenridge@playtell.us", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "nyla@d.gsasearchengineranker.space", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "alannah.peach21@nzttrial.xyz", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "stewart@ucgbc.org", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "bill.clewes@runbox.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "galya.ivanova.05@abv.bg", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "jayanseo51@rediffmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "ojiqifode@pop.eamale.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "nganthompkins@eu.britted.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "specifyykiw@gmail.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "reesederosalaxbta@yahoo.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "maribeth.rich@playtell.us", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "juliusmcgruder@clean.salazza.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "kennith@c.gsasearchengineranker.xyz", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "totowi@mailer.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "karenvo16@alondramorgan.livefreemail.top", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "matozas@maileme101.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "wymfhf05@163.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "320014058715@t-online.de", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "efeixaei@pop3.printemailtext.com", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "EmailAddress", + "Value": "katerine@f.gsasearchengineranker.xyz", + "Organization": "BotScout Bot List Source", + "Rating": 2, + "Confidence": 80, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E26683BF30031BB38EF12715BE0C68E2", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/428a6a7cdb733b1f193f9bee3c56dccbb97031ae24492680c2f1eff0f84bd527.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "D7F6129C1137A5EAC357EBC4F5FB576A", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/74c49e0253c9bb9b307bc3d8aa420f2b9dc3d94383613118e84ca9a43a3a7e78.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "1602CE64568EA13EB7E296162D881F61", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/91fa890e2eb78864b7dc86d42a50139cfb0301037e73a3e08400622263170484.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2508DC1D003FFA97F3D2A8062EB5D016", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/acc0114632403b2473534e3fa094cd2691cca3113ce90d29dda1bcf8edb02c54.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "1D055BCE131BDEC022580E1F1D6F0ED3", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/4a4556ac78a72ee651c9b93c2ba5df74c7148d0530611ad4ae9c126692c295ea.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "42BFBD0DA6F328B8F663CC40867C18CB", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ebabba26a0c0c461c48563aa091c5b703a5d2ee2a5a24f8269594d76c8be71cb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CE501244E36495A4119735D704467DCF", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1df3f5ff0efb09530b0777ca23092a3b2bba3405e200e60d70a0d966318631cb.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "EB4E69E4941BF7E2B7F75CB0D2E8E3DA", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f15f153b2bf82f4e924889a17c436d0e6c40a32c6ad942ddd2107438af7786d7.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2525EC31A9280AC7C51F911E5786C295", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/4536c719b2a7a07110f3a70055917e0e5fdf9a713714afdd5a1e28af69776740.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F8BEFF1B8817F1788380AC069985DCA8", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/1e16832b505d88c6ee83811e5a73fed3459bac33122d92e6ff316bc67b8e054b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "04537460FEDFF566D289CAF58CE98009", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e9fd0774fc65afe25d4b6bb42cffbc639a19b1ec68f08d553878e9fb1a35997c.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "85EC5A70F98844B1777518495F91B4A5", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ab6358ae3d3ff22bd3e3e745044b0baa0734782d8658dccc1ab74efd0e6945df.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3CD10253B70ACD6FFCD8CA31A2969BFB", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/108f1fe2b80d2f6210c4441a890be83cc6ef68da354bcbaa3742c5d7d6ffe228.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "77618048B3756A3BDB3BFE92CEB7E321", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/5ec69e62b41190e1e0fc92d913c9ef5f8d6d0048bd05cb46e90925339ce598dd.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8AB94731E646DC15C4ED20A403AEBF3E", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/38ce020b24834a967fb0d7f26e422057a91bfd16ba89185c12d65508b0329351.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "A1F5201369A2D4BA58BBA1FFDCDB518D", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f6ee5ddac66a870c6bf648ae849c5b1fdae9a49ef789d456d7b22c3cb62daef3.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "033ACDCDA2574C0D36B1E699AED8918A", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/044863aba08e88f900ce7159b2ed883cb250bd37cb4d8f66814e24e6e8a2dda1.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AB590350DCD8C31CB7737DDD2D345E07", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/ce2a7559cf5c6ab8501c2ca7f6a7ed94e218e240dd981a7539936b10caa2a8a0.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "D4EB403B53E6C3B2CF768E7AFECA7E43 : 5DC198DE8BB5B6E53E32A59AF47E823D6D07B652", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7acf783c70be7894488a23bf40d45cad8a3ae312b9c56d426eea865e34624463.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9838A4F696301D14C05B2E154BDFDECC", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/4f961747d5507eebf1719eb8093e194d4fda49280d49be601babec94f704a39a.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3AA65FA4825F6A70656AE49C9ED82167", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f2d9fd4cea4234ea8cd8ff3134777f37b2f455b7cc047e9f134c953b4d6a89e5.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "88B1D99EAFFE820B31C0E0F5C5DDF566 : 807AFBCD5D8DFEA403665551EEF40822932DAE9C", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7d797e96db953036fa20e14179fa715c97d8d7ef93140dd7a8a78e3a203a209e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6C1C59F0691B77863690EA85516A9540", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c7561d19bdf5fe9c59848405c61cda4c6e02a58c1d24069afed19d2d59c6b9e1.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BD22C58BA8A11031A24B54C8D51BC05B", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/62be8456cb9c3e2aee7090441a7ab6a517038f066a8d0913c110583e14786c2e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7A2882F80FAD453E811DFB509453F551", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/52f06e877193238449ce71dd420614761d33838cabb1d972834d16709e8ac9f5.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BB0FB1BA1A0C26C781F5689F1A86FB31", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d798f896da542a3830d498138bd77bbf7ed21d2bdf99ab48beeb9888ea4337d8.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9C1FFA79343ACC0F233D111CCBA4A8E4", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/3f89bc700bd9231b3b2d741e4a30d8f60bec660561521333c2a51abbf37e5cd8.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "DDA878222F63781011732E634A60088B", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/d5b8ffd15ed67c9e593e4d46a7253318094df9ba99a6b77851ed13ead3014440.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CF3CA580DCD6F33019FEB3036D176FE0", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f4dcefdf0c2d9b4be5980f2deeb3c4569098a40a536faf264f0e8559876c3375.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "70DA0C2EF406A318486B9F6BA7F6C24C", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/319edd1bca2dbab8c576099c1e2a85be581dbaccc7f7c45b3ebbf63c0f47ad57.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "864415AADEC017A8F8020BE907C2DC1E", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/766cb1765ae5bda9e923843f3ada95f7d72370221b0b591e3dabd615812778b2.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6477F3B46AEB74B85AFC660670CA4172", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/29ef0a8a4d6a6331c76290d613f516097f2fbc643ca373ff6d7e027c9ca77b38.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AEFA082CA7B6E5C9EAB113C6A1A97636", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/f6abf87a2ef858c9c43b4767d1f3a6c94d26838f88a88dbd806273e3682272bf.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2526F3E2E2C18A9B2B80067684301870", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/b02db65874ba48efeb1f8b02a82d79927f99de2c33461dc69033f1dc66394f47.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BCA591412D49650939ECB25C7D0DE86C", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/7327cbd80f5901305764cdfcd2c91344b59731dd06c666ceb16b668d65d27d03.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C608E60FC252176507FFC874F5ECDD95 : 8FBB05B19B71C50C0BBD36A8364121368CF27B8CD5FC29DFED4059916577EFA9", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=c608e60fc252176507ffc874f5ecdd95", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "3C08D29D27CA0E87E287028B7EB0893C : 9776C6EE1B14BCEF34724E00E9229F3B12581883CBA898648A105E0894F65DA4", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=3c08d29d27ca0e87e287028b7eb0893c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AF3E2ECD3AC3D8FDBC8228929A1B51C9", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a079c90a81a3f26a9229d6b907f348b9daeba77e92025654a91eabca730ee607.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "DC97A57A198482A07501C3C1E5E124BB", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e874df4eeeb729c5bed99cf96c23bf8da6b6465bcf7b1a30c0cf198a181033c0.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4C2542AE25B208B1FE935671AA794753", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/91d6473895dff146430abef6cfeecaf8afb2b041ebdacd9b2071c2820bef1ad9.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "4F43ECECD399A0A7E1947C935F4BE565", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/69657c7191812d9233f22f96bf6f95ca581f08e06b2a6404d5d31f7154858bc6.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F1345BA292C9A8D72D45DEF065404709", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/90e166394e177407610fcff57179e51e8f92cfd9e4c7956921e8bc1188ea6014.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5574F67EDAAEDD6E76CCD6ED0C4E9ACA : 719C2E5C0BAC66D75F54D5FA5972C3A683BBBC42E9016D9F0B29E283E2A1B586", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=5574f67edaaedd6e76ccd6ed0c4e9aca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5281B976EB5EFAE47526341BD71F1311 : 9CB79E615E48BFDE0D168E19733F7D3DC4409340F00FFA1BBBBA6121FC223E03", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=5281b976eb5efae47526341bd71f1311", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "BA1C91E387A6AEB816C4D2CA16714F49 : F738680EB2490E52B4F17253D5E702B7EE9D0F7861AFD4457202BDD95C4B04D4", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ba1c91e387a6aeb816c4d2ca16714f49", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "C8D3E7001D9A753293280E52BFCC0EDF : 123257B948406DE51534270CAE9E51B18121F5AB58FB10FBFA7D2CA91AD93BD6", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=c8d3e7001d9a753293280e52bfcc0edf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "7D645F394063D8CE2C75E0CA8EFCE0BB : 9CF321C088CD726670861E66A117F183B3CCB1D45A0A90E2C3D2799BB44EFF2C", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=7d645f394063d8ce2c75e0ca8efce0bb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F47CB884193D8C307B980423D2F4A6F4", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c86171c4bd677ae28ce3c60c7ae78fe2bfccb23265ccc0f409c33087afec9f77.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5BBD35683C9111AAE95F3AA161F88509 : 74C29C3C8308C47DBCA315F7DE64C388DD80D52521BD8CA6D5B089F5D1709F67", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=5bbd35683c9111aae95f3aa161f88509", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "D1134056C4A7A375B49DC4371A8D885B", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/43c05fdcbce2f0683011d3e8a2e73826fd726c7a55b99f8acac96ce378feee6f.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "AC1F7CDACC973A936AEDAE4326EFBDCF : F119416060B3DEB00B15D0C998DE1669E97428552179D67A011BB87639309303", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=ac1f7cdacc973a936aedae4326efbdcf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6E5320EECE21646054C2841C945BCA84 : CEBED874B5BBBC87CFB8EDE3A668C71AD59A84AE4B50A7B1F1A40EDC5AD83FD5", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=6e5320eece21646054c2841c945bca84", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2843562BC4395AA60A3B59FACB5E8234", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e85b143dae383f50255cf05cc84dca0fe6c52a0f00eb94b3ae6523e3b9fa71bc.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "F0F9707B883044A7A593542CBEEAA6C9", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e1692a9760f722fe9d7b9bfc7a36d6c22aac67e7c534db7bc547bd917c727d2e.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "2FB7C2DCC2FE4C1D62B27A613052850B", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/bd2a7511b329fd27938625e4db4f1857b2b4b3583efcb31fa815fecb9d21e4ce.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "6082D4886D7DAC0AA8A830AF830E5954", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/6b0e8f6644a106db0cdacd8ff7423b6b330283e1f7d2cd4b75e97a809e481051.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "23A399E0F884FFC14BA2569ED43BFD1D", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/c927aad4522cec89a0e10b69b0b2636caee253fbf1681ccbafbb1687ad9f7bd8.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "8AA5762B518F5134CD29793B4D624CDA : 26F4643D5D46CF29F1FE891AFCBEFE1CB407BBA69FDA48B6DC5E4D618A606441", + "Organization": "PDFExaminer Source", + "Rating": 3, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=8aa5762b518f5134cd29793b4d624cda", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "CF39893E99899A0F95C36D7B2E0C52F0", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/0f7897c6fffa0a6bc530e98e04ce31ab4bdb32548aeccd464a1bac10fa3e1c63.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "18C2229FA08EA67F3BBF7704BB3C99F0 : 142693E9EA31617A4223AD0F7E12C32494F870F982116A6277EAEB56A9632772", + "Organization": "PDFExaminer Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.malwaretracker.com/pdfsearch.php?hash=18c2229fa08ea67f3bbf7704bb3c99f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "DF52C0ACFB400418C46800FEED8A693B", + "Organization": "Cryptam Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/b96710c7a9a7f25bb012009eca14bfc674a817a283983cd2d7bf2684592003f2.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E7F6B88377746258D639D21229D9DEB8", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a2358ec7604c4dde811a0719d32169b5ad0ec3b9904afcd6f6565ea8e9a37da4.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "5067A746CCC48C73B496AA61194CECC8", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/e411680caa9759a567e85dfe3e57fc3982ac1e6917d1a0dbd419641feb3749ef.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "9E52F4DAF952AB976C40EDDAA991BB41", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/cbce63644f3228473b83e7acc3316afcf0cba21687964ae89d6668837f3130d9.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "E0C4AE8CD4C6C665618F596CBC4517FD", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/9cb234866577ebb718f8281652ceb50a88c648a4f7589c969de8ef822463fe8b.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "779791F6185C12E6062992E638409732 : 446CE3563EF91AECF28401522936C4E4B95C6466 : DB93606E44AC371C28311072BBA111070A28DC38C38BF42F308CF840510A6083", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/db93606e44ac371c28311072bba111070a28dc38c38bf42f308cf840510a6083/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "02D51CE2325F395204DC6B4772CC75A2 : 2684DB6C405514373BD9171E517BD2C7793E2742 : DE670210C5FC09F0CD6EE0AF7C1BF55F5D881CA45CB191862ADF29F874168565", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/de670210c5fc09f0cd6ee0af7c1bf55f5d881ca45cb191862adf29f874168565/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EAE0B505E809DE422B67CC4BE0E0E005 : D4AF58EC61C429C08E758E113F29D12287A31880 : 693844CD95767BBAFED98501B0B9E4916B6FAC9F4316581079EBF44859C2F4A1", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/693844cd95767bbafed98501b0b9e4916b6fac9f4316581079ebf44859c2f4a1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7304A288152B7685CF8716757F16F494 : C5C95B05DEF04A0E46950FBA42D13677DD418A55 : AC136CF367373F477F9E8EED9DDF2834E37CCEF55C9B84D44789EFFBA68E0203", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ac136cf367373f477f9e8eed9ddf2834e37ccef55c9b84d44789effba68e0203/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "0448180A72C64126C63609904C91CC3D : 43D25BE2A28F6EC4D3C1ACF9EF19B25C8751479D : E9D7FB2AC456BB7DC5B5F69A9808B8C704B87E482268C79A3C1B093B1C12520D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/e9d7fb2ac456bb7dc5b5f69a9808b8c704b87e482268c79a3c1b093b1c12520d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DA7B051A4BC2AF4FCD4D2A6266BB1FC2 : E462DA193A7983A50266A1D7514FCECCF51E9CA3 : 41FB9051F0080ADBCC96D2BB0FBC93A417AD1028AC0387A50FF28639250FCC94", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/41fb9051f0080adbcc96d2bb0fbc93a417ad1028ac0387a50ff28639250fcc94/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "FCD34B2ACF7DBBD1889F1CC564C99281 : 20443A90B1D1E422331C2D8B550BF3170F45022B : 51E1401AE4317388A79C93D623C148F1F8EE12DDCDFA5436EB9E235CC5A61E59", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/51e1401ae4317388a79c93d623c148f1f8ee12ddcdfa5436eb9e235cc5a61e59/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "140FE69D7DA7585DDF45A44901B2819C : F324E18B9BDCDB37F73E4E22E9148DE2C015628C : 537369EEAD40AA1B96589A464E2E44DCBA30F396A4BC5D8CD44C4D3F4968AC80", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/537369eead40aa1b96589a464e2e44dcba30f396a4bc5d8cd44c4d3f4968ac80/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EE3F798A6090B4FD1F61096ED01CDA38 : 10735B5357FC31CA8B2DF9858BC6951BB3596D22 : 59DF848DB86C62DE4EEC30D1D17E2C5A183B45979B041B8FA9A97EDEA7BC3AB3", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/59df848db86c62de4eec30d1d17e2c5a183b45979b041b8fa9a97edea7bc3ab3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4F8D45D4A4500CBE19319E126AC6F5B7 : EE316A6D0DB55115E57D88F5CF3457DD5A4DE5B4 : ED26B0CB63E81B34596A2025A9FE2D9DEBC38E4CE1C88B25CEE482C472866FAB", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ed26b0cb63e81b34596a2025a9fe2d9debc38e4ce1c88b25cee482c472866fab/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DA10E71AEA8A824B3EAC6846FBB3EF9D : 53A0B15784448753D339C7F221ECE0F2A7E4ACB7 : 0C87AF67BDE3FB4165290080C8831461DC4611F9B0F59EB9CD0E69E146EC476F", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0c87af67bde3fb4165290080c8831461dc4611f9b0f59eb9cd0e69e146ec476f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7CC384481033CE14873A58D1CE26F79A : EECA261C8B059F92098E957B768A961FBBFFB407 : 99745F8FD7BB3FC42CD5DC5C34CB8ADBF7F38373D1C7F1847FD353157FD9379B", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/99745f8fd7bb3fc42cd5dc5c34cb8adbf7f38373d1c7f1847fd353157fd9379b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "A3A4C0E0CC27CAD99510DE268534BD70 : 34F23C88BB5080EE9C5566703825FC05ECC103C5 : 2EEF7174EFCB05EE84D4D3F88A332060515E7C04B29640F24521A263CA5020B0", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2eef7174efcb05ee84d4d3f88a332060515e7c04b29640f24521a263ca5020b0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0C453970E89DB1C1EB9DE087E6EAB5BA : C4C7E034773A240909332814F499730575A1CD71 : 942E98F142373547493F13B14E1603B2420851AFF013D3085BADA7B6B2214D9C", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/942e98f142373547493f13b14e1603b2420851aff013d3085bada7b6b2214d9c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B38AA859E0D8FD8D0FA27A8EE30E1A01 : CE0768B123AA73F56F3B42F3A5CA875EB8895264 : 3DBEE46B68D1970FECC22679E3C89B8C68F8B915D86553BB35691C377FA1CE71", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3dbee46b68d1970fecc22679e3c89b8c68f8b915d86553bb35691c377fa1ce71/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "F942F1D6B012BABDE50CE29E5088A852 : E145663B50C9465520C9A89181E8AFD73AC471EC : D41660C765DE7502ECF3CFE494D9031A63987B39AD967047116350578532AE1C", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d41660c765de7502ecf3cfe494d9031a63987b39ad967047116350578532ae1c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "518B5B0CBB128F999E303D5A642DEDF8 : E13FD9EA0E2467E317CBBF6F08416BA5902B071B : 5C22C50AB317C0AFFB60CD5E7BC859A88B7AD64A4A69FA56FB59C200901D58E1", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5c22c50ab317c0affb60cd5e7bc859a88b7ad64a4a69fa56fb59c200901d58e1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "98F85F9CBCDDA504C1479F6B5354444E : F9175820E9BFFF133070C47CC8F70ADC8DE61C01 : AAABD4F16B675B32DC62286B65FBCA99853EB34623703968CF5AD969E1EE9E16", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/aaabd4f16b675b32dc62286b65fbca99853eb34623703968cf5ad969e1ee9e16/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "521BD488A5DE44D84E9D145D3EB8A238 : A9086094BA2EAA8DC6FF046788CCD441136AD692 : 8A128F5122D32A4D6780644A13D3AC81CD85895CA025C5FB6E8BB12E94AA5F94", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8a128f5122d32a4d6780644a13d3ac81cd85895ca025c5fb6e8bb12e94aa5f94/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "AA2E39C49826D56736BB9DFADECF4C40 : 7C318E2596D3242914DBE034D6801EB34F597657 : 5E30ADEF089CA0CBBC5BD36E98FFBF7B77D075E4339EB94761FAFF50BAEBB52B", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5e30adef089ca0cbbc5bd36e98ffbf7b77d075e4339eb94761faff50baebb52b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E0320F94EAC286340070159C3422CAF4 : 9AA5AE1A6D29CFB233D8AFA32D9C9E48B353935E : ED60AB1EAC8DF22B4C2AB46AF3C55E41BDFF6AF695463AAD05861EF368592B37", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ed60ab1eac8df22b4c2ab46af3c55e41bdff6af695463aad05861ef368592b37/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C5BF1D8B5B7806AEFCD9241FF0157D31 : 3F15F52CEE0FDE98259EBF56B60886D5D53831C0 : 35CAD031109CB3E1525A1D607966F1018DF4052B0E5CE25CBD50303873F051BE", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/35cad031109cb3e1525a1d607966f1018df4052b0e5ce25cbd50303873f051be/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "525530EAC1E97AFFEEC5B1A2335936B8 : 0DFE908AF554385D45B9B1DE2B7C4B7EC586F12F : 11752D0032A21F037C2E2DF536126D0DDCCF1FDD91C998841D7E6DA5FAE1A00E", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/11752d0032a21f037c2e2df536126d0ddccf1fdd91c998841d7e6da5fae1a00e/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DACEBEB48382884CB4BAE96D232B7650 : AFCE1C0AFC77EE7C17580BD7956C078CB408A27E : 42987DA4E42B771F990B270333F0659EE2AF9474739E700B8C3F46B0BACB33BB", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/42987da4e42b771f990b270333f0659ee2af9474739e700b8c3f46b0bacb33bb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7A50E0A3528F0F90F325D0BDAE9CD8F7 : 63E78F0961B16ADC8A9AE7FFE0DE8EC9602E7D07 : 8D8FA8EDE043A0E5F0A97546AF6112587047BE76BC86B384D72644A0F0162207", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8d8fa8ede043a0e5f0a97546af6112587047be76bc86b384d72644a0f0162207/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "267CE35ADDF648184311F136C7D0D770 : 444155C2444CC803BE768CE026F2D465A8F41542 : 736C16D7A8044504954FDDD0C541DC4B974A1425332FC6BF66AD172F7E57FB8D", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/736c16d7a8044504954fddd0c541dc4b974a1425332fc6bf66ad172f7e57fb8d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "E21E893B9A0010DC00020677248C2B9D : 3A228D57B61F5871279FD31C80169EF9FF76DDC9 : CF2E74AC425CF7532B0C1AFEAAAB21EEFCC46561C9B82C72B56DAF17FD378426", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cf2e74ac425cf7532b0c1afeaaab21eefcc46561c9b82c72b56daf17fd378426/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "84E1BD95D8B4B690EC79733E177C55BB : 37F29CB2978A786EC07BE559DB48CD1BF5C72E1B : 342DFDDE0F7FF185812768ED6C7D4EB4244133F01CFD74AC9A94B17F054ACA45", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/342dfdde0f7ff185812768ed6c7d4eb4244133f01cfd74ac9a94b17f054aca45/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E5815F0F432EEFA5E3C4F2C17C13863 : F94614C0D7B566466B16C1BB670E4B66D5CD5D53 : 779A1F4A2DD77C7A3AB7070F508CD403399EC5A3B427F7E26FA61BF5F4F05E45", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/779a1f4a2dd77c7a3ab7070f508cd403399ec5a3b427f7e26fa61bf5f4f05e45/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A5444DD6EE8773915096C31BD882E247 : 88265756945984EBD5FE58827C39CA1F1A2BF487 : EA2C169529E782994BE5296C81FF4668DBA2B77A805BD057B53E5952C65AAF72", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ea2c169529e782994be5296c81ff4668dba2b77a805bd057b53e5952c65aaf72/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4BC6629D0BB5F294979E3A94AE6DB14E : 4B30832D583CBD294C20E4DF4C0AD1CD80233B94 : 29361411E499974024CAEEA2373FC84FFCDA874F6170A9B3E03D81EB238F467B", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/29361411e499974024caeea2373fc84ffcda874f6170a9b3e03d81eb238f467b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BEAC9209687220A0489932FF8FB09E11 : 41AC324C3F5A7CC496F3AB58B0FA8513708574BA : 68E7F2941A31D55ACADAE69194C7D3EE7E7E1A31BF866E0DCBC4F2FBF4792BAD", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/68e7f2941a31d55acadae69194c7d3ee7e7e1a31bf866e0dcbc4f2fbf4792bad/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "197C018922237828683783654D3C632A : 55FADEC5F0AF40D2D28FFF6C86E2FB1DF949D7D0 : 55D0E12439B20DADB5868766A5200CBBE1A06053BF9E229CF6A852BFCF57D579", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/55d0e12439b20dadb5868766a5200cbbe1a06053bf9e229cf6a852bfcf57d579/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D9263E2A541896A0950C7ECA0B98A188 : 803C4C01EB101FAA9D182D78A8104675BBB4C80F : BA4356C65A29F1300632FB9061AF965CBA2939033510824BDDDF54B45C89AA6F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ba4356c65a29f1300632fb9061af965cba2939033510824bdddf54b45c89aa6f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F807B01EAE043FCAFC300A00894A11F1 : 3CEB87608DFB42B552320B48C96D46DC66E8A249 : 6B3BABEBF2C049FE6F804D1127BDDCFC416DCFED3AB8D9A108103CB4ED3888F0", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6b3babebf2c049fe6f804d1127bddcfc416dcfed3ab8d9a108103cb4ed3888f0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "7A6375F4D35CF6B58EAC22EE8BE979E3 : F599D33E887889F4E5B39DC267B4E2C2B14C76FE : 664E4AAA3A6D2C90D3645699FFBCCB71A52B7AE824CC86065EB56F2217A47179", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/664e4aaa3a6d2c90d3645699ffbccb71a52b7ae824cc86065eb56f2217a47179/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "558BA37E01FB3064DB7AC924C30E86CE : 2917C01E96FBBD3C84F8585325CB52356E58B450 : 6DF0F2FC8AB2136AF0EDF2DE503A58D564768BFEB42FB2E66DD056620C92FFBE", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6df0f2fc8ab2136af0edf2de503a58d564768bfeb42fb2e66dd056620c92ffbe/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "JS:Trojan.JS.Downloader" + }, + { + "Type": "File", + "Value": "884690538EE13A76A6B0E59CCD49DBEC : 51E47E634B07E4BB50FD39F72DD1B571501CA1A8 : DE646C0CDAB81326C71AF9F321AE1A980C7D55404DDE84FBE2F91C80C256C810", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/de646c0cdab81326c71af9f321ae1a980c7d55404dde84fbe2f91c80c256c810/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "7D528715B0DD9E5D9AA0DC7BF0403C9B : B61BF3D14DDA9B4AABF3E213513FC0357A848483 : 9609AD385D364AFDCD4BCD9AD9B6C6CF2383E3351A254B6F4D76DE6B98E940B5", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9609ad385d364afdcd4bcd9ad9b6c6cf2383e3351a254b6f4d76de6b98e940b5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C0503987D76F2FBA0D83B45A50CE5391 : 011D66D0B35B02F0A5AA6D2B952F598B6D8D547A : 7345A2E841D84D5E0C9A4B0FF2E8B0D10D228407E48EAD3B9A264432952A4DF6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7345a2e841d84d5e0c9a4b0ff2e8b0d10d228407e48ead3b9a264432952a4df6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BAC7142194F695B77AF136B5332C4935 : D3C2CC4A07DA8519BA90BA15BDAC590726CE0CF7 : 8E6AE2CD9D865B35AE19A57CBDE5479C164068388311F1E412C344EB7405CC95", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8e6ae2cd9d865b35ae19a57cbde5479c164068388311f1e412c344eb7405cc95/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "19EE0AC3455CA161CCF000CE4FDD8757 : C4BCD51A1F77C42D2875BDC8C94C850F809B94A4 : 3D20DC31CAA3C7AEE8F540A8991F950F77E5682B5A514073DECE0EA891F05BE5", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3d20dc31caa3c7aee8f540a8991f950f77e5682b5a514073dece0ea891f05be5/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "2F87DE4E42B6621423D733D4E171E812 : 7C4B28CF95E9230B23A99385DF76345812526838 : A57FAFDCC012B5E781DE65257F4A945F3360BF78400141EEC31E39F7F5050028", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a57fafdcc012b5e781de65257f4a945f3360bf78400141eec31e39f7f5050028/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Interesting" + }, + { + "Type": "File", + "Value": "AB6800A0A5CE088F9C9655672A42A446 : BB2E566B6BA2353A0284C296EE838E92515198A9 : 8F0892BB8CD79E63E89677C09E77AFF46A866467B7F8DAD81D210635210EFD88", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8f0892bb8cd79e63e89677c09e77aff46a866467b7f8dad81d210635210efd88/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1EE8B1ADBF0D90688AF4820BF098BFF1 : 8AB574BB75206250AFF2F3C6D29512DF72F71523 : 1D4F096A2F7F6E0C80980935D8B7A1FD73BA2841F2DDFC44572A37E921EE541F", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1d4f096a2f7f6e0c80980935d8b7a1fd73ba2841f2ddfc44572a37e921ee541f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Gen:Variant.Symmi" + }, + { + "Type": "File", + "Value": "68A9B797FC8C15FF90E5FDB9A3D50322 : 34DDA9EB949BD6E9486160B56C7CA6FE225ED5DA : 677E9696DD2811296AD26D356A54BC6DF1B6E307E0ADFCDF5C017302F5AF3C7F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/677e9696dd2811296ad26d356a54bc6df1b6e307e0adfcdf5c017302f5af3c7f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "CEB5827E6A77B908EBF7EBC634E8B46A : 1C45648DC9967A0CD182B5899191F72189333DCF : 2F4C564DAE8C8EA42207BE90BEFCA0727A89DC5409094F5077826869AEB5726F", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2f4c564dae8c8ea42207be90befca0727a89dc5409094f5077826869aeb5726f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D9824A9DD107E598575112B4FF897292 : ADCC54D159F1EEEAD01DBD2FBC73C808CE519920 : FF4C03BBEB292317A77C86C1C81AE9564ACB984B352FBEF36D66E2D8BCBD79A8", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ff4c03bbeb292317a77c86c1c81ae9564acb984b352fbef36d66e2d8bcbd79a8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7361B64DDCA90A1A1DE43185BD509B64 : F3E41EB94C4D72A98CD743BBB02D248F510AD925 : C7536AB90621311B526AEFD56003EF8E1166168F038307AE960346CE8F75203D", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c7536ab90621311b526aefd56003ef8e1166168f038307ae960346ce8f75203d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4F63B39C89FE84EAAE3DE600942D7BA7 : 3E5D275ADAF24F262169C8EE641EC2AA470F4AE8 : 7EBB49A7C01128537BCD32532448E1D54A6757466CF84E78EAF0C8B11F8ED7EE", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7ebb49a7c01128537bcd32532448e1d54a6757466cf84e78eaf0c8b11f8ed7ee/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "58B6E865D88A52EF1227147A7CD5A820 : BED8AD144A3C1D8D9DFE5E6815E4F509718BBA65 : 522B65FA98C77957C370B0E6AB7DF7939EB5DE27922C7ADA74D4FE6776BDCB33", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/522b65fa98c77957c370b0e6ab7df7939eb5de27922c7ada74d4fe6776bdcb33/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6B6500B0E6C2E2ADF60D5FF8CBB7871A : F4B537D9BBF8DC4D47201E06EB10674FC40F8C33 : A5EA15A1FC47979309E33856C159BF9927F0A5356F9749C55CDA29A4413FE361", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a5ea15a1fc47979309e33856c159bf9927f0a5356f9749c55cda29a4413fe361/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7AD4D9FABD109432EED91B359CEAE430 : C1DCDDD86F9FC630CC0231ACD7B732FD55DC5F63 : F3359D5E41B1D4FEC7230579A593E40FE44F6AFDFACD1E2BBE52EE06D84686FB", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f3359d5e41b1d4fec7230579a593e40fe44f6afdfacd1e2bbe52ee06d84686fb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "81586CD28DD4DE4BA04288AC55C7E068 : C30536038D593B1822FCD2715077A97A1F2D9BB9 : ED78D2E92A82281696E41D0EC40356BA7EFE824F1AA9D71BE6C35765B3066716", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ed78d2e92a82281696e41d0ec40356ba7efe824f1aa9d71be6c35765b3066716/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "74579EA5149E7C8612181841C0AFC8F5 : 9D3CB309CDB7540C0AF3223978A5098BD938D974 : 726EAD8C4F2D61F3FA7579EA7AD50DC280F78934023568F59A02EF2DB29F1A4D", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/726ead8c4f2d61f3fa7579ea7ad50dc280f78934023568f59a02ef2db29f1a4d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "CA05D15C30D4C55888585CE88508D9F1 : C90D436DA71A65CF30EAE45D16EF3A0474CFDE98 : 3DAB4CF613CB31B6792F4EEB02320C84C6CBB384745B238A086A9736DCC7B9E2", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3dab4cf613cb31b6792f4eeb02320c84c6cbb384745b238a086a9736dcc7b9e2/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "D3CA405BF32024658B01B4F8A8BF90AA : 4556206953754F0499E32B8B1E2B6BF63D427C85 : 4654956B3EB2B718F815E55C783921EA78B6143C1A83764D56662E03208F15F8", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4654956b3eb2b718f815e55c783921ea78b6143c1a83764d56662e03208f15f8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5E14A5E4BD723AD3ECACA2B51C116AAF : 1D6033C66D40000388F43C5B6B00B8F860572C82 : 13D6ACAD0FE5EE006644C4C0CD13358FD2A4BE233C7024DD48EAB69EFB4BC05A", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/13d6acad0fe5ee006644c4c0cd13358fd2a4be233c7024dd48eab69efb4bc05a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "B13731F55611093AF06F7D57ACF56F73 : 4998FC1885303310EF0D069E553E92C14267F823 : 1B0B4D0BB25D89273ACB41E209C9F90C845FBF92F0C73BBB0AB6633680266635", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/1b0b4d0bb25d89273acb41e209c9f90c845fbf92f0c73bbb0ab6633680266635/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7270CAD5F3DDB46E0F286B16A198FB4E : DF4DB6C88AF2AD1F13C34B6C786A1FCD52AF1776 : B9335613D744674B0E238CD98EFD25977BAC735C80BE99CB9016DD61428E539C", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b9335613d744674b0e238cd98efd25977bac735c80be99cb9016dd61428e539c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "C927326984AECA4A722954810B248D50 : C8CA61D7CFB7EA7E28CE961767A76B3A664BB9A0 : 06CB57F2A78F3CAF1353980CB84F4785F2BB51C37A20722E7E057AE949E7290C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/06cb57f2a78f3caf1353980cb84f4785f2bb51c37a20722e7e057ae949e7290c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "BCFAA05FCA37CA6529D945F586970B36 : 9D67171B92D51B3596E5A37A7D4D33B714491ED0 : 28A87FEE958F8EB6B347908FFA79230C3E78D307ED4B0078AB32D1257B40B99C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/28a87fee958f8eb6b347908ffa79230c3e78d307ed4b0078ab32d1257b40b99c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "C12B31821EF1588A70D7DDA5A6EB0821 : 91BDCFF4772295FF6AC39256B9059AEE5A7CFCFD : A72E906F5EF548FF885E9A0F26A43FBFDD2C611345E05DA8815C2A42CFE1089C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a72e906f5ef548ff885e9a0f26a43fbfdd2c611345e05da8815c2a42cfe1089c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "05420DEF8FC22A7FA70D971D80A815A0 : E19E64A3298E719CB43C5CCF354E0414DD5C1F0D : 6E622EF222D43DCC2B11C283AE197C2EA0BBA39A34A39E05C8BFF958473FAB98", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6e622ef222d43dcc2b11c283ae197c2ea0bba39a34a39e05c8bff958473fab98/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5AC5B95304BD538B7C2B72A9B6FE98A3 : 6CE1861AD244B3025821E5A162462120F8D14870 : C756CD08687A4CECDFFE6227962F840DBEA6201B825A68DDBFB8726702020504", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c756cd08687a4cecdffe6227962f840dbea6201b825a68ddbfb8726702020504/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "57CCAEF15256609E97D413C0B961218E : 96C9A3F8A5AE802760303B4BBAF9DCEA0BB360A5 : 89A41314EB2CFD1116F33BAB95543DFB6D4131CE61EB9B7F239650CA0450D216", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/89a41314eb2cfd1116f33bab95543dfb6d4131ce61eb9b7f239650ca0450d216/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9802C93DD21FFF944D3B84BEA0D54BEA : 0C6F7E3E215CCF3B168532D72AAF85B5938AE9DA : 25DB94671566D0D8582BA0348FF5FFE96BB543DFEA6A3B1A8E21CF656319829B", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/25db94671566d0d8582ba0348ff5ffe96bb543dfea6a3b1a8e21cf656319829b/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "06D6592066445D20A6D62E077AC3C682 : 769CC20E46EA4B3E9D744494DC454DD0A49C4F7E : AE5145C24527C2799A4FC7D7AB3AE98CFC2D5A3A2E5A19E5B117858A2F8E3898", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/ae5145c24527c2799a4fc7d7ab3ae98cfc2d5a3a2e5a19e5b117858a2f8e3898/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "39E41B50D4274CEFD02437F89A07AEF7 : 5197403B6C899C9A9F9F9B9AD979DCCC61BBA326 : 7B12FF7B40209D2C3185FE5F81C3F30EBF2573160D26FED0FED19E0F0EA11702", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7b12ff7b40209d2c3185fe5f81c3f30ebf2573160d26fed0fed19e0f0ea11702/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "63E48E398BB081466B5269AD69AC6F11 : C2A8E24FDDBFA70CBAFC549D3184478D7652D54E : D354F265A48CAA3E6A3FB075D330EA5FEC679FA6A44CC53B0B4AF6C590C83040", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d354f265a48caa3e6a3fb075d330ea5fec679fa6a44cc53b0b4af6c590c83040/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "30442161F7C99A2685983190F3F87B47 : 79D0903C3AE621246046455AE64824437E5CBCEB : 991164BFFE44147B88D927308D48F4F39FA84DFB4634E976B78F2641BB37CEB0", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/991164bffe44147b88d927308d48f4f39fa84dfb4634e976b78f2641bb37ceb0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "AD7AC905D9BDA8781E083E41BA9CD912 : 1B169FBDAD1B56801342DF0580B7186A0C3FB808 : 2966DBDFA945EB3C5CBC963D661DC903876765C003A7ADDE77BDDADA0ED9B4A1", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2966dbdfa945eb3c5cbc963d661dc903876765c003a7adde77bddada0ed9b4a1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.GenericKD" + }, + { + "Type": "File", + "Value": "21E89F850C943EF983C52DE298A14D71 : 47AA9FDA64F73B838BB6B8CE8E5EDBCFA073AD08 : 4CEEC3883EBAFE78D0A742E525DB86C138B0970006AB16156FC6188A1E276374", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4ceec3883ebafe78d0a742e525db86c138b0970006ab16156fc6188a1e276374/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "44864A20EE54912FD98B2FB372401F49 : F0E9B41CD61498E959CAE9C7B51A3A11E9DCCC0A : 3787FD9E2AE68984A072B22460732642EFAF41E17ECDCD5CBE8B0A2362EDDB91", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3787fd9e2ae68984a072b22460732642efaf41e17ecdcd5cbe8b0a2362eddb91/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "89F4D0DD6606A2FE15931E6888DBBC8D : B33D2B19CE16A7AC275259D4CB6EB39D8F1825CE : 513D9F6DB0D993DB6D720DF1FF4FED2C6A9B067522CDEE389CA40D3B618B6A55", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/513d9f6db0d993db6d720df1ff4fed2c6a9b067522cdee389ca40d3b618b6a55/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "AA3B3FA28B9A0C2DCAAD3FA40FE5A487 : 598537AA295F0B0EE9A6C1895DD247C48A6BDE03 : CC73806E25144EB915856299E9B058E8502648CB8003DFC23E29C1CFFF11513D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cc73806e25144eb915856299e9b058e8502648cb8003dfc23e29c1cfff11513d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan.StartPage1" + }, + { + "Type": "File", + "Value": "D422FE3FA9565FFC351D49A58167BAB5 : A6E10DA7A7A7304470F00B9263EBFDC575507FEA : 44600CC48B420B6ED9BC4DEC07464D4874CD2091AFCBCB24A57A8DF282FE8873", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/44600cc48b420b6ed9bc4dec07464d4874cd2091afcbcb24a57a8df282fe8873/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM20.1.0000.Malware" + }, + { + "Type": "File", + "Value": "58B43934F212BABAFA304C17D5A888BA : 4CF79C222754E81606A42A4B48010309C8098726 : B44B262AF0924535BE004501B1808E5E79343D91978B38C3CE9F18FBABCC2EE8", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b44b262af0924535be004501b1808e5e79343d91978b38c3ce9f18fbabcc2ee8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8E9E679A805EB2CFDDF2B1B3A9D8AB9B : F6BAA43FF9C76D236B1F8429AFADF9B0294FB81C : 2C8CB3A2EEE70B92784422B1D1E69F7FC42714592F9E489EB4910726AA7BF8E9", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2c8cb3a2eee70b92784422b1d1e69f7fc42714592f9e489eb4910726aa7bf8e9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "20A1F2F3C7FD31ED7C0CEFB7C07378A7 : CC32F935F1F1E53603D47F939E25BFCB3FC0BAB8 : 4C2CF345424221AF01DD8301A4029D8755ED32D597E95A64C6D5897AC0CF727F", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4c2cf345424221af01dd8301a4029d8755ed32d597e95a64c6d5897ac0cf727f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "4B8DAD641B114BE3C68330FAEFA2BCA1 : 28DAD04A849291617E5C0283E2A50D215126CB88 : 7167B5095E0E7164EC6EF396F049452375D40A92DE4C9209419F2E7F2BBC40F6", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7167b5095e0e7164ec6ef396f049452375d40a92de4c9209419f2e7f2bbc40f6/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "0FC3DD74B76BD394E6DA219016374F41 : D739E184548C0172BBFFF4432081E3B96FDC8A8E : 2D8DBFCD0ED664B1D37C90273CAF982C2A3F6E01D74A35D4F6EBBBF6494D1DCA", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/2d8dbfcd0ed664b1d37c90273caf982c2a3f6e01d74a35d4f6ebbbf6494d1dca/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "DAB8D0F7EC09533BAE69B8B3A3986D7B : 42FC58B3A17133148C2F82E82FD91829E06EF613 : A732D8D95DB8B38F75972EF4A084B41A6E6DB391B9E90E784CA0B592B7455881", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/a732d8d95db8b38f75972ef4a084b41a6e6db391b9e90e784ca0b592b7455881/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Trojan" + }, + { + "Type": "File", + "Value": "995E3677A772840ABA4C291D7A7F7367 : B509B57CA6E7FDBD171006507A668051109027F2 : D610820B177D1961135D01565512F5673DD034FB506C301EB0266DF797C6D947", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d610820b177d1961135d01565512f5673dd034fb506c301eb0266df797c6d947/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8BE283F3352951E36C67F997FFBD2387 : 1904DD588A1B7923A22D6190E957614AA28776D6 : 6EDF011C0139134369743FE004FCE89132541486800891410AC1B4216126F669", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6edf011c0139134369743fe004fce89132541486800891410ac1b4216126f669/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B20C5522D41471C8ABCD0070CF2BBE72 : 7032044D9201976A237140D1C10C0F2D84CD8206 : 5273CD88FCBBAFE3921DBB88F330A09B4B00C6BBAD7D4BC0BF897558A24BB5EB", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5273cd88fcbbafe3921dbb88f330a09b4b00c6bbad7d4bc0bf897558a24bb5eb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5EBB94535523F62A839DE537DD5DD1AB : 8D848C777CBE9FC845434979E10532B275AB4304 : D167E39B980F9106A2E6B1735D9AB7BA36AE14A89A8D3D815F79E8813EC85FA8", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d167e39b980f9106a2e6b1735d9ab7ba36ae14a89a8d3d815f79e8813ec85fa8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "A92253146F74BD195A12D6A7F7D00AF7 : 297A512E8336251BB414EB12EA26470B9483FC82 : 7948F7DB19BFA6CF31C06C030DA3DC75656A155B58D902F6956EA9EDFD38117D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7948f7db19bfa6cf31c06c030da3dc75656a155b58d902f6956ea9edfd38117d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "881BA73283329D85214EDD9E3C510F8A : 00BFDC37A9AB8CBB6A361E6F397784B847B5C51F : C8DD7B225D377091D1409095AE5CAC2BD284CCDF008A6F11068868E1ABDAFC29", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/c8dd7b225d377091d1409095ae5cac2bd284ccdf008a6f11068868e1abdafc29/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "DFC56813E5DFBC91DB8259E7CD5555CA : 9CEDF5C6E8E061491C8D1F66958F4717F2B694FE : 3DD422356385E20019C04D6891FE8C6E5C895F03FE2F6F12052552FF935458D3", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3dd422356385e20019c04d6891fe8c6e5c895f03fe2f6f12052552ff935458d3/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "CD72A818ED147A2A5F2BE7D1B3D70F36 : 1C66ECED71073479D7ABCBA97F5A322F91C07B2B : D33E1F1E744FD04D5330A9F81A020B6C202EDA48EE3BD207AD458A2ECFA428BB", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d33e1f1e744fd04d5330a9f81a020b6c202eda48ee3bd207ad458a2ecfa428bb/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "74BEB832CC4D8F789C495E20157FAD43 : C836134183A7C006A80C6F4DD96610A10A5C8757 : 451BEA91D1111C3C3BC0CA811BAECDBDF1CBE4A44F891F5B292D1DB16AB24E7A", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/451bea91d1111c3c3bc0ca811baecdbdf1cbe4a44f891f5b292d1db16ab24e7a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "D5AEE7B592F5E1C8FA49A8A30447E99F : E54CE0EFE656B86DF165BBB17A2DFE5B952B125F : 8E7327FAEB8C908147BA287D7DF09838508F46BFAA2551C86FD91B0A5095985C", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/8e7327faeb8c908147ba287d7df09838508f46bfaa2551c86fd91b0a5095985c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "94737C17B8EF91FD8A388967E826AF57 : 307A1FA5098F1A250D2B740581379ECDC4E19DAA : FE90754ECCFAE4678F097F12DABD655141084910FA03EA747A452321341627E7", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/fe90754eccfae4678f097f12dabd655141084910fa03ea747a452321341627e7/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8261A1EF315956122F0A58BA76922CBD : D14B480DEBFF230146923AF8D6727F726B2D7060 : 58E7B5E3E19E445BDD1D14B14F973E0FBAA61410925F20E3B7892ECF9B89F4AD", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/58e7b5e3e19e445bdd1d14b14f973e0fbaa61410925f20e3b7892ecf9b89f4ad/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "752A07ADF7F7F70ABB1D59DF90BB9C18 : A12D2AFD2E9844AFD5A3397864B3A691CD0A082D : 573B643E3F38EE69F358D779BF64543F9CB6B05EAD138440E419F4D75C2F3589", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/573b643e3f38ee69f358d779bf64543f9cb6b05ead138440e419f4d75c2f3589/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "3006D2181FF7A76FA014904C7239DDBD : DA38A3BBE832D9738DFE46F305448100C7C8A3D0 : 4D2BA24C69E3418EA8033760D8D3A2395B2CC226DEF74EEADCF5CB7999F62A34", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/4d2ba24c69e3418ea8033760d8d3a2395b2cc226def74eeadcf5cb7999f62a34/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "657E19149EF4DBB9371DB9552AFE5DEB : 11188541E40F42B39967D6DC9243CCE8E4343146 : 17181A3CA0B56A487A85C69CB6F301015732D637D924FCB946330E464A7ADB61", + "Organization": "Hybrid Analysis", + "Rating": 3, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/17181a3ca0b56a487a85c69cb6f301015732d637d924fcb946330e464a7adb61/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1A45C019A5C2EFD4CF52C0DE5594E60A : B3C2BEE57ADA3D8DE2EC2A34ECD93F064B2E1326 : 5EC2C3E8A10E1948BD7D96EEEEDA7AFE3FAD920ED1245F571F30CECA0AD69E75", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/5ec2c3e8a10e1948bd7d96eeeeda7afe3fad920ed1245f571f30ceca0ad69e75/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "871A44DAAD64366FA547A73D82D63595 : 74037C290D6B8FCAC05572D28473A2C6E15922C0 : 6F1180C2CF0029303E124289D07701A6F51C7F5B65AD2AF20BD5B199743FFEE9", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6f1180c2cf0029303e124289d07701a6f51c7f5b65ad2af20bd5b199743ffee9/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3C2995057AEFF9558BA6CE13DE396DFA : DD4D5CD7C143497DC99CCC9B16FED28AB824D159 : F20AE5D446DDA79E4ABEABEBE86B205C62524BAB2FC1410DFADDAD8592F7AF6F", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f20ae5d446dda79e4abeabebe86b205c62524bab2fc1410dfaddad8592f7af6f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DA838946C9D202D2D7A24949020B6701 : EF407C26C9B7226707FAF39129CE3030D08A18C1 : 522ED9FFB6F1941030DEDCF9E01F615BE69C6704E97696521292E582B717C59F", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/522ed9ffb6f1941030dedcf9e01f615be69c6704e97696521292e582b717c59f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "916EF1F1F3485C2DA3F09905EEC31846 : 2976C6F43A7A913DF007C5BE02C8F967B5F4B732 : 9AB2B6A681784398915A970825511875B3F1434BF38F09C38A5B46CC198E9830", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/9ab2b6a681784398915a970825511875b3f1434bf38f09c38a5b46cc198e9830/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "F475A4359AB304B9FD81485EEC25CD9B : 2346275C6F4FEA48664E81954464E140ECD77D25 : BAB68148EDAD7D49AE8C9A130FCE2357BD14091FE090C3CE28E6F93DE733F58F", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/bab68148edad7d49ae8c9a130fce2357bd14091fe090c3ce28e6f93de733f58f/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "0ED686A4958D078EEEAC40A9AC561312 : 83BE36FB3F205BD223BE16598DEC18DC95195BBE : D87DAF2E8DEFE2AE121C71857D909C8519178FED7729EBEA1D1BCDB7D058AC8A", + "Organization": "Hybrid Analysis", + "Rating": 5, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/d87daf2e8defe2ae121c71857d909c8519178fed7729ebea1d1bcdb7d058ac8a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "5C6BF42291BFACCF95430941A18435A2 : 4858DA914E873421888C3D39FEAB4F104FD2BB7E : 04735C4682047506F2634BF35BCFC19F0B3D1154771F73FEECAF99D387861254", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/04735c4682047506f2634bf35bcfc19f0b3d1154771f73feecaf99d387861254/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "1D3DB2161155A546AC7EDFEE097F47FD : 37DC0489B8A9FE578F1E9B760E76F079FFDE684C : F03C3D7B7F2D087F91D0A9412CBF7EA200186224094A9D9B4CC4B7C7176E2B7C", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/f03c3d7b7f2d087f91d0a9412cbf7ea200186224094a9d9b4cc4b7c7176e2b7c/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malicious" + }, + { + "Type": "File", + "Value": "32824822A555187ECA1B98925CFD6033 : FDD24784F34380DCE12FDDCCFB0BA2DB6FCC0476 : 19963D6792FDA8380DEF276F33D66E41CEFB1A29FF3F4DBAA68570A1A7A9860D", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/19963d6792fda8380def276f33d66e41cefb1a29ff3f4dbaa68570a1a7a9860d/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "58D12E79AE993A007211009FD7A19A8C : 18F66986887F2873F70A30A6C7BFA48CD3423C96 : CFEA3196DE5D9F3DA2A7DBCA57D11A67A801D7465E793DA3BC839AB93E368BF8", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/cfea3196de5d9f3da2a7dbca57d11a67a801d7465e793da3bc839ab93e368bf8/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0CD7E55DC733220D0BCD7C01ACC5E46E : 8F6800545B9D0A746002D821128A09D0AF7E7624 : 3821005C9E246432B29A7F086C19E445016438764E3F50D55941752A0189E432", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/3821005c9e246432b29a7f086c19e445016438764e3f50d55941752a0189e432/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "836C267EE6AA3059775179567C3E958C : 14A742428C56470E3B1573327FF096D60A5505D7 : B881067C00444A4F52063F45E4B7C8709AAED807E3A904AAAB4250F64F3AE09A", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b881067c00444a4f52063f45e4b7c8709aaed807e3a904aaab4250f64f3ae09a/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7138D981051A6F2961980753E5AAA423 : 54E66CD8FFDB88417054357FAD3466190937601C : 6D98C3DB7016B4BA356475F7A932713268E3A6D1969344FC5812B347639F65EF", + "Organization": "Hybrid Analysis", + "Rating": 4, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/6d98c3db7016b4ba356475f7a932713268e3a6d1969344fc5812b347639f65ef/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "56423BF804AE210C6C04312EA0BA04FF : DE772155EAEE877231D14415A54D37DB2B3DAF53 : B20ACE48150ABEBDFD07CB4AA9FF899F510004A5EB9C22025ABBC410B5970AE1", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b20ace48150abebdfd07cb4aa9ff899f510004a5eb9c22025abbc410b5970ae1/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "QVM03.0.0000.Malware" + }, + { + "Type": "File", + "Value": "1472EB05AA8F8B41E0DC7895843ED4CD : BC58FAC59508F493A20F1EF8012B78B46E3ABB86 : 0FF0EB7139518F35A4F4F733CC125A5D19E9426118AE33D1383735941BD42712", + "Organization": "Hybrid Analysis", + "Rating": 1, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/0ff0eb7139518f35a4f4f733cc125a5d19e9426118ae33d1383735941bd42712/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CECBF6356812E5D6D9E1E3D5CD38250E : 87B14B41E23108367A852AB9391C51EE1BBA0E13 : B4D0EF03593F13E6AD64B88AB62E47413486D19D54ED1B3DB5EEC7B655B8FE87", + "Organization": "Hybrid Analysis", + "Rating": 2, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/b4d0ef03593f13e6ad64b88ab62e47413486d19d54ed1b3db5eec7b655b8fe87/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Suspicious" + }, + { + "Type": "File", + "Value": "3D21908E3DC14CE80057811F3D126C3D : FD2A17DF90A914DF2BADE94C86F404DDD79D1BD6 : 7A496F2CD0282C9A0B5B70F29B2A3ADA3294DB4FF38B3D5672FEE92680485BE0", + "Organization": "Hybrid Analysis", + "Rating": 0, + "Confidence": 0, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://www.hybrid-analysis.com/sample/7a496f2cd0282c9a0b5b70f29b2a3ada3294db4ff38b3d5672fee92680485be0/?environmentId=100", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4B6B9CF2B3F210243187EB64F2C0E4BF", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "EB1C30CA9D5EAA90103A8A99C432913A", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B99A8174797996E90FEE0B670C8244F2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "08EF9721F9DBCEC2C7127BE6E3A93D58", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "091E37ED856CE47A39547A460439A10F", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4CA792A5AA8EDF1C50C3C5B1F7B8F0BC", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1DB3300FE6EF0D52ECABBB903FCA6A41", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "26E9CBB8222B343CD3522E252F9D67FC", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "522C756040C2895B7ED900AD1FE34DFB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "386F644EB484357204DD300D8FD8B3E3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7289757B78CBB666C2795929F836ACC6", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0EB91E3CC109679969D1473A6D81FC7A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CF177BD703FCB75D4A5D74F82999A69A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7BD9D66A17845408F76074EEA26E8DAB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A97FCD0842C8507C750C520F5652FAC0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "70D2411DDD32D9313EE214EBC0FB9330", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A52578A85BCDA367EE00AA2B5D2024EE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1039C8250B905B7ABD570BEA2A7D62AE", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14608FC9B9DF6963CC19DD1574A940FD", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C085762EA027731F5EF45813BE5E6741", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "16EEE33EC18D9AFFEC92A0D0D87DE541", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "CA6ED4A74BE251F1C23E9056E7B2003D", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A96DAE6973DB77EA00516463B879CA3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "292E47349F7202AC81E9120EA058560A", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2AAFED073F2FCBB22E47359B4E8BFC11", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "18E5FB5DA0BCB4F5026C14BA4FCB6375", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0F7A029EC88763D0EC0387DEE62B8937", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "6FE8980BD8C04D30DF2808A18D49989B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2E88BBABED728D1D48E2E3CBDCD1C0E1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D5B84F792BD539781885F65863A3822", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "670D73F5EA860773ECE24F3A6A19054D", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "884F3EF8BCCF5AFFE798E8DEC1C5EDDF", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "29D7AF39FA1F166971201971861686B4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E5A28CE0707D64EA94508AA141DA5888", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4902C5808169E97BA0EB11C76F34590B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1E54E8BC7A326AF673786F1A6F85E7E0", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4BEBEC51A4E13AC09F68A756F608B01C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0A241D615CFD53AFC97C6412949251FE", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "773887F872695301EE544E6C8784CE3A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "430D79B5E50D496610DB40FEBB430CBC", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4124D97E61A25A07920C7F19B3AFFA4F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DE3F8EE7634877268ABD92E247BD1DD3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "601600FF4ACC7171BC0E596552AD9229", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "00C912F5C5D150FB3B9C59759C6C9E04", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7F3C64133593B99E7753DA27C42DF1A5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0AAE6DFC25FC96F383723CB514269E3A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A687FD5C5C5C17FB768DD274C56CEDE1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2ABFBE8C72E1DAA2E50F5A746C5FFF07", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4F4EA84AF94EAB0B1B251777732BD80B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "21FFB72174F580147EC2CCED439249D0", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A45DC5EBDB9A19B366A4968772A88E78", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0C5E19B09798C8151C107FDA5D7374E5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5FC0A32082F8DB07B1D0A1C08BE9AD13", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "DFF5282E6E29A6CFE31352A61E9F7A47", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1F4D028855887D09647AD75E13900150", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "03110B453B4F277C31E23A356ECBED6C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "83E9139379B98CC205ACC95732479FCA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2374043909F8EFB8F6BD835F6E2DDEA4", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4016E1F498003B34487554F6BFE226A0", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9ACD1FED43B8480229A323E2A3708BF2", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11FF01C0FB9D0B73C6D332A9A4BB6195", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "23C4986CA1CA292F3312742D5890DFB7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "21DC108EB6FBC9610D0B75EE2B6A980A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "609DA0A03380E73B7AF866A9C0D6D721", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0012C6760363C0BBA78E827E434BD8F6", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "09E76748C7E76A8DCB9EE4E8E1B4B018", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "B718D579615196DC4A141A3E34FF45B1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4BA1C32862D4781A7CC2EC22EDFE0204", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "430D254EB06B910E0DED8E437399B7C9", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "12CBDF2C016B22643540F3EEC4DA736C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "3D25759DF3A9C052D5E149F279A4398A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5E251D92C57C8B73D407B1C763204517", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5486D65A5675047652E826C7A897EFA7", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "107FBC95CA5216DDB044BB98ADDA4951", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "01A071E5314BA023A7C3EFC8C552A9B5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FE6B807BB89D92152D7E5B145ACD988C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "11AE015A9EE4DEF08789FC10943544D9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "002BDC98F2CBCCCEE5B9AC65773D4953", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14049825BE31A080B37D05EE0A93718B", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0E3FFDCA1B38E44660EE0AF8ABEF4DB3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02C3FD156431A874C1AA960F149E8531", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "457E917791461F74414CA98CC71B6830", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "14715E2EBE89C85EE854C4A2233F0394", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "12E379C10EBCCD8E89A48FEEB70F2A45", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D2F007BF053D0F68843B71D79D8A4F8", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BF9F3AA0E438B6EFE48515B2BB747AFF", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "714B42578DE87D763FDC138EDA4E2C62", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "08DDB032E3686DC75D3CFA122528DC68", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "150081DB2399EC9814C9B94D65A3ABBA", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "203C8A9DE018BD3C5A3DAAA7C36BA2F3", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9B22FD71B6FC4E9CCBC8AE365D4D217C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "042A693A63E3F1D11AEECF0295895D1F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "105B0A11835371405276DD8D9F5B0AA5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "FA40EE7C5AB9CCF944A0E8E8F1ACB76E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "45571C7575450C4657934159678C2FAA", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "03CB4ABD2E0E06D8580FCAE54570CD03", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "04570BF44B8268C4A2BFD556D10CD533", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "288AE580951F36EF50B95C9D39725209", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "04625A66CC5E93A79EE00D19DA9E028A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9AF963E7AAC5C8E27C345F805AB3B8E5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2D79C03164AAE6B8435513B6B08E6B7B", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "22A6FA07DFB02935AA70B901E564E940", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "459A397772D42A9CAEC6C5F239ED98A0", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "BB729F5CDD1D444A229FF9B1A1007387", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "7D9700DAB2451DCABC3E6D0E39DC3524", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "82C145093B17D85799C3EF1465A40726", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "A6AF962FE46D1705AAC7816464FE26C8", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1F76244E329E4802A6CD5AEF3F529EC1", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "8E2D01E50C166B7CEA7CA5F54388F88A", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "79B0DD2029DC3349EC5D4B682E3CA653", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "C8C44535A980B243D33B066C228F6220", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "074BFC3FAB3217B60561C21CD4A43629", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "123CC501B32FB4C11F7B873336A565AB", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "D734A44AD04D9B2648D1C773E03C8A4D", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1FCB6587AAC96779212C9EA28F41369C", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0D93B98F8F06EA646B5725451806C0A9", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1F769DFA09F20CE4102D5C78458F63C3", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "5F3B9A6E3FF620E6E8E5277B6B3B0B50", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4B0652BEFE4DA8CC4D279A623E9D728F", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "756D03291F7AC0A82FB41582B2AE3CAD", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "455778D60D80651B5A931252CEC3D9E5", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "1FDB69870978DBA54713ED3F53CB1D16", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "E13B92B3440EAC00D70914225D5671C5", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2B65C3A67EDDA67E89374B2F334ED72B", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0806E478CFFF0CA781A010596950A75A", + "Organization": "ThreatExpert Source", + "Rating": 0, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "0576064C1571400674B8A2CB28788562", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "164F5D0191332C43F2539635BAF6D6D8", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4FE9F5889F1529E97427F86CC443B14E", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "02117AC9D5CE545052C305C8F16E2E16", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "172DB8CFE2AEB450B583855670E1F6E2", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D746F90C8048F8FFAA8195A71BB41E3", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "9A7417C29F951FCEE332E43343220C22", + "Organization": "ThreatExpert Source", + "Rating": 5, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "4D3C7E1BF74349FA2C33D7A29208BB82", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "2B8462114FD51EB43A08D7C7FD6124CD", + "Organization": "ThreatExpert Source", + "Rating": 1, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "This content was created by ThreatExpert (www.threatexpert.com). Reprinted with permission from ThreatExpert.", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "" + }, + { + "Type": "File", + "Value": "254A0E6D6FC70858487A77D3AAF576DF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/254a0e6d6fc70858487a77d3aaf576df", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "124B6833A4B48C173588F41A14E62586", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/124b6833a4b48c173588f41a14e62586", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BE174C90D22335A944BA28A9E722C819", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be174c90d22335a944ba28a9e722c819", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2DF99C66DA01539D645E489A5F0DCBD4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2df99c66da01539d645e489a5f0dcbd4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FB38B8266C0F72D48A2D67D25927B006", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fb38b8266c0f72d48a2d67d25927b006", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EEFFD2187AB589CAFEA02283BB967AFC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eeffd2187ab589cafea02283bb967afc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8FC132A51AB89952792C1DEFA65D3386", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8fc132a51ab89952792c1defa65d3386", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E2109C6A58E5128DBD1180C6904FD0EC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e2109c6a58e5128dbd1180c6904fd0ec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "12B870055FD209BAE6ED138E63179047", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/12b870055fd209bae6ed138e63179047", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F21400F999BD984D0B267070F9B54423", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f21400f999bd984d0b267070f9b54423", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "47B3CE669FC23CB80C2A85A6C71C7ECA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/47b3ce669fc23cb80c2a85a6c71c7eca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "54B962E07A82D70C1B14D1EB16627C8D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/54b962e07a82d70c1b14d1eb16627c8d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8C106CB50F0A4B565496A6856BC3644C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8c106cb50f0a4b565496a6856bc3644c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "E23ABF4B93A962FE8B0588ACB5B76A8E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e23abf4b93a962fe8b0588acb5b76a8e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "ACAA0CEA87F13D70007759CF666389F0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/acaa0cea87f13d70007759cf666389f0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DAEF365932F93AA8EF7F584306B31A63", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/daef365932f93aa8ef7f584306b31a63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "8DCB3E072D03AD8E395C84EAAA14D16E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8dcb3e072d03ad8e395c84eaaa14d16e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "444FB2A279D105B2FC16788148EA0B50", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/444fb2a279d105b2fc16788148ea0b50", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3D110D02807FBE8FDEC5ACEF6BD57D59", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3d110d02807fbe8fdec5acef6bd57d59", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "DCD2A2F279F215E76782747AA3CE9F42", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dcd2a2f279f215e76782747aa3ce9f42", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C288290A866B2F92A11FB07F7077F42C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c288290a866b2f92a11fb07f7077f42c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F1AB59216ACAA670C3326340D4C9454D", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 2, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f1ab59216acaa670c3326340d4c9454d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0DFBD323A19E7A6DBBC33F5F0243BE4F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0dfbd323a19e7a6dbbc33f5f0243be4f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B2A42539BBB167E5925529998B5FB659", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b2a42539bbb167e5925529998b5fb659", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C0FEE1BD60EF48B804CA9A38A42F4F86", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c0fee1bd60ef48b804ca9a38a42f4f86", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "78BBB9804552638D5E3508697AF65EB8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/78bbb9804552638d5e3508697af65eb8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6DA8D54F6EF64DC689904693942B74E5", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6da8d54f6ef64dc689904693942b74e5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B50D8DB257CB9C9F8A92F9C9EBA31DDB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b50d8db257cb9c9f8a92f9c9eba31ddb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "893FA1B28CE8B036470F7D0B45FAB542", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/893fa1b28ce8b036470f7d0b45fab542", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "10EA23BFCFBFCA14360845C1AA3D9DD8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/10ea23bfcfbfca14360845c1aa3d9dd8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FAEA6CC292BB65F5FFE37C6A6C8080FF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/faea6cc292bb65f5ffe37c6a6c8080ff", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "67EA92B391CE1736B16466116CFCE860", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/67ea92b391ce1736b16466116cfce860", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "67E56D65E53A15C39E5874DE2F07DB22", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/67e56d65e53a15c39e5874de2f07db22", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "2490C6CDEAA8F9465D9C438BD66991B9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2490c6cdeaa8f9465d9c438bd66991b9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5F8676515CCE64855CFEA8AA050B1675", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5f8676515cce64855cfea8aa050b1675", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "5101B4E7C1D6B31E2AAE30E040D8FE6D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5101b4e7c1d6b31e2aae30e040d8fe6d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3582FF9D27804B4071B29FB8FFF70EE8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3582ff9d27804b4071b29fb8fff70ee8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3015FC42F0414FE850A4E046FDDBC9E8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3015fc42f0414fe850a4e046fddbc9e8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "94FA5DA6392A96D5C5D4573F30C3EF37", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94fa5da6392a96d5c5d4573f30c3ef37", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DDE363C2024C86F924B1C031B2EDC1B8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/dde363c2024c86f924b1c031b2edc1b8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2F1F94D0E94F7AA6A936954ECA6B8303", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2f1f94d0e94f7aa6a936954eca6b8303", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3E1FA9E29A64852F972B7BECE3EB98D3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3e1fa9e29a64852f972b7bece3eb98d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6406FECCEBF7700F92CA59C4F985EC57", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6406feccebf7700f92ca59c4f985ec57", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E37F98073449B5F08BE54AB774662E6C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e37f98073449b5f08be54ab774662e6c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F633537561F4F2EDD305565F71924919", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f633537561f4f2edd305565f71924919", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EC75F42449DF1275EF213DA0828F3B86", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec75f42449df1275ef213da0828f3b86", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B9E8B2A90FEFA0EF3D82F39CD8DAD6E1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b9e8b2a90fefa0ef3d82f39cd8dad6e1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A733242E7C9165B0AB4641DDEEE3F2D8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a733242e7c9165b0ab4641ddeee3f2d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C1918F7F46C8BEDD60259F6CEC6FB145", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c1918f7f46c8bedd60259f6cec6fb145", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C5F3F09BA962304A37C0B383040DE3FD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c5f3f09ba962304a37c0b383040de3fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "92EF898D0C0386940F94B1234846D4E0", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/a8d0edf0d6c84623503fa4901223f5f86b93d8dcab7549f96302fe62b828fe88.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "645D0A8B83D579E21DEDDD267F9D4866", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/645d0a8b83d579e21deddd267f9d4866", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6A2795B0F083F900F1A59F030A7088EC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6a2795b0f083f900f1a59f030a7088ec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3E51C75AABF34BBE67D92388EA0C4206", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/743f7e269b208313fa1f25c16ae393c6ba0e1b21c87f13a18b3559ec0736e48d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "1BCC3823C789D6B98DBED79710F51F32", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1bcc3823c789d6b98dbed79710f51f32", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9BD747F89E83C05CC8C6ED9E60D2D6B4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9bd747f89e83c05cc8c6ed9e60d2d6b4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "910A245261D17A6052B140D511BA14B0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/910a245261d17a6052b140d511ba14b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C6B5F0563A93B057218500BFF1EE77FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c6b5f0563a93b057218500bff1ee77fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4D3D92BB70CDA602F874663B5A593177", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4d3d92bb70cda602f874663b5a593177", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E37AE303C07C4C885B8CD45C72C419FC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e37ae303c07c4c885b8cd45c72c419fc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9B68F5407670008E7AEF7050AAB3467F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9b68f5407670008e7aef7050aab3467f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2D70B0A0A385637D8228C00A7C21B44B", + "Organization": "Cryptam Source", + "Rating": 4, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/001a449bc8a70c104c4f688779d764438928e7dd851f1ed0f20c3754c53f6ee8.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "36FE7E0668075D91743665EC587B8704", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/36fe7e0668075d91743665ec587b8704", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1E788F4E802EB184A5E5E1F3C8C4BF19", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1e788f4e802eb184a5e5e1f3c8c4bf19", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1AC40B7817A74CB1F6CA7D6C99A9CC17", + "Organization": "Cryptam Source", + "Rating": 2, + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "https://repo.cryptam.com/reports/6a12550deb178ff99b409f472afd75a94613a77844052c2a1cfe6a324a99b32d.html", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Malware Tracker" + }, + { + "Type": "File", + "Value": "15CB1BF4D630B7BB29D1617665949F70", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/15cb1bf4d630b7bb29d1617665949f70", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "31B093A48D993AF750D68AE4F8F0D868", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/31b093a48d993af750d68ae4f8f0d868", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "02BD9D0C67513C2805C24F0CA5A6DD31", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/02bd9d0c67513c2805c24f0ca5a6dd31", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3C5EF1B5AA31F2B2B1B39CDBBD3DC6FA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3c5ef1b5aa31f2b2b1b39cdbbd3dc6fa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6FD90CFC94B2FE9E9EE6496EE2540702", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6fd90cfc94b2fe9e9ee6496ee2540702", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "10D04EA74FBE3DD617398A1C16C6AD42", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/10d04ea74fbe3dd617398a1c16c6ad42", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "159F57184843E685BEC2BA4BB1C28823", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/159f57184843e685bec2ba4bb1c28823", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "867AC7DDEC12249FABD9B554CA26DE95", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/867ac7ddec12249fabd9b554ca26de95", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C521D1E213BCE99AD5AC27351753B707", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c521d1e213bce99ad5ac27351753b707", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "238BBE987E772172E32FD8359E298B54", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/238bbe987e772172e32fd8359e298b54", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EAAA066F9DA113D8FB5262CAB8A6F015", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eaaa066f9da113d8fb5262cab8a6f015", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9A6E2CE733EDC2F5AB5D449E3075A3F5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9a6e2ce733edc2f5ab5d449e3075a3f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B6527208F0828AABB76808ED47D03DDB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b6527208f0828aabb76808ed47d03ddb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "89EF2AB72D05B25454892689A3DFF624", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/89ef2ab72d05b25454892689a3dff624", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5C601387481CB926A4B59D66F1F776BB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5c601387481cb926a4b59d66f1f776bb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DB616B47ADEBF4E6D437328AADF10FB5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/db616b47adebf4e6d437328aadf10fb5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "109A8CBA7850C8F083BF9D72558F2296", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/109a8cba7850c8f083bf9d72558f2296", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BCFAFBD6837E75FA54F9466F5595B750", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bcfafbd6837e75fa54f9466f5595b750", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D9625CB8460FBB3982E2905762434910", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d9625cb8460fbb3982e2905762434910", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F876144E6048A51E8F79B8A35C6C4484", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f876144e6048a51e8f79b8a35c6c4484", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4CC08C6A0BF906FBCE8CEC7E48F1EA98", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4cc08c6a0bf906fbce8cec7e48f1ea98", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "98CE96B8E00578E4774ED10404AA2FE2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/98ce96b8e00578e4774ed10404aa2fe2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FC6350707F0C8C892B63D3742BFFDFB3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fc6350707f0c8c892b63d3742bffdfb3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8268561BF30F7AC782F865AF6685600D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8268561bf30f7ac782f865af6685600d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "385FD0EF7DA7F4C289D120853ECD9772", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/385fd0ef7da7f4c289d120853ecd9772", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "908EE00382B364F91F78EDA3E3498093", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/908ee00382b364f91f78eda3e3498093", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7C3E8998D1FFF10A368F96764677261E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7c3e8998d1fff10a368f96764677261e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1B7D3CA7F82083B6C9059BEC3738696E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1b7d3ca7f82083b6c9059bec3738696e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9ABCFE8EAD2EAFE7B684980BFCF16E2C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9abcfe8ead2eafe7b684980bfcf16e2c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C2B244E79385481937BB38812BBCCC93", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c2b244e79385481937bb38812bbccc93", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3ABEC742E3F21092A2FF7681CA6DC488", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3abec742e3f21092a2ff7681ca6dc488", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CDA6A8F607656012590EC7C32C19BAB7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cda6a8f607656012590ec7c32c19bab7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A5B7C7DE20FA0A49266571239C07EDE1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5b7c7de20fa0a49266571239c07ede1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "98FC0B46FCFF7508D250490D16E26366", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/98fc0b46fcff7508d250490d16e26366", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AEDB716A5CDA91A1929A3B6503C10F9A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aedb716a5cda91a1929a3b6503c10f9a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8D4D11E6480488F717DFD12ED1051D2F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8d4d11e6480488f717dfd12ed1051d2f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "29BDE006727EBF61C839B9E81EBF4F73", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/29bde006727ebf61c839b9e81ebf4f73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E115090285886584123523772E91E468", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e115090285886584123523772e91e468", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "681782D1F5FB58B3432CB812BE11B800", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/681782d1f5fb58b3432cb812be11b800", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "381260FF747B81011563011761B037A5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/381260ff747b81011563011761b037a5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A5D14421442A3819636B3EA4B2911DC1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a5d14421442a3819636b3ea4b2911dc1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C281F725370AD416426F83478B6075F1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c281f725370ad416426f83478b6075f1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CD43F3B87827C60C48F963766D7358CB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cd43f3b87827c60c48f963766d7358cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8F76C5BFA6F35586697C1F7570B040F8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8f76c5bfa6f35586697c1f7570b040f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0F13F684730332642416D2D801CF2582", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0f13f684730332642416d2d801cf2582", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BFE41223C43E8123A48AFFBF907DFCD5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bfe41223c43e8123a48affbf907dfcd5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2DAF954EC5103B4A95AC3A96EF34A130", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2daf954ec5103b4a95ac3a96ef34a130", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "98C1FF47C0E73B596C70AD4CAFF76753", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/98c1ff47c0e73b596c70ad4caff76753", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8B0FB17025AE9F44A66CD0D216DFEDB3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8b0fb17025ae9f44a66cd0d216dfedb3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6CB29F4942C898DCB874DEF322F1887E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6cb29f4942c898dcb874def322f1887e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E705AC432300A831EF477B98361C896F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e705ac432300a831ef477b98361c896f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8F72D07EC0D2B23D76C789D6600C5D2D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8f72d07ec0d2b23d76c789d6600c5d2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "477849312A81E47F37AB2DCF9997685F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/477849312a81e47f37ab2dcf9997685f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A748DE0F772873098C02A8BDE8D1CA15", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a748de0f772873098c02a8bde8d1ca15", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B488133037E8C566740F9588BED17A09", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b488133037e8c566740f9588bed17a09", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "68B8B7F098B375E45C418A4A3296919C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/68b8b7f098b375e45c418a4a3296919c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "35BAA82E56D1965008690A5E3F387C11", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/35baa82e56d1965008690a5e3f387c11", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FA90692C30180FC9FC3A42EC55CE97CB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fa90692c30180fc9fc3a42ec55ce97cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "271041CB1D1812B8ED6470DA8063C9C8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/271041cb1d1812b8ed6470da8063c9c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E757D5CB0CC2EDD6F0769CADF967AB2A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e757d5cb0cc2edd6f0769cadf967ab2a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "167A977D081C29CFE7F3C1873AEBBEFB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/167a977d081c29cfe7f3c1873aebbefb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "11DA017FCAC6BD85BB9B260933AFB81C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/11da017fcac6bd85bb9b260933afb81c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A7D44800D5CCD4F51DA8C308DC15B622", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a7d44800d5ccd4f51da8c308dc15b622", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2D4A70954931A9A1DAF1508943C85E4C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2d4a70954931a9a1daf1508943c85e4c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4BC88A9C9A3148DE64F7CF7ACEA1367B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4bc88a9c9a3148de64f7cf7acea1367b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A05218E92B25BBA2A6323AA7839660B9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a05218e92b25bba2a6323aa7839660b9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "417F34777A1B1C6874D24AB753C80DEA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/417f34777a1b1c6874d24ab753c80dea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "96F527BC32A9CF37D59C45F00C28DADE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/96f527bc32a9cf37d59c45f00c28dade", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "487755942FB8FF79E5D9D761C301F844", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/487755942fb8ff79e5d9d761c301f844", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1E03FA8D6BF68AFE7EFADB0E31559ACA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1e03fa8d6bf68afe7efadb0e31559aca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "27DD331469AF5A78D9D2E85F7543BD73", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/27dd331469af5a78d9d2e85f7543bd73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "45E8E5230611F4385E386171E5B57D55", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45e8e5230611f4385e386171e5b57d55", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "381A8AADE5799DAF5D31BC821018C069", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/381a8aade5799daf5d31bc821018c069", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "638C3F47C8533B5FB1BE66A10887A695", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/638c3f47c8533b5fb1be66a10887a695", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FB39FF85CAE42D13B70897FA96CEE19A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fb39ff85cae42d13b70897fa96cee19a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7B3765B5E3A3DC0FCB41D97A80C9FF91", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7b3765b5e3a3dc0fcb41d97a80c9ff91", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3F72B637070C1082DC9B92C2ABB8D5BC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3f72b637070c1082dc9b92c2abb8d5bc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EBC25D5154CCF0260DF3AE3AF00B0712", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ebc25d5154ccf0260df3ae3af00b0712", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7F81C2DC780FFAC0CEE985885C7D05B2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7f81c2dc780ffac0cee985885c7d05b2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A95E9D8CE677AAF5F5DFE96637FD96A1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a95e9d8ce677aaf5f5dfe96637fd96a1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "232479EB629FAE1F9CAA7B502209F041", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/232479eb629fae1f9caa7b502209f041", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C34FF064C9B93D32424B02270EDACF88", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c34ff064c9b93d32424b02270edacf88", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "89C02CE83EFB01B37F8A8218DC167801", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/89c02ce83efb01b37f8a8218dc167801", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "42C8687021E5626EC4811B8DE1DEF1AD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/42c8687021e5626ec4811b8de1def1ad", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6F203C3AA9FA41F30C0F25A429CE1369", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6f203c3aa9fa41f30c0f25a429ce1369", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C2330A2C6D23A289E6FCC6CBA855DCEA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c2330a2c6d23a289e6fcc6cba855dcea", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6A314523BBE3677F9FC8584F5C968114", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6a314523bbe3677f9fc8584f5c968114", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C5205FAC797454A3F8DA3A7D3C73F882", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c5205fac797454a3f8da3a7d3c73f882", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C66F2A86E10A11980D5D75D841FE77D8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c66f2a86e10a11980d5d75d841fe77d8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DF7F9B41D39E5D90B1C76D4100D7ED12", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/df7f9b41d39e5d90b1c76d4100d7ed12", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "850E50AA255EE8D767B665401351B9BD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/850e50aa255ee8d767b665401351b9bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F28A76500DDBEE7DAF2E6139B3B1F62C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f28a76500ddbee7daf2e6139b3b1f62c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A28ADB04E6E745F671F37DC17FD618D3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a28adb04e6e745f671f37dc17fd618d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B5087CB8C7DFC04261C76792BD2DE8F8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b5087cb8c7dfc04261c76792bd2de8f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0421EB670FD309B6CA7637DF2B4B7EA2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0421eb670fd309b6ca7637df2b4b7ea2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BC5095C6E279B45FFC555948140D3991", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bc5095c6e279b45ffc555948140d3991", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "01977934ED4FCA64593494DFB5C12BDB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/01977934ed4fca64593494dfb5c12bdb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AA4E6DA8DA8ADDACE52048D5C296D34D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aa4e6da8da8addace52048d5c296d34d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "28E5FB07E9C7702858A07F8564EEC022", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/28e5fb07e9c7702858a07f8564eec022", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "25E35AAD9157DEC9A6B326D0CCD4D8F7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/25e35aad9157dec9a6b326d0ccd4d8f7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C568CCAF8F99D435D572E3E79728F9FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c568ccaf8f99d435d572e3e79728f9fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E505D85BEEE14F85868D0797214CCA97", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e505d85beee14f85868d0797214cca97", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E38D010C30D46261BF9162204DA0355F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e38d010c30d46261bf9162204da0355f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DB1001516F1097BABD4A9C951F9FEC8A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/db1001516f1097babd4a9c951f9fec8a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BE4333E082861CE20E40CD2E9BB55F2B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/be4333e082861ce20e40cd2e9bb55f2b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5DF5EBC036AA90869BECC5CFECE9DBB3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5df5ebc036aa90869becc5cfece9dbb3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "52D6892EBF9AEF458C0863BD3EFB16DA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/52d6892ebf9aef458c0863bd3efb16da", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8D225526BEA6CF98019F485102BEBBC6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8d225526bea6cf98019f485102bebbc6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E48A496CB480661B48EBDFD6E041D4C0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e48a496cb480661b48ebdfd6e041d4c0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "11CF0EEF68C89093109FBBCF2BF07BE6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/11cf0eef68c89093109fbbcf2bf07be6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8BA3345F8EB0428CC7AA3237FBE328BD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8ba3345f8eb0428cc7aa3237fbe328bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9E22D0C439B303405675545BB5ACFE67", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9e22d0c439b303405675545bb5acfe67", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "59D5D45C439F5B29FFF189758F799A79", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/59d5d45c439f5b29fff189758f799a79", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DEEF93FEDB326C7E0A72134AD907721F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/deef93fedb326c7e0a72134ad907721f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "964AF027FE0ABE1683E14AA36F0BB13E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/964af027fe0abe1683e14aa36f0bb13e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E3B906852A6BF9EEE357A9DFBA278D46", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e3b906852a6bf9eee357a9dfba278d46", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C1FDCABF3442B6C73FAE3988C04E3B49", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c1fdcabf3442b6c73fae3988c04e3b49", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8812638814CF162AA11AF58E3234B60C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8812638814cf162aa11af58e3234b60c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1147809B416AC1B19F0AFB55C8146899", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1147809b416ac1b19f0afb55c8146899", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "ACB332A54EB45C0CCDEDB713103D6497", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/acb332a54eb45c0ccdedb713103d6497", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3AF2DF1360F406E0442961545312ACF9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3af2df1360f406e0442961545312acf9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DA4446599A6727FD687898DDE6DACECA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/da4446599a6727fd687898dde6daceca", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3C470CA133090CB40A4105E484BDCD30", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3c470ca133090cb40a4105e484bdcd30", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1BDAA4D53AC531109B7A142F6650325D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1bdaa4d53ac531109b7a142f6650325d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "53FB0DECCCAA5B1A80F51F51E7739DCE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/53fb0decccaa5b1a80f51f51e7739dce", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8B1177F50A062F75F82E4CEA01E59634", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8b1177f50a062f75f82e4cea01e59634", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B5DCABD2E5A0300A75DB5D1E3A9DCF6B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b5dcabd2e5a0300a75db5d1e3a9dcf6b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "09E4BF745E84C342C9B2C5D8FE5F0949", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/09e4bf745e84c342c9b2c5d8fe5f0949", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8AD853B819E2BA1620E31EBF61C2A716", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8ad853b819e2ba1620e31ebf61c2a716", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2DE5101D7E9A1EAE0D20D54DF3A64235", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2de5101d7e9a1eae0d20d54df3a64235", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "215D3D4ED810C82A505B667FC96731D3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/215d3d4ed810c82a505b667fc96731d3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F05F3CC9D3688B8F7E3CF035C2D0DEDD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f05f3cc9d3688b8f7e3cf035c2d0dedd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E03E0F6172533F52A021C013A604CFAF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e03e0f6172533f52a021c013a604cfaf", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "25CA2C9BE6E09F858EA7ACF8FC7ED3D2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/25ca2c9be6e09f858ea7acf8fc7ed3d2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "19B6D10DD5C2B0D23C4A90B16A1FA1A4", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/19b6d10dd5c2b0d23c4a90b16a1fa1a4", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7A350F22E04D5F0DEADB8E55A42587A3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7a350f22e04d5f0deadb8e55a42587a3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6D7E197184BCBA16BAD05EA9DA677162", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6d7e197184bcba16bad05ea9da677162", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2A7686B2DF378400263DF6C7E0E901FE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2a7686b2df378400263df6c7e0e901fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3797FFCE870DB4159A8380EA308ACECE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3797ffce870db4159a8380ea308acece", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F5BD1818B2EA6479F830072CAD89262C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f5bd1818b2ea6479f830072cad89262c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0E27ADE452B7396AEBE4A0D09A1B596A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0e27ade452b7396aebe4a0d09a1b596a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6EBF0D02D8418128337A72B6ECC1F2FA", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6ebf0d02d8418128337a72b6ecc1f2fa", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "68C2DBA29604EED23E3C4EF7843302B6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/68c2dba29604eed23e3c4ef7843302b6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D09A658D825D87988911AB0D6F561DD6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d09a658d825d87988911ab0d6f561dd6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4756207579E45A1120086A28B4E9E808", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4756207579e45a1120086a28b4e9e808", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8E0ADBB7DA3014C24F8B325E902BAC9E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8e0adbb7da3014c24f8b325e902bac9e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "721344FC3FE197A7824F4C4A6A4C7AC9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/721344fc3fe197a7824f4c4a6a4c7ac9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "37C4A1F4CB6DC4DB386DE7A4B3247734", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/37c4a1f4cb6dc4db386de7a4b3247734", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "7BD162C46D2616FC080D292525AD831B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/7bd162c46d2616fc080d292525ad831b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F5B698418EA11296FE4F0FCF2CE988FD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f5b698418ea11296fe4f0fcf2ce988fd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EA94F7E6B6E0CB92C96608174BF95038", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ea94f7e6b6e0cb92c96608174bf95038", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E2C74733D8F7A00DF936B8503FA44162", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e2c74733d8f7a00df936b8503fa44162", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EC2609F838753319A66C1ACDC03F90B0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ec2609f838753319a66c1acdc03f90b0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "66383AA83BDF54EE1F83A4F4334F1AF1", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/66383aa83bdf54ee1f83a4f4334f1af1", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "03481E6A2D0DA59B0EF84F918EBEA012", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/03481e6a2d0da59b0ef84f918ebea012", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6D5B4B3C611A4519E1E3051D943C3B8F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6d5b4b3c611a4519e1e3051d943c3b8f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D39ACF42B7B4CD23996455298D226AC6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d39acf42b7b4cd23996455298d226ac6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2BF1D94BDC2B43F75CBC7444AB42E94B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2bf1d94bdc2b43f75cbc7444ab42e94b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E4A180239B5B8F35A948C1B141D4FF71", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e4a180239b5b8f35a948c1b141d4ff71", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C9572C5DE34B530D0EAD4E0FE843AD64", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c9572c5de34b530d0ead4e0fe843ad64", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9B88791EB609D4C1F7C0A283D5E1C2F2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9b88791eb609d4c1f7c0a283d5e1c2f2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "333C897B7B249B4128E3BA7DD2806B6B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/333c897b7b249b4128e3ba7dd2806b6b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9ADB2D43CCADB159DC0BB1DD0F71B7F6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9adb2d43ccadb159dc0bb1dd0f71b7f6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F388FEF79BC6DADFA5797D60A8AA8307", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f388fef79bc6dadfa5797d60a8aa8307", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "18B40BA7EF418617552954C1F7EC135A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/18b40ba7ef418617552954c1f7ec135a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "656A6708EE8B2BD57E6EB423E451D7C5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/656a6708ee8b2bd57e6eb423e451d7c5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "923BD6361A5F5CB737BD317A0BA5B79B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/923bd6361a5f5cb737bd317a0ba5b79b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1171622FDCB455CFBCA18779EE409832", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1171622fdcb455cfbca18779ee409832", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "05C36E43CF621249F506FF80DA68B88A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/05c36e43cf621249f506ff80da68b88a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CCD73B70FB89FD53090BBDA040E65425", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ccd73b70fb89fd53090bbda040e65425", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "20213A104E8FF94B7F926C87D143EDF6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/20213a104e8ff94b7f926c87d143edf6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "546D6380B5BB4E811D96A81EE3320804", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/546d6380b5bb4e811d96a81ee3320804", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1B4CDE4EC1409CBE5DFAFF258212AEEE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1b4cde4ec1409cbe5dfaff258212aeee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F5BABA69F0F4C6C39091D63FFB70CD10", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f5baba69f0f4c6c39091d63ffb70cd10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E1D9516702FF0A3EB8DC37576A2758EE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e1d9516702ff0a3eb8dc37576a2758ee", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BD709C3CE9436F5D601CA308A940B766", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bd709c3ce9436f5d601ca308a940b766", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8E5A2965983EC9FCDE16E6E6E0D73D31", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8e5a2965983ec9fcde16e6e6e0d73d31", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CBB1F0362DDFF4AFEEA2AC7D86969557", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cbb1f0362ddff4afeea2ac7d86969557", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2495E21DEEEF140EBB7212D13C421434", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2495e21deeef140ebb7212d13c421434", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3A1E7C46F9C3179704BE1D56C0BFA2F3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3a1e7c46f9c3179704be1d56c0bfa2f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C20A87B87CDB444A68AF026879D5E8CB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c20a87b87cdb444a68af026879d5e8cb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9050D0390D931CDAB447F053E86B0C72", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9050d0390d931cdab447f053e86b0c72", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8C37158E77DA62C30B1D1CC13456A365", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8c37158e77da62c30b1d1cc13456a365", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "BF1F8F1BD725E4B73CED6B03FEA77583", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/bf1f8f1bd725e4b73ced6b03fea77583", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "723FB327D2C5918FAF8475BB4DF7DE82", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/723fb327d2c5918faf8475bb4df7de82", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2BA1B571CE0259151D005C1B8416012E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2ba1b571ce0259151d005c1b8416012e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4AEF9ABB2510FD3BCD4D998247BF6984", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4aef9abb2510fd3bcd4d998247bf6984", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5214427319008C7C88F9FCBC8233894F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5214427319008c7c88f9fcbc8233894f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3C7B9223871A5648E09194EAF81DF8DE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3c7b9223871a5648e09194eaf81df8de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6977F17FFA48D1F699BC69E2C86F131F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6977f17ffa48d1f699bc69e2c86f131f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E8F0777AECFA1E5D91D3D39FE082EAFE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e8f0777aecfa1e5d91d3d39fe082eafe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3FF19FD811B7052C8E6BCE3B3A6F4851", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3ff19fd811b7052c8e6bce3b3a6f4851", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2757AD03731D9D812A86E053F38CB77B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2757ad03731d9d812a86e053f38cb77b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1A6806E1AB567FE6D8DBDD1FF5C23913", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1a6806e1ab567fe6d8dbdd1ff5c23913", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2A5FA3F80FF992D608C9FB46E7A0DEBB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2a5fa3f80ff992d608c9fb46e7a0debb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "969BD9931227A0559EEEBF542E7C05B6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/969bd9931227a0559eeebf542e7c05b6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3262346D83DC34D87CB12E67AC74E050", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3262346d83dc34d87cb12e67ac74e050", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C193C4BDCC01CC3B311E9D8EC230EC2E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c193c4bdcc01cc3b311e9d8ec230ec2e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8ABBD5BAC524EF667846A39D8817BA40", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8abbd5bac524ef667846a39d8817ba40", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F7D68CCE356041EA399D98F2F9D1B9C8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f7d68cce356041ea399d98f2f9d1b9c8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B65EFDF2E64A91B9DC31D736D1B9DF8B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b65efdf2e64a91b9dc31d736d1b9df8b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3488086415E1B283FC221C81B2720FD8", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3488086415e1b283fc221c81b2720fd8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8B56B79AEBE150E0CD990986EFA7250D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8b56b79aebe150e0cd990986efa7250d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "C5EE2721369965BA5B7AF6F7FC35E665", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c5ee2721369965ba5b7af6f7fc35e665", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "3A515947A28A43CF603D3AE72E76BD0B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3a515947a28a43cf603d3ae72e76bd0b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AD0327DC14108A95546AFA2A40CAAF73", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ad0327dc14108a95546afa2a40caaf73", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0CE4279008320C09EE5AA9B12C814CDB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0ce4279008320c09ee5aa9b12c814cdb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "8722F19A330D0E5BD88CF64374B8B18E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/8722f19a330d0e5bd88cf64374b8b18e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AAF345358A24199637073777F59E0140", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aaf345358a24199637073777f59e0140", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A38E50A1BE71A2836E6582B16F2E0BDB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a38e50a1be71a2836e6582b16f2e0bdb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "EEE18CA8CA35FA9D67B5FA8A73828AF2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eee18ca8ca35fa9d67b5fa8a73828af2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6AB8B02CB3A9FCD50AD4FD95933749E0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6ab8b02cb3a9fcd50ad4fd95933749e0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "910485D13221AB44F43D2FD737B341EB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/910485d13221ab44f43d2fd737b341eb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "10142EC20BE9E9836E67A18F19201BFE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/10142ec20be9e9836e67a18f19201bfe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "97BD34A8D749DCD691391697540FD3A5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/97bd34a8d749dcd691391697540fd3a5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4E8376804E8214C67C8B684381BB582D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4e8376804e8214c67c8b684381bb582d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "22EC19EC779029DDBA30F14BAFB9AD74", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/22ec19ec779029ddba30f14bafb9ad74", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D0DB0A3AEDE913EC7E806154F4EE152F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d0db0a3aede913ec7e806154f4ee152f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5A8CB37DA467496FEF4EB96AAECADC2F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5a8cb37da467496fef4eb96aaecadc2f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "850117FA2442D1D96D06AF6A3E911445", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/850117fa2442d1d96d06af6a3e911445", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A0446FB10099C74B0644A51A26A37191", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a0446fb10099c74b0644a51a26a37191", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "71CCB8F1211035DD21747BD6B05CE551", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/71ccb8f1211035dd21747bd6b05ce551", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "94753B2EC0D415482D9905C054ACA8B7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/94753b2ec0d415482d9905c054aca8b7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1B29146F18A64DD839E57058E7501DF6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1b29146f18a64dd839e57058e7501df6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B20629F4F31FECA0858C81A7727A4216", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b20629f4f31feca0858c81a7727a4216", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "032C50F079F370B67BC80F5EF27CDE10", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/032c50f079f370b67bc80f5ef27cde10", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AA1DF894D7804ABF8D2DF11848EC522D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/aa1df894d7804abf8d2df11848ec522d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A0CE929C4FCFC0FBC3176794FE93B3EF", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a0ce929c4fcfc0fbc3176794fe93b3ef", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FE92898A05716138305C335ABB5B570C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fe92898a05716138305c335abb5b570c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2BCA60AF81C2D70CEEBF5CC5EB8F7F15", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2bca60af81c2d70ceebf5cc5eb8f7f15", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "37C413FF806E901EA16D0BCAB90E8AA9", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/37c413ff806e901ea16d0bcab90e8aa9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "09BFBF8EAFA073DBA1742FB1D2B415B5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/09bfbf8eafa073dba1742fb1d2b415b5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "52AFA7918B7DD2E4FD7967319CCED83A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/52afa7918b7dd2e4fd7967319cced83a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6DFD7962CD758938A1ADB4DFA592ACA6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6dfd7962cd758938a1adb4dfa592aca6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1D4D930483072649BC11884E5A2BD90E", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1d4d930483072649bc11884e5a2bd90e", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CAF217899FA294D1F146674EE3FB85A0", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/caf217899fa294d1f146674ee3fb85a0", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D673D328AC863C36040CE912F4DC3B0C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d673d328ac863c36040ce912f4dc3b0c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6C26FC97A80B1A043DFC483D2EF7A626", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6c26fc97a80b1a043dfc483d2ef7a626", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4B595C0108FAC383359A562188FFB8F5", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4b595c0108fac383359a562188ffb8f5", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6E86D47474F2CE91D07E5DF4C8EA39BD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6e86d47474f2ce91d07e5df4c8ea39bd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A3D9002DC018D077D0976EE08F8F48FB", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a3d9002dc018d077d0976ee08f8f48fb", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "498D53A6C04BDEAD638286BD2AE03FEC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/498d53a6c04bdead638286bd2ae03fec", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "6FBB968A2915D4C3AC8BEEA781B51268", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/6fbb968a2915d4c3ac8beea781b51268", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "F4B6614C2AE34FB767902C4B85A60C43", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f4b6614c2ae34fb767902c4b85a60c43", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B0D9D7C0599E9D7F9E6F3E86F1AD8507", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b0d9d7c0599e9d7f9e6f3e86f1ad8507", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A1558F6DCA0E853029E0FB936E13906B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a1558f6dca0e853029e0fb936e13906b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A4DEE68E3E181D9FA4B46113FF5FFA99", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a4dee68e3e181d9fa4b46113ff5ffa99", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "AF199362F9D4323E34DA298760D46C2A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/af199362f9d4323e34da298760d46c2a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "16B1CB6875ED7FE554754822E2491D1D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/16b1cb6875ed7fe554754822e2491d1d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E8CB8656245D364F1D99A47A9781BE17", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e8cb8656245d364f1d99a47a9781be17", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B0CA726E645D14EF6FC783E831C44650", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b0ca726e645d14ef6fc783e831c44650", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "1492421B0ACD33C1ADA68FAD880F1C75", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/1492421b0acd33c1ada68fad880f1c75", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0BD1BA488857FDCD02AA683D56388D23", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0bd1ba488857fdcd02aa683d56388d23", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B24574EE70B84E5910EF4BF3D57AB065", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b24574ee70b84e5910ef4bf3d57ab065", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "B0EEBBFE57C28FD21F3B9626A0B84399", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b0eebbfe57c28fd21f3b9626a0b84399", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "FB93296AA23DC7A38940C8D486AAA3F3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fb93296aa23dc7a38940c8d486aaa3f3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "2FEF40B85D5CAD3778FDAE13BC719925", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/2fef40b85d5cad3778fdae13bc719925", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CA66475316DA77AF804DD48A7417DA34", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/ca66475316da77af804dd48a7417da34", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "E4E3A565D3117020C3F0A80405085DCC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/e4e3a565d3117020c3f0a80405085dcc", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "0E872AD5E5E7E12AC4E9CD68186E28FE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0e872ad5e5e7e12ac4e9cd68186e28fe", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9408E64A9950F628438690503525AFFD", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9408e64a9950f628438690503525affd", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A57A14B97C3D652FF44440703913EE25", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a57a14b97c3d652ff44440703913ee25", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D670A00551F586FADA6EB738A3DE2A98", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d670a00551f586fada6eb738a3de2a98", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "31F44C4479E57F3DF1E3363A45ECDF7F", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/31f44c4479e57f3df1e3363a45ecdf7f", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D89599D0CCA78C4E485F8262630A1A13", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d89599d0cca78c4e485f8262630a1a13", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "11412C76D2FCACBBA2EA4E774A9CD9B6", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/11412c76d2fcacbba2ea4e774a9cd9b6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FBED0613A6E0CBB9BD9479D775418AAE", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fbed0613a6e0cbb9bd9479d775418aae", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "45C83BD8F47FF0CEB4BDD7CC15988A7B", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 90, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45c83bd8f47ff0ceb4bdd7cc15988a7b", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "31663F116B5E4274690864CF6529CF0A", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/31663f116b5e4274690864cf6529cf0a", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "9F5133CCB0F84D667F2CC6B24562FB02", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/9f5133ccb0f84d667f2cc6b24562fb02", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DA9178758DD0E0559FA8D420AC786BD2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/da9178758dd0e0559fa8d420ac786bd2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "A062ED3479804D43C70E1D3DE44333BE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/a062ed3479804d43c70e1d3de44333be", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "3B3CF96735E8C10CD35378A5D907BC1D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/3b3cf96735e8c10cd35378a5d907bc1d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "5C6BF42291BFACCF95430941A18435A2", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/5c6bf42291bfaccf95430941a18435a2", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "23E01CD0D322044511B0E2F55ABC56A6", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/23e01cd0d322044511b0e2f55abc56a6", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4D4614370BF0672B51805AA663F6D661", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4d4614370bf0672b51805aa663f6d661", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "64A7B20E57F95D59FACA82E409D32923", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/64a7b20e57f95d59faca82e409d32923", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "D2EC08B180061E75EDE3EC5CE584D882", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/d2ec08b180061e75ede3ec5ce584d882", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B1750669E80AF855ED479146995467DE", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b1750669e80af855ed479146995467de", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "4FE8C3C54ABF231037D1E8964B784CB3", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4fe8c3c54abf231037d1e8964b784cb3", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "4737E6D74E405D9F24ABC9F90AAD835C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/4737e6d74e405d9f24abc9f90aad835c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "CD0AE2A25370010E6AA3F7FFC27D5B2D", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/cd0ae2a25370010e6aa3f7ffc27d5b2d", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "FCB49D5CC814A22731BA807FF34E77AC", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/fcb49d5cc814a22731ba807ff34e77ac", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "0880F1B8C0A0DAE5CFFE8A1BBDB652F8", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/0880f1b8c0a0dae5cffe8a1bbdb652f8", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "C10CD36403F69245E2306D335C3B5932", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/c10cd36403f69245e2306d335c3b5932", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "031300A2D2576791560337FCD42AEC63", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/031300a2d2576791560337fcd42aec63", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Unknown" + }, + { + "Type": "File", + "Value": "DE4E79BBF99DDB6264D41CCEDC0AAA95", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/de4e79bbf99ddb6264d41ccedc0aaa95", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "016DCC4F6C9F6B0A76A89DED51B32047", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/016dcc4f6c9f6b0a76a89ded51b32047", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "F2F69872AF7231031BF35308AEF3ABB7", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 70, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/f2f69872af7231031bf35308aef3abb7", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "B0D85F55CFB256C63016EF873E225D7C", + "Organization": "SARVAM Source", + "Rating": "", + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/b0d85f55cfb256c63016ef873e225d7c", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "45546B1A47379618C66C83D3479B8595", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/45546b1a47379618c66c83d3479b8595", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "93E6E9B56DF74F9385824253CB7D4EF9", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/93e6e9b56df74f9385824253cb7d4ef9", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + }, + { + "Type": "File", + "Value": "EACFD6E58A5064296FC00A6AEF9BA352", + "Organization": "SARVAM Source", + "Rating": 2, + "Confidence": 30, + "DateAdded": "11-06-2016", + "LastModified": "11-06-2016", + "Description": "", + "Source": "http://sarvam.ece.ucsb.edu/analysis/eacfd6e58a5064296fc00a6aef9ba352", + "DNS": "", + "Whois": "", + "Observations": 0, + "Date Last Observed": "", + "False Positives": 0, + "Date FP Last Reported": "", + "Tags": "Vision Research Lab UCSB" + } +] diff --git a/src/assets/fonts/Prompt/Prompt-Bold.ttf b/src/assets/fonts/Prompt/Prompt-Bold.ttf new file mode 100644 index 0000000..3d376cf Binary files /dev/null and b/src/assets/fonts/Prompt/Prompt-Bold.ttf differ diff --git a/src/assets/fonts/Prompt/Prompt-Light.ttf b/src/assets/fonts/Prompt/Prompt-Light.ttf new file mode 100644 index 0000000..cba84d9 Binary files /dev/null and b/src/assets/fonts/Prompt/Prompt-Light.ttf differ diff --git a/src/assets/fonts/Prompt/Prompt-Medium.ttf b/src/assets/fonts/Prompt/Prompt-Medium.ttf new file mode 100644 index 0000000..116847d Binary files /dev/null and b/src/assets/fonts/Prompt/Prompt-Medium.ttf differ diff --git a/src/assets/fonts/Prompt/Prompt-Regular.ttf b/src/assets/fonts/Prompt/Prompt-Regular.ttf new file mode 100644 index 0000000..f000d23 Binary files /dev/null and b/src/assets/fonts/Prompt/Prompt-Regular.ttf differ diff --git a/src/assets/fonts/Prompt/Prompt-SemiBold.ttf b/src/assets/fonts/Prompt/Prompt-SemiBold.ttf new file mode 100644 index 0000000..59761fb Binary files /dev/null and b/src/assets/fonts/Prompt/Prompt-SemiBold.ttf differ diff --git a/src/assets/fonts/data-table/data-table.eot b/src/assets/fonts/data-table/data-table.eot new file mode 100755 index 0000000..e2f181f Binary files /dev/null and b/src/assets/fonts/data-table/data-table.eot differ diff --git a/src/assets/fonts/data-table/data-table.svg b/src/assets/fonts/data-table/data-table.svg new file mode 100755 index 0000000..1d7e43a --- /dev/null +++ b/src/assets/fonts/data-table/data-table.svg @@ -0,0 +1,26 @@ + + + +Generated by Fontastic.me + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/fonts/data-table/data-table.ttf b/src/assets/fonts/data-table/data-table.ttf new file mode 100755 index 0000000..a86af94 Binary files /dev/null and b/src/assets/fonts/data-table/data-table.ttf differ diff --git a/src/assets/fonts/data-table/data-table.woff b/src/assets/fonts/data-table/data-table.woff new file mode 100755 index 0000000..84e90a6 Binary files /dev/null and b/src/assets/fonts/data-table/data-table.woff differ diff --git a/src/assets/fonts/data-table/icons.css b/src/assets/fonts/data-table/icons.css new file mode 100755 index 0000000..5a7338f --- /dev/null +++ b/src/assets/fonts/data-table/icons.css @@ -0,0 +1,88 @@ +@charset "UTF-8"; + +@font-face { + font-family: "data-table"; + src:url("data-table.eot"); + src:url("data-table.eot?#iefix") format("embedded-opentype"), + url("data-table.woff") format("woff"), + url("data-table.ttf") format("truetype"), + url("data-table.svg#data-table") format("svg"); + font-weight: normal; + font-style: normal; + +} + +[data-icon]:before { + font-family: "data-table" !important; + content: attr(data-icon); + font-style: normal !important; + font-weight: normal !important; + font-variant: normal !important; + text-transform: none !important; + speak: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +[class^="datatable-icon-"]:before, +[class*=" datatable-icon-"]:before { + font-family: "data-table" !important; + font-style: normal !important; + font-weight: normal !important; + font-variant: normal !important; + text-transform: none !important; + speak: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.datatable-icon-filter:before { + content: "\62"; +} +.datatable-icon-collapse:before { + content: "\61"; +} +.datatable-icon-expand:before { + content: "\63"; +} +.datatable-icon-close:before { + content: "\64"; +} +.datatable-icon-up:before { + content: "\65"; +} +.datatable-icon-down:before { + content: "\66"; +} +.datatable-icon-sort:before { + content: "\67"; +} +.datatable-icon-done:before { + content: "\68"; +} +.datatable-icon-done-all:before { + content: "\69"; +} +.datatable-icon-search:before { + content: "\6a"; +} +.datatable-icon-pin:before { + content: "\6b"; +} +.datatable-icon-add:before { + content: "\6d"; +} +.datatable-icon-left:before { + content: "\6f"; +} +.datatable-icon-right:before { + content: "\70"; +} +.datatable-icon-skip:before { + content: "\71"; +} +.datatable-icon-prev:before { + content: "\72"; +} diff --git a/src/assets/fonts/pe/css/helper.css b/src/assets/fonts/pe/css/helper.css new file mode 100755 index 0000000..78fc653 --- /dev/null +++ b/src/assets/fonts/pe/css/helper.css @@ -0,0 +1,179 @@ +/* HELPER CLASS + * -------------------------- */ +/* FA based classes */ +/*! Modified from font-awesome helper CSS classes - PIXEDEN + * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (CSS: MIT License) + */ +/* makes the font 33% larger relative to the icon container */ +.pe-lg { + font-size: 1.3333333333333333em; + line-height: 0.75em; + vertical-align: -15%; +} + +.pe-2x { + font-size: 2em; +} + +.pe-3x { + font-size: 3em; +} + +.pe-4x { + font-size: 4em; +} + +.pe-5x { + font-size: 5em; +} + +.pe-fw { + width: 1.2857142857142858em; + text-align: center; +} + +.pe-ul { + padding-left: 0; + margin-left: 2.142857142857143em; + list-style-type: none; +} + +.pe-ul > li { + position: relative; +} + +.pe-li { + position: absolute; + left: -2.142857142857143em; + width: 2.142857142857143em; + top: 0.14285714285714285em; + text-align: center; +} + +.pe-li.pe-lg { + left: -1.8571428571428572em; +} + +.pe-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.pe.pull-left { + margin-right: .3em; +} + +.pe.pull-right { + margin-left: .3em; +} + +.pe-spin { + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.pe-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} + +.pe-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} + +.pe-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} + +.pe-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.pe-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} + +.pe-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} + +.pe-stack-1x, +.pe-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} + +.pe-stack-1x { + line-height: inherit; +} + +.pe-stack-2x { + font-size: 2em; +} + +.pe-inverse { + color: #ffffff; +} + +/* Custom classes / mods - PIXEDEN */ +.pe-va { + vertical-align: middle; +} + +.pe-border { + border: solid 0.08em #eaeaea; +} + +.pe-fw-h { + width: 1.2857142857142858em; + text-align: center; + display: inline-block; +} diff --git a/src/assets/fonts/pe/css/helper.min.css b/src/assets/fonts/pe/css/helper.min.css new file mode 100755 index 0000000..f4d8161 --- /dev/null +++ b/src/assets/fonts/pe/css/helper.min.css @@ -0,0 +1,4 @@ +/*! Modified from font-awesome helper CSS classes - PIXEDEN + * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (CSS: MIT License) + */.pe-fw,.pe-fw-h,.pe-li{text-align:center}.pe-fw-h,.pe-stack{display:inline-block}.pe-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.pe-stack,.pe-va{vertical-align:middle}.pe-2x{font-size:2em}.pe-3x{font-size:3em}.pe-4x{font-size:4em}.pe-5x{font-size:5em}.pe-fw{width:1.2857142857142858em}.pe-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.pe-ul>li{position:relative}.pe-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em}.pe-li.pe-lg{left:-1.8571428571428572em}.pe-border{padding:.2em .25em .15em;border-radius:.1em;border:.08em solid #eaeaea}.pull-right{float:right}.pull-left{float:left}.pe.pull-left{margin-right:.3em}.pe.pull-right{margin-left:.3em}.pe-spin{-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.pe-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.pe-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.pe-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.pe-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.pe-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}.pe-stack{position:relative;width:2em;height:2em;line-height:2em}.pe-stack-1x,.pe-stack-2x{position:absolute;left:0;width:100%;text-align:center}.pe-stack-1x{line-height:inherit}.pe-stack-2x{font-size:2em}.pe-inverse{color:#fff}.pe-fw-h{width:1.2857142857142858em} \ No newline at end of file diff --git a/src/assets/fonts/pe/css/pe-icon-set-weather.css b/src/assets/fonts/pe/css/pe-icon-set-weather.css new file mode 100755 index 0000000..b6d3edb --- /dev/null +++ b/src/assets/fonts/pe/css/pe-icon-set-weather.css @@ -0,0 +1,852 @@ +@font-face { + font-family: 'pe-icon-set-weather'; + src: url("../fonts/pe-icon-set-weather.eot?nlruav"); + src: url("../fonts/pe-icon-set-weather.eot?nlruav#iefix") format("embedded-opentype"), url("../fonts/pe-icon-set-weather.ttf?nlruav") format("truetype"), url("../fonts/pe-icon-set-weather.woff?nlruav") format("woff"), url("../fonts/pe-icon-set-weather.svg?nlruav#pe-icon-set-weather") format("svg"); + font-weight: normal; + font-style: normal; +} +[class^="pe-is-w-"], [class*=" pe-is-w-"] { + display: inline-block; + font-family: 'pe-icon-set-weather'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.pe-is-w-blizzard-f:before { + content: "\e900"; +} + +.pe-is-w-blizzard:before { + content: "\e901"; +} + +.pe-is-w-cloud-down-f:before { + content: "\e902"; +} + +.pe-is-w-cloud-down:before { + content: "\e903"; +} + +.pe-is-w-cloud-refresh-f:before { + content: "\e904"; +} + +.pe-is-w-cloud-refresh:before { + content: "\e905"; +} + +.pe-is-w-cloud-up-f:before { + content: "\e906"; +} + +.pe-is-w-cloud-up:before { + content: "\e907"; +} + +.pe-is-w-compass-e-f:before { + content: "\e908"; +} + +.pe-is-w-compass-e:before { + content: "\e909"; +} + +.pe-is-w-compass-f:before { + content: "\e90a"; +} + +.pe-is-w-compass-n-f:before { + content: "\e90b"; +} + +.pe-is-w-compass-n:before { + content: "\e90c"; +} + +.pe-is-w-compass-s-f:before { + content: "\e90d"; +} + +.pe-is-w-compass-s:before { + content: "\e90e"; +} + +.pe-is-w-compass-w-f:before { + content: "\e90f"; +} + +.pe-is-w-compass-w:before { + content: "\e910"; +} + +.pe-is-w-compass:before { + content: "\e911"; +} + +.pe-is-w-degree-celsius:before { + content: "\e912"; +} + +.pe-is-w-degree-fahrenheit:before { + content: "\e913"; +} + +.pe-is-w-drizzle-f:before { + content: "\e914"; +} + +.pe-is-w-drizzle:before { + content: "\e915"; +} + +.pe-is-w-drop-cloud-f:before { + content: "\e916"; +} + +.pe-is-w-drop-cloud:before { + content: "\e917"; +} + +.pe-is-w-drop-f:before { + content: "\e918"; +} + +.pe-is-w-drop-percentage-f:before { + content: "\e919"; +} + +.pe-is-w-drop-percentage:before { + content: "\e91a"; +} + +.pe-is-w-drop:before { + content: "\e91b"; +} + +.pe-is-w-drops-f:before { + content: "\e91c"; +} + +.pe-is-w-drops:before { + content: "\e91d"; +} + +.pe-is-w-eclipse-1-f:before { + content: "\e91e"; +} + +.pe-is-w-eclipse-1:before { + content: "\e91f"; +} + +.pe-is-w-eclipse-2-f:before { + content: "\e920"; +} + +.pe-is-w-eclipse-2:before { + content: "\e921"; +} + +.pe-is-w-eclipse-3-f:before { + content: "\e922"; +} + +.pe-is-w-eclipse-3:before { + content: "\e923"; +} + +.pe-is-w-eclipse-4-f:before { + content: "\e924"; +} + +.pe-is-w-eclipse-4:before { + content: "\e925"; +} + +.pe-is-w-fog-1-f:before { + content: "\e926"; +} + +.pe-is-w-fog-1:before { + content: "\e927"; +} + +.pe-is-w-fog-2-f:before { + content: "\e928"; +} + +.pe-is-w-fog-2:before { + content: "\e929"; +} + +.pe-is-w-fog-3-f:before { + content: "\e92a"; +} + +.pe-is-w-fog-3:before { + content: "\e92b"; +} + +.pe-is-w-fog-4-f:before { + content: "\e92c"; +} + +.pe-is-w-fog-4:before { + content: "\e92d"; +} + +.pe-is-w-full-moon-1-f:before { + content: "\e92e"; +} + +.pe-is-w-full-moon-1:before { + content: "\e92f"; +} + +.pe-is-w-full-moon-2-f:before { + content: "\e930"; +} + +.pe-is-w-full-moon-2:before { + content: "\e931"; +} + +.pe-is-w-full-moon-3-f:before { + content: "\e932"; +} + +.pe-is-w-full-moon-3:before { + content: "\e933"; +} + +.pe-is-w-hail-1-f:before { + content: "\e934"; +} + +.pe-is-w-hail-1:before { + content: "\e935"; +} + +.pe-is-w-hail-2-f:before { + content: "\e936"; +} + +.pe-is-w-hail-2:before { + content: "\e937"; +} + +.pe-is-w-hail-day-1-f:before { + content: "\e938"; +} + +.pe-is-w-hail-day-1:before { + content: "\e939"; +} + +.pe-is-w-hail-day-2-f:before { + content: "\e93a"; +} + +.pe-is-w-hail-day-2:before { + content: "\e93b"; +} + +.pe-is-w-hail-full-moon-1-f:before { + content: "\e93c"; +} + +.pe-is-w-hail-full-moon-1:before { + content: "\e93d"; +} + +.pe-is-w-hail-full-moon-2-f:before { + content: "\e93e"; +} + +.pe-is-w-hail-full-moon-2:before { + content: "\e93f"; +} + +.pe-is-w-hail-night-1-f:before { + content: "\e940"; +} + +.pe-is-w-hail-night-1:before { + content: "\e941"; +} + +.pe-is-w-hail-night-2-f:before { + content: "\e942"; +} + +.pe-is-w-hail-night-2:before { + content: "\e943"; +} + +.pe-is-w-heavy-hail-day-f:before { + content: "\e944"; +} + +.pe-is-w-heavy-hail-day:before { + content: "\e945"; +} + +.pe-is-w-heavy-hail-f:before { + content: "\e946"; +} + +.pe-is-w-heavy-hail-full-moon-f:before { + content: "\e947"; +} + +.pe-is-w-heavy-hail-full-moon:before { + content: "\e948"; +} + +.pe-is-w-heavy-hail-night-f:before { + content: "\e949"; +} + +.pe-is-w-heavy-hail-night:before { + content: "\e94a"; +} + +.pe-is-w-heavy-hail:before { + content: "\e94b"; +} + +.pe-is-w-heavy-rain-1-f:before { + content: "\e94c"; +} + +.pe-is-w-heavy-rain-1:before { + content: "\e94d"; +} + +.pe-is-w-heavy-rain-2-f:before { + content: "\e94e"; +} + +.pe-is-w-heavy-rain-2:before { + content: "\e94f"; +} + +.pe-is-w-heavy-rain-day-f:before { + content: "\e950"; +} + +.pe-is-w-heavy-rain-day:before { + content: "\e951"; +} + +.pe-is-w-heavy-rain-full-moon-f:before { + content: "\e952"; +} + +.pe-is-w-heavy-rain-full-moon:before { + content: "\e953"; +} + +.pe-is-w-heavy-rain-night-f:before { + content: "\e954"; +} + +.pe-is-w-heavy-rain-night:before { + content: "\e955"; +} + +.pe-is-w-mist:before { + content: "\e956"; +} + +.pe-is-w-mix-rainfall-1-f:before { + content: "\e957"; +} + +.pe-is-w-mix-rainfall-1:before { + content: "\e958"; +} + +.pe-is-w-mix-rainfall-2-f:before { + content: "\e959"; +} + +.pe-is-w-mix-rainfall-2:before { + content: "\e95a"; +} + +.pe-is-w-moon-1-f:before { + content: "\e95b"; +} + +.pe-is-w-moon-1:before { + content: "\e95c"; +} + +.pe-is-w-moon-2-f:before { + content: "\e95d"; +} + +.pe-is-w-moon-2:before { + content: "\e95e"; +} + +.pe-is-w-moon-3-f:before { + content: "\e95f"; +} + +.pe-is-w-moon-3:before { + content: "\e960"; +} + +.pe-is-w-moon-4-f:before { + content: "\e961"; +} + +.pe-is-w-moon-4:before { + content: "\e962"; +} + +.pe-is-w-moon-first-quarter-f:before { + content: "\e963"; +} + +.pe-is-w-moon-horizon-f:before { + content: "\e964"; +} + +.pe-is-w-moon-horizon:before { + content: "\e965"; +} + +.pe-is-w-moon-last-quarter-f:before { + content: "\e966"; +} + +.pe-is-w-moon-sea-f:before { + content: "\e967"; +} + +.pe-is-w-moon-sea:before { + content: "\e968"; +} + +.pe-is-w-moon-waning-crescent-f:before { + content: "\e969"; +} + +.pe-is-w-moon-waning-gibbous-f:before { + content: "\e96a"; +} + +.pe-is-w-moon-waxing-crescent-f:before { + content: "\e96b"; +} + +.pe-is-w-moon-waxing-gibbous-f:before { + content: "\e96c"; +} + +.pe-is-w-mostly-cloudy-1-f:before { + content: "\e96d"; +} + +.pe-is-w-mostly-cloudy-1:before { + content: "\e96e"; +} + +.pe-is-w-mostly-cloudy-2-f:before { + content: "\e96f"; +} + +.pe-is-w-mostly-cloudy-2:before { + content: "\e970"; +} + +.pe-is-w-partly-cloudy-1-f:before { + content: "\e971"; +} + +.pe-is-w-partly-cloudy-1:before { + content: "\e972"; +} + +.pe-is-w-partly-cloudy-2-f:before { + content: "\e973"; +} + +.pe-is-w-partly-cloudy-2:before { + content: "\e974"; +} + +.pe-is-w-partly-cloudy-3-f:before { + content: "\e975"; +} + +.pe-is-w-partly-cloudy-3:before { + content: "\e976"; +} + +.pe-is-w-rain-1-f:before { + content: "\e977"; +} + +.pe-is-w-rain-1:before { + content: "\e978"; +} + +.pe-is-w-rain-and-snow-f:before { + content: "\e979"; +} + +.pe-is-w-rain-and-snow:before { + content: "\e97a"; +} + +.pe-is-w-rain-day-f:before { + content: "\e97b"; +} + +.pe-is-w-rain-day:before { + content: "\e97c"; +} + +.pe-is-w-rain-full-moon-f:before { + content: "\e97d"; +} + +.pe-is-w-rain-full-moon:before { + content: "\e97e"; +} + +.pe-is-w-rain-night-f:before { + content: "\e97f"; +} + +.pe-is-w-rain-night:before { + content: "\e980"; +} + +.pe-is-w-severe-thunderstorm-f:before { + content: "\e981"; +} + +.pe-is-w-severe-thunderstorm:before { + content: "\e982"; +} + +.pe-is-w-snow-day-1-f:before { + content: "\e983"; +} + +.pe-is-w-snow-day-1:before { + content: "\e984"; +} + +.pe-is-w-snow-day-2-f:before { + content: "\e985"; +} + +.pe-is-w-snow-day-2:before { + content: "\e986"; +} + +.pe-is-w-snow-day-3-f:before { + content: "\e987"; +} + +.pe-is-w-snow-day-3:before { + content: "\e988"; +} + +.pe-is-w-snow-f:before { + content: "\e989"; +} + +.pe-is-w-snow-full-moon-1-f:before { + content: "\e98a"; +} + +.pe-is-w-snow-full-moon-1:before { + content: "\e98b"; +} + +.pe-is-w-snow-full-moon-2-f:before { + content: "\e98c"; +} + +.pe-is-w-snow-full-moon-2:before { + content: "\e98d"; +} + +.pe-is-w-snow-full-moon-3-f:before { + content: "\e98e"; +} + +.pe-is-w-snow-full-moon-3:before { + content: "\e98f"; +} + +.pe-is-w-snow-night-1-f:before { + content: "\e990"; +} + +.pe-is-w-snow-night-1:before { + content: "\e991"; +} + +.pe-is-w-snow-night-2-f:before { + content: "\e992"; +} + +.pe-is-w-snow-night-2:before { + content: "\e993"; +} + +.pe-is-w-snow-night-3-f:before { + content: "\e994"; +} + +.pe-is-w-snow-night-3:before { + content: "\e995"; +} + +.pe-is-w-snow:before { + content: "\e996"; +} + +.pe-is-w-snowflake:before { + content: "\e997"; +} + +.pe-is-w-sun-1-f:before { + content: "\e998"; +} + +.pe-is-w-sun-1:before { + content: "\e999"; +} + +.pe-is-w-sun-2-f:before { + content: "\e99a"; +} + +.pe-is-w-sun-2:before { + content: "\e99b"; +} + +.pe-is-w-sun-horizon-1-f:before { + content: "\e99c"; +} + +.pe-is-w-sun-horizon-1:before { + content: "\e99d"; +} + +.pe-is-w-sun-horizon-2-f:before { + content: "\e99e"; +} + +.pe-is-w-sun-horizon-2:before { + content: "\e99f"; +} + +.pe-is-w-sunrise-f:before { + content: "\e9a0"; +} + +.pe-is-w-sunrise:before { + content: "\e9a1"; +} + +.pe-is-w-sunset-f:before { + content: "\e9a2"; +} + +.pe-is-w-sunset:before { + content: "\e9a3"; +} + +.pe-is-w-thermometer-1-f:before { + content: "\e9a4"; +} + +.pe-is-w-thermometer-1:before { + content: "\e9a5"; +} + +.pe-is-w-thermometer-2-f:before { + content: "\e9a6"; +} + +.pe-is-w-thermometer-2:before { + content: "\e9a7"; +} + +.pe-is-w-thermometer-3-f:before { + content: "\e9a8"; +} + +.pe-is-w-thermometer-3:before { + content: "\e9a9"; +} + +.pe-is-w-thermometer-4-f:before { + content: "\e9aa"; +} + +.pe-is-w-thermometer-4:before { + content: "\e9ab"; +} + +.pe-is-w-thermometer-5-f:before { + content: "\e9ac"; +} + +.pe-is-w-thermometer-5:before { + content: "\e9ad"; +} + +.pe-is-w-thunderbolt-1-f:before { + content: "\e9ae"; +} + +.pe-is-w-thunderbolt-1:before { + content: "\e9af"; +} + +.pe-is-w-thunderbolt-2-f:before { + content: "\e9b0"; +} + +.pe-is-w-thunderbolt-2:before { + content: "\e9b1"; +} + +.pe-is-w-thunderstorm-day-1-f:before { + content: "\e9b2"; +} + +.pe-is-w-thunderstorm-day-1:before { + content: "\e9b3"; +} + +.pe-is-w-thunderstorm-day-2-f:before { + content: "\e9b4"; +} + +.pe-is-w-thunderstorm-day-2:before { + content: "\e9b5"; +} + +.pe-is-w-thunderstorm-f:before { + content: "\e9b6"; +} + +.pe-is-w-thunderstorm-full-moon-1-f:before { + content: "\e9b7"; +} + +.pe-is-w-thunderstorm-full-moon-1:before { + content: "\e9b8"; +} + +.pe-is-w-thunderstorm-full-moon-2-f:before { + content: "\e9b9"; +} + +.pe-is-w-thunderstorm-full-moon-2:before { + content: "\e9ba"; +} + +.pe-is-w-thunderstorm-night-1-f:before { + content: "\e9bb"; +} + +.pe-is-w-thunderstorm-night-1:before { + content: "\e9bc"; +} + +.pe-is-w-thunderstorm-night-2-f:before { + content: "\e9bd"; +} + +.pe-is-w-thunderstorm-night-2:before { + content: "\e9be"; +} + +.pe-is-w-thunderstorm:before { + content: "\e9bf"; +} + +.pe-is-w-tornado-1:before { + content: "\e9c0"; +} + +.pe-is-w-tornado-2:before { + content: "\e9c1"; +} + +.pe-is-w-umbrella-f:before { + content: "\e9c2"; +} + +.pe-is-w-umbrella:before { + content: "\e9c3"; +} + +.pe-is-w-wind-2:before { + content: "\e9c4"; +} + +.pe-is-w-wind-cloud:before { + content: "\e9c5"; +} + +.pe-is-w-wind-cone-f:before { + content: "\e9c6"; +} + +.pe-is-w-wind-cone:before { + content: "\e9c7"; +} + +.pe-is-w-wind-day:before { + content: "\e9c8"; +} + +.pe-is-w-wind-full-moon:before { + content: "\e9c9"; +} + +.pe-is-w-wind-moon:before { + content: "\e9ca"; +} + +.pe-is-w-wind-night:before { + content: "\e9cb"; +} + +.pe-is-w-wind-sun:before { + content: "\e9cc"; +} + +.pe-is-w-wind-turbine-f:before { + content: "\e9cd"; +} + +.pe-is-w-wind-turbine:before { + content: "\e9ce"; +} + +.pe-is-w-wind:before { + content: "\e9cf"; +} diff --git a/src/assets/fonts/pe/css/pe-icon-set-weather.min.css b/src/assets/fonts/pe/css/pe-icon-set-weather.min.css new file mode 100755 index 0000000..71c6fe5 --- /dev/null +++ b/src/assets/fonts/pe/css/pe-icon-set-weather.min.css @@ -0,0 +1 @@ +@font-face{font-family:pe-icon-set-weather;src:url(../fonts/pe-icon-set-weather.eot?nlruav);src:url(../fonts/pe-icon-set-weather.eot?nlruav#iefix) format("embedded-opentype"),url(../fonts/pe-icon-set-weather.ttf?nlruav) format("truetype"),url(../fonts/pe-icon-set-weather.woff?nlruav) format("woff"),url(../fonts/pe-icon-set-weather.svg?nlruav#pe-icon-set-weather) format("svg");font-weight:400;font-style:normal}[class*=" pe-is-w-"],[class^=pe-is-w-]{display:inline-block;font-family:pe-icon-set-weather;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pe-is-w-blizzard-f:before{content:"\e900"}.pe-is-w-blizzard:before{content:"\e901"}.pe-is-w-cloud-down-f:before{content:"\e902"}.pe-is-w-cloud-down:before{content:"\e903"}.pe-is-w-cloud-refresh-f:before{content:"\e904"}.pe-is-w-cloud-refresh:before{content:"\e905"}.pe-is-w-cloud-up-f:before{content:"\e906"}.pe-is-w-cloud-up:before{content:"\e907"}.pe-is-w-compass-e-f:before{content:"\e908"}.pe-is-w-compass-e:before{content:"\e909"}.pe-is-w-compass-f:before{content:"\e90a"}.pe-is-w-compass-n-f:before{content:"\e90b"}.pe-is-w-compass-n:before{content:"\e90c"}.pe-is-w-compass-s-f:before{content:"\e90d"}.pe-is-w-compass-s:before{content:"\e90e"}.pe-is-w-compass-w-f:before{content:"\e90f"}.pe-is-w-compass-w:before{content:"\e910"}.pe-is-w-compass:before{content:"\e911"}.pe-is-w-degree-celsius:before{content:"\e912"}.pe-is-w-degree-fahrenheit:before{content:"\e913"}.pe-is-w-drizzle-f:before{content:"\e914"}.pe-is-w-drizzle:before{content:"\e915"}.pe-is-w-drop-cloud-f:before{content:"\e916"}.pe-is-w-drop-cloud:before{content:"\e917"}.pe-is-w-drop-f:before{content:"\e918"}.pe-is-w-drop-percentage-f:before{content:"\e919"}.pe-is-w-drop-percentage:before{content:"\e91a"}.pe-is-w-drop:before{content:"\e91b"}.pe-is-w-drops-f:before{content:"\e91c"}.pe-is-w-drops:before{content:"\e91d"}.pe-is-w-eclipse-1-f:before{content:"\e91e"}.pe-is-w-eclipse-1:before{content:"\e91f"}.pe-is-w-eclipse-2-f:before{content:"\e920"}.pe-is-w-eclipse-2:before{content:"\e921"}.pe-is-w-eclipse-3-f:before{content:"\e922"}.pe-is-w-eclipse-3:before{content:"\e923"}.pe-is-w-eclipse-4-f:before{content:"\e924"}.pe-is-w-eclipse-4:before{content:"\e925"}.pe-is-w-fog-1-f:before{content:"\e926"}.pe-is-w-fog-1:before{content:"\e927"}.pe-is-w-fog-2-f:before{content:"\e928"}.pe-is-w-fog-2:before{content:"\e929"}.pe-is-w-fog-3-f:before{content:"\e92a"}.pe-is-w-fog-3:before{content:"\e92b"}.pe-is-w-fog-4-f:before{content:"\e92c"}.pe-is-w-fog-4:before{content:"\e92d"}.pe-is-w-full-moon-1-f:before{content:"\e92e"}.pe-is-w-full-moon-1:before{content:"\e92f"}.pe-is-w-full-moon-2-f:before{content:"\e930"}.pe-is-w-full-moon-2:before{content:"\e931"}.pe-is-w-full-moon-3-f:before{content:"\e932"}.pe-is-w-full-moon-3:before{content:"\e933"}.pe-is-w-hail-1-f:before{content:"\e934"}.pe-is-w-hail-1:before{content:"\e935"}.pe-is-w-hail-2-f:before{content:"\e936"}.pe-is-w-hail-2:before{content:"\e937"}.pe-is-w-hail-day-1-f:before{content:"\e938"}.pe-is-w-hail-day-1:before{content:"\e939"}.pe-is-w-hail-day-2-f:before{content:"\e93a"}.pe-is-w-hail-day-2:before{content:"\e93b"}.pe-is-w-hail-full-moon-1-f:before{content:"\e93c"}.pe-is-w-hail-full-moon-1:before{content:"\e93d"}.pe-is-w-hail-full-moon-2-f:before{content:"\e93e"}.pe-is-w-hail-full-moon-2:before{content:"\e93f"}.pe-is-w-hail-night-1-f:before{content:"\e940"}.pe-is-w-hail-night-1:before{content:"\e941"}.pe-is-w-hail-night-2-f:before{content:"\e942"}.pe-is-w-hail-night-2:before{content:"\e943"}.pe-is-w-heavy-hail-day-f:before{content:"\e944"}.pe-is-w-heavy-hail-day:before{content:"\e945"}.pe-is-w-heavy-hail-f:before{content:"\e946"}.pe-is-w-heavy-hail-full-moon-f:before{content:"\e947"}.pe-is-w-heavy-hail-full-moon:before{content:"\e948"}.pe-is-w-heavy-hail-night-f:before{content:"\e949"}.pe-is-w-heavy-hail-night:before{content:"\e94a"}.pe-is-w-heavy-hail:before{content:"\e94b"}.pe-is-w-heavy-rain-1-f:before{content:"\e94c"}.pe-is-w-heavy-rain-1:before{content:"\e94d"}.pe-is-w-heavy-rain-2-f:before{content:"\e94e"}.pe-is-w-heavy-rain-2:before{content:"\e94f"}.pe-is-w-heavy-rain-day-f:before{content:"\e950"}.pe-is-w-heavy-rain-day:before{content:"\e951"}.pe-is-w-heavy-rain-full-moon-f:before{content:"\e952"}.pe-is-w-heavy-rain-full-moon:before{content:"\e953"}.pe-is-w-heavy-rain-night-f:before{content:"\e954"}.pe-is-w-heavy-rain-night:before{content:"\e955"}.pe-is-w-mist:before{content:"\e956"}.pe-is-w-mix-rainfall-1-f:before{content:"\e957"}.pe-is-w-mix-rainfall-1:before{content:"\e958"}.pe-is-w-mix-rainfall-2-f:before{content:"\e959"}.pe-is-w-mix-rainfall-2:before{content:"\e95a"}.pe-is-w-moon-1-f:before{content:"\e95b"}.pe-is-w-moon-1:before{content:"\e95c"}.pe-is-w-moon-2-f:before{content:"\e95d"}.pe-is-w-moon-2:before{content:"\e95e"}.pe-is-w-moon-3-f:before{content:"\e95f"}.pe-is-w-moon-3:before{content:"\e960"}.pe-is-w-moon-4-f:before{content:"\e961"}.pe-is-w-moon-4:before{content:"\e962"}.pe-is-w-moon-first-quarter-f:before{content:"\e963"}.pe-is-w-moon-horizon-f:before{content:"\e964"}.pe-is-w-moon-horizon:before{content:"\e965"}.pe-is-w-moon-last-quarter-f:before{content:"\e966"}.pe-is-w-moon-sea-f:before{content:"\e967"}.pe-is-w-moon-sea:before{content:"\e968"}.pe-is-w-moon-waning-crescent-f:before{content:"\e969"}.pe-is-w-moon-waning-gibbous-f:before{content:"\e96a"}.pe-is-w-moon-waxing-crescent-f:before{content:"\e96b"}.pe-is-w-moon-waxing-gibbous-f:before{content:"\e96c"}.pe-is-w-mostly-cloudy-1-f:before{content:"\e96d"}.pe-is-w-mostly-cloudy-1:before{content:"\e96e"}.pe-is-w-mostly-cloudy-2-f:before{content:"\e96f"}.pe-is-w-mostly-cloudy-2:before{content:"\e970"}.pe-is-w-partly-cloudy-1-f:before{content:"\e971"}.pe-is-w-partly-cloudy-1:before{content:"\e972"}.pe-is-w-partly-cloudy-2-f:before{content:"\e973"}.pe-is-w-partly-cloudy-2:before{content:"\e974"}.pe-is-w-partly-cloudy-3-f:before{content:"\e975"}.pe-is-w-partly-cloudy-3:before{content:"\e976"}.pe-is-w-rain-1-f:before{content:"\e977"}.pe-is-w-rain-1:before{content:"\e978"}.pe-is-w-rain-and-snow-f:before{content:"\e979"}.pe-is-w-rain-and-snow:before{content:"\e97a"}.pe-is-w-rain-day-f:before{content:"\e97b"}.pe-is-w-rain-day:before{content:"\e97c"}.pe-is-w-rain-full-moon-f:before{content:"\e97d"}.pe-is-w-rain-full-moon:before{content:"\e97e"}.pe-is-w-rain-night-f:before{content:"\e97f"}.pe-is-w-rain-night:before{content:"\e980"}.pe-is-w-severe-thunderstorm-f:before{content:"\e981"}.pe-is-w-severe-thunderstorm:before{content:"\e982"}.pe-is-w-snow-day-1-f:before{content:"\e983"}.pe-is-w-snow-day-1:before{content:"\e984"}.pe-is-w-snow-day-2-f:before{content:"\e985"}.pe-is-w-snow-day-2:before{content:"\e986"}.pe-is-w-snow-day-3-f:before{content:"\e987"}.pe-is-w-snow-day-3:before{content:"\e988"}.pe-is-w-snow-f:before{content:"\e989"}.pe-is-w-snow-full-moon-1-f:before{content:"\e98a"}.pe-is-w-snow-full-moon-1:before{content:"\e98b"}.pe-is-w-snow-full-moon-2-f:before{content:"\e98c"}.pe-is-w-snow-full-moon-2:before{content:"\e98d"}.pe-is-w-snow-full-moon-3-f:before{content:"\e98e"}.pe-is-w-snow-full-moon-3:before{content:"\e98f"}.pe-is-w-snow-night-1-f:before{content:"\e990"}.pe-is-w-snow-night-1:before{content:"\e991"}.pe-is-w-snow-night-2-f:before{content:"\e992"}.pe-is-w-snow-night-2:before{content:"\e993"}.pe-is-w-snow-night-3-f:before{content:"\e994"}.pe-is-w-snow-night-3:before{content:"\e995"}.pe-is-w-snow:before{content:"\e996"}.pe-is-w-snowflake:before{content:"\e997"}.pe-is-w-sun-1-f:before{content:"\e998"}.pe-is-w-sun-1:before{content:"\e999"}.pe-is-w-sun-2-f:before{content:"\e99a"}.pe-is-w-sun-2:before{content:"\e99b"}.pe-is-w-sun-horizon-1-f:before{content:"\e99c"}.pe-is-w-sun-horizon-1:before{content:"\e99d"}.pe-is-w-sun-horizon-2-f:before{content:"\e99e"}.pe-is-w-sun-horizon-2:before{content:"\e99f"}.pe-is-w-sunrise-f:before{content:"\e9a0"}.pe-is-w-sunrise:before{content:"\e9a1"}.pe-is-w-sunset-f:before{content:"\e9a2"}.pe-is-w-sunset:before{content:"\e9a3"}.pe-is-w-thermometer-1-f:before{content:"\e9a4"}.pe-is-w-thermometer-1:before{content:"\e9a5"}.pe-is-w-thermometer-2-f:before{content:"\e9a6"}.pe-is-w-thermometer-2:before{content:"\e9a7"}.pe-is-w-thermometer-3-f:before{content:"\e9a8"}.pe-is-w-thermometer-3:before{content:"\e9a9"}.pe-is-w-thermometer-4-f:before{content:"\e9aa"}.pe-is-w-thermometer-4:before{content:"\e9ab"}.pe-is-w-thermometer-5-f:before{content:"\e9ac"}.pe-is-w-thermometer-5:before{content:"\e9ad"}.pe-is-w-thunderbolt-1-f:before{content:"\e9ae"}.pe-is-w-thunderbolt-1:before{content:"\e9af"}.pe-is-w-thunderbolt-2-f:before{content:"\e9b0"}.pe-is-w-thunderbolt-2:before{content:"\e9b1"}.pe-is-w-thunderstorm-day-1-f:before{content:"\e9b2"}.pe-is-w-thunderstorm-day-1:before{content:"\e9b3"}.pe-is-w-thunderstorm-day-2-f:before{content:"\e9b4"}.pe-is-w-thunderstorm-day-2:before{content:"\e9b5"}.pe-is-w-thunderstorm-f:before{content:"\e9b6"}.pe-is-w-thunderstorm-full-moon-1-f:before{content:"\e9b7"}.pe-is-w-thunderstorm-full-moon-1:before{content:"\e9b8"}.pe-is-w-thunderstorm-full-moon-2-f:before{content:"\e9b9"}.pe-is-w-thunderstorm-full-moon-2:before{content:"\e9ba"}.pe-is-w-thunderstorm-night-1-f:before{content:"\e9bb"}.pe-is-w-thunderstorm-night-1:before{content:"\e9bc"}.pe-is-w-thunderstorm-night-2-f:before{content:"\e9bd"}.pe-is-w-thunderstorm-night-2:before{content:"\e9be"}.pe-is-w-thunderstorm:before{content:"\e9bf"}.pe-is-w-tornado-1:before{content:"\e9c0"}.pe-is-w-tornado-2:before{content:"\e9c1"}.pe-is-w-umbrella-f:before{content:"\e9c2"}.pe-is-w-umbrella:before{content:"\e9c3"}.pe-is-w-wind-2:before{content:"\e9c4"}.pe-is-w-wind-cloud:before{content:"\e9c5"}.pe-is-w-wind-cone-f:before{content:"\e9c6"}.pe-is-w-wind-cone:before{content:"\e9c7"}.pe-is-w-wind-day:before{content:"\e9c8"}.pe-is-w-wind-full-moon:before{content:"\e9c9"}.pe-is-w-wind-moon:before{content:"\e9ca"}.pe-is-w-wind-night:before{content:"\e9cb"}.pe-is-w-wind-sun:before{content:"\e9cc"}.pe-is-w-wind-turbine-f:before{content:"\e9cd"}.pe-is-w-wind-turbine:before{content:"\e9ce"}.pe-is-w-wind:before{content:"\e9cf"} \ No newline at end of file diff --git a/src/assets/fonts/pe/fonts/pe-icon-set-weather.eot b/src/assets/fonts/pe/fonts/pe-icon-set-weather.eot new file mode 100755 index 0000000..0357e60 Binary files /dev/null and b/src/assets/fonts/pe/fonts/pe-icon-set-weather.eot differ diff --git a/src/assets/fonts/pe/fonts/pe-icon-set-weather.svg b/src/assets/fonts/pe/fonts/pe-icon-set-weather.svg new file mode 100755 index 0000000..6932249 --- /dev/null +++ b/src/assets/fonts/pe/fonts/pe-icon-set-weather.svg @@ -0,0 +1,218 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/fonts/pe/fonts/pe-icon-set-weather.ttf b/src/assets/fonts/pe/fonts/pe-icon-set-weather.ttf new file mode 100755 index 0000000..eb6f8e5 Binary files /dev/null and b/src/assets/fonts/pe/fonts/pe-icon-set-weather.ttf differ diff --git a/src/assets/fonts/pe/fonts/pe-icon-set-weather.woff b/src/assets/fonts/pe/fonts/pe-icon-set-weather.woff new file mode 100755 index 0000000..6a58c1c Binary files /dev/null and b/src/assets/fonts/pe/fonts/pe-icon-set-weather.woff differ diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json new file mode 100755 index 0000000..1e7cb9b --- /dev/null +++ b/src/assets/i18n/en.json @@ -0,0 +1,216 @@ +{ + "TITLE": "Attendance Tracker", + "HOME": "Home", + "WELCOME": "Welcome,", + "LOGGED_IN": "Last Logged In:", + "APPS": "Apps", + "CALENDAR": "Calendar", + "MEDIA": "Media", + "MESSAGES": "Messages", + "SOCIAL": "Social", + "CHAT": "Chat", + "SCHOOLS": "Schools", + "ALLSTUDENTS": "Total Learners", + "BOYS": "Boys", + "GIRLS": "Girls", + "DROPOUTS": "Dropouts", + "DAILY_ATTENDANCE": "Daily Attendance", + "ATTENDANCE_DESC": "Present vs absent learner's distribution", + "MONTHLY_ATTENDANCE": "Monthly Attendance", + "ANNUAL_ATTENDANCE": "Annual Attendance", + "STUDENT_ENROLMENT": "Learner's Enrolment", + "STUDENT_ENROLMENT_CLASS": "Enrolment segregated per class", + "STUDENT_ENROLMENT_DIST": "Enrolment Distribution", + "STUDENT_ENROLMENT_DIST_GENDER": "Enrolment Distribution by Gender", + "STUDENT_ENROLMENT_TITLE_CLASS": "Enrolment Distribution by Class", + "STUDENT_ENROLMENT_DIST_LWD": "Enrolment Distribution by Special Need", + "STUDENT_ENROLMENT_DESC_DIST_GENDER": "Learner's enrolment distribution by gender", + "STUDENT_ENROLMENT_DESC_DIST_LWD": "Learner's enrolment distribution by special needs", + "RESET_PASSWORD": "Reset Password", + "CHANGE_PASSWORD_TITLE": "Change User Password", + "STAY_LOGGED_IN": "Stay Logged In", + "LOGIN": "Login", + "INDIVIDUAL": { + "DATE_ENROLLED": "Date Enrolled: ", + "ATTENDANCE_RECORD": "Attendance Record", + "DROPOUT_PROB_RATE": "Dropout Probablity Rate", + "STATUS": "Status: ", + "OVERALL_PERCENT_ATTENDANCE": "Overall attendance percentage: ", + "SCHOOL": "School", + "ADMISSION_NO": "Admission No.", + "CLASS": "Class", + "PRESENT_ATTENDANCE": "(Total Days Present/ Total Days Attendance Taken)", + "PRESENT_DAYS": "days present", + "TOTAL_ATTENDANCE_DAYS_TAKEN": "total days attendance", + "META_DATA": "The data below shows the meta-data of an individual child", + "META_DATA_INFO": { + "BIO": "Bio", + "INFO": "Basic Information", + "PHONE": "Phone", + "COUNTRY": "Country", + "DOB": "Date Of Birth", + "GENDER": "Gender", + "MALE": "Male", + "FEMALE": "Female", + "TIME_TO_SCHOOL": "Time taken to school", + "MODE_OF_TRANSPORT": "Mode of transport to school", + "STAY_WITH": "Stay with", + "HOUSEHOLD_NUMBER": "Number of people in household", + "MEALS_PER_DAY": "Meals per day", + "SPECIAL_NEEDS": "Special needs", + "GUARDIAN_INFO": "Guardian Information", + "GUARDIAN_CONTACT_DETAILS": "Contact Details", + "GUARDIAN_NAME": "Parent/ Guardian name", + "GUARDIAN_PHONE": "Phone number", + "ATTENDANCE": "Monthly Attendance Record", + "NO_RECORD": "No Data To Display", + "ATTENDANCE_RECORD": "Attendance graph for this month" + } + }, + "MAP": { + "ATTENDANCE_DATA": "ATTENDANCE DATA", + "ENROLLMENT_DATA": "ENROLLMENT DATA", + "DROPOUT_DATA": "DROPOUT DATA", + "PRESENT": "Present:", + "ABSENT": "Absent:", + "TOTAL": "Total:", + "BOYS": "Boys:", + "GIRLS": "Girls:", + "TOTAL_ENROLLMENT": "Total Enrollment:", + "TOTAL_DROPOUTS": "Total Dropouts" + }, + "SESSION_": { + "SIGNIN_LINK": "Access your account", + "OR": "OR", + "SIGN_IN": { + "SUB_TITLE": "Onekana Digital Attendance", + "REMEMBER_ME": "Stay logged in", + "LOGIN_BUTTON": "Login", + "FORGOT_PASS_LINK": "Forgot password?" + }, + "FORGOT_PASS": { + "SUB_TITLE": "Enter your email and we'll send you instructions on how to reset your password.", + "EMAIL_REQUIRED": "You must include an email address.", + "EMAIL_VALID": "You must include a valid email address.", + "RESET_BUTTON": "Reset" + }, + "RESET_PASS": { + "SUB_TITLE": "Enter the reset code sent to your email", + "RESET_BUTTON": "Reset password", + "RESEND_LINK": "Resend code?" + } + }, + "NGX_DATATABLES": { + "VIEW": "View", + "EDIT": "Edit", + "DELETE": "Delete" + }, + "SEARCH_BUTTON": { + "TABLE_PLACEHOLDER": "Search Results" + }, + "change_password": { + "CHANGE_PASSWORD": "Change Password", + "CHANGING_PASSWORD": "Changing...", + "OLD_PASSWORD": "Old Password", + "NEW_PASSWORD": "New Password", + "CONFIRM_PASSWORD": "Confirm Password" + }, + "form_errors": { + "PASSWORD_REQUIRED": "Password is required.", + "C_PASSWORD_REQUIRED": "Confirm password is required.", + "PASSWORDS_MISMATCH": "Confirm passwords match.", + "RESET_CODE_REQUIRED": "Reset code is required.", + "USERNAME_REQUIRED": "Username is required." + }, + "PLACEHOLDERS": { + "USERNAME": "Username", + "PASSWORD": "Password", + "EMAIL": "Email address", + "RESET_CODE": "Reset code", + "NEW_PASSWORD": "New password", + "CONFIRM_PASSWORD": "Confirm password" + }, + "NOTFOUND": { + "404": "404", + "PAGE_NOT_FOUND": "Page not found!", + "DESC": "Sorry, but the page you were trying to view does not exist.", + "BACK": "Back to dashboard" + }, + "WIDGETS": "Widgets", + "MATERIAL": "Material", + "BUTTON": "Button", + "CARDS": "Cards", + "SELECT": "Select", + "AUTOCOMPLETE": "Autocomplete", + "CHIPS": "Chips", + "INPUT": "Input", + "CHECKBOX": "Checkbox", + "DATEPICKER": "Datepicker", + "EXPANSION": "Expansion", + "RADIO": "Radio", + "TOOLBAR": "Toolbar", + "LISTS": "Lists", + "GRID": "Grid", + "PROGRESS": "Progress", + "TABS": "Tabs", + "SWITCH": "Switch", + "TOOLTIP": "Tooltip", + "MENU": "Menu", + "SLIDER": "Slider", + "SNACKBAR": "Snackbar", + "DIALOG": "Dialog", + "TABLE": "Table", + "BUTTONTOGGLE": "Button toggle", + "DRAWER": "Drawer", + "PROGRESSBAR": "Progress bar", + "PROGRESSSPINNER": "Progress spinner", + "RIPPLE": "Ripple", + "SLIDETOGGLE": "Slide toggle", + "STEPPER": "Stepper", + "TYPOGRAPHY": "Typography", + "FORMFIELD": "Form field", + "SIDENAV": "Sidenav", + "DIVIDER": "Divider", + "BADGE": "Badge", + "ICON": "Icon", + "BOTTOMSHEET": "Bottom sheet", + "SORTHEADER": "Sort header", + "PAGINATOR": "Paginator", + "FORMS": "Forms", + "EDITOR": "Editor", + "VALIDATION": "Validation", + "UPLOAD": "Upload", + "TREE": "Tree", + "DATATABLE": "Datatable", + "FULLSCREEN": "Fullscreen", + "EDITING": "Editing", + "FILTER": "Filter", + "SELECTION": "Selection", + "PAGING": "Paging", + "SORTING": "Sorting", + "PINNING": "Pinning", + "ECOMMERCE": "Ecommerce", + "PRODUCTS": "Products", + "COMPACT": "Compact", + "DETAIL": "Detail View", + "TASKBOARD": "Taskboard", + "CHARTS": "Charts", + "MAPS": "Maps", + "GOOGLE": "Google", + "LEAFLET": "Leaflet", + "DND": "Drag and Drop", + "PAGES": "Pages", + "INVOICE": "Invoice", + "TIMELINE": "Timeline", + "USER": "User", + "BLANK": "Blank", + "PRICING": "Pricing", + "SESSION": "Session", + "404": "404", + "SIGNIN": "Signin", + "SIGNUP": "Signup", + "FORGOT": "Forgot", + "LOCKSCREEN": "Lockscreen", + "ERROR": "Error", + "DOCS": "Docs" +} \ No newline at end of file diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json new file mode 100755 index 0000000..5a865d9 --- /dev/null +++ b/src/assets/i18n/fr.json @@ -0,0 +1,99 @@ +{ + "HOME": "Tableau de bord", + + "APPS": "Apps", + "CALENDAR": "Calendrier", + "MEDIA": "Médias", + "MESSAGES": "Messages", + "SOCIAL": "Social", + "CHAT": "Bavarder", + + "WIDGETS": "Widgets", + + "MATERIAL": "Matériel", + "BUTTON": "Bouton", + "CARDS": "Cartes", + "SELECT": "Sélectionner", + "AUTOCOMPLETE": "Autocomplete", + "CHIPS": "Chips", + "INPUT": "Données", + "CHECKBOX": "Case à cocher", + "DATEPICKER": "cueilleur", + "EXPANSION": "Expansion", + "RADIO": "Radio", + "TOOLBAR": "Barre d'outils", + "LISTS": "Listes", + "GRID": "La grille", + "PROGRESS": "La progression", + "TABS": "Onglets", + "SWITCH": "Le changement", + "TOOLTIP": "Info-bulle", + "MENU": "Le menu", + "SLIDER": "Curseur", + "SNACKBAR": "Snackbar", + "DIALOG": "Dialogue", + "TABLE": "Table", + "BUTTONTOGGLE": "Bouton bascule", + "DRAWER": "Tiroir", + "PROGRESSBAR": "Barre de progression", + "PROGRESSSPINNER": "Spinner de progrès", + "RIPPLE": "Ondulation", + "SLIDETOGGLE": "Slide toggle", + "STEPPER": "Stepper", + "TYPOGRAPHY": "Typographie", + "FORMFIELD": "Form field", + "SIDENAV": "Sidenav", + "DIVIDER": "Divider", + "BADGE": "Badge", + "ICON": "Icon", + "BOTTOMSHEET": "Bottom sheet", + "SORTHEADER": "Sort header", + "PAGINATOR": "Paginator", + + "FORMS": "Formes", + "EDITOR": "Editeur", + "VALIDATION": "Validation", + "UPLOAD": "Télécharger", + "TREE": "Arbre", + + "DATATABLE": "Datatable", + "FULLSCREEN": "Plein écran", + "EDITING": "Édition", + "FILTER": "Filtre", + "SELECTION": "Sélection", + "PAGING": "Pagination", + "SORTING": "Tri", + "PINNING": "Épingler", + + "ECOMMERCE": "Commerce électronique", + "PRODUCTS": "Des produits", + "COMPACT": "Compact", + "DETAIL": "vue détaillée", + + "TASKBOARD": "Taskboard", + + "CHARTS": "Graphiques", + + "MAPS": "Cartes", + "GOOGLE": "Google", + "LEAFLET": "Leaflet", + + "DND": "Glisser déposer", + + "PAGES": "Pages", + "INVOICE": "Facture d'achat", + "TIMELINE": "Chronologie", + "USER": "Utilisateur", + "BLANK": "Blanc", + "PRICING": "Pricing", + + "SESSION": "Session", + "404": "404", + "SIGNIN": "Signin", + "SIGNUP": "Signup", + "FORGOT": "Forgot", + "LOCKSCREEN": "Lockscreen", + "ERROR": "Error", + + "DOCS": "Docs" +} diff --git a/src/assets/icons/arrow-down.svg b/src/assets/icons/arrow-down.svg new file mode 100644 index 0000000..23a7aa6 --- /dev/null +++ b/src/assets/icons/arrow-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/icons/book.svg b/src/assets/icons/book.svg new file mode 100644 index 0000000..64a2575 --- /dev/null +++ b/src/assets/icons/book.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/assets/icons/calendar-clear-outline.svg b/src/assets/icons/calendar-clear-outline.svg new file mode 100644 index 0000000..766685c --- /dev/null +++ b/src/assets/icons/calendar-clear-outline.svg @@ -0,0 +1 @@ +Calendar Clear \ No newline at end of file diff --git a/src/assets/icons/calendar.svg b/src/assets/icons/calendar.svg new file mode 100644 index 0000000..165971f --- /dev/null +++ b/src/assets/icons/calendar.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/icons/cancel.svg b/src/assets/icons/cancel.svg new file mode 100644 index 0000000..c258f04 --- /dev/null +++ b/src/assets/icons/cancel.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/icons/download.svg b/src/assets/icons/download.svg new file mode 100644 index 0000000..b06ed31 --- /dev/null +++ b/src/assets/icons/download.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/assets/icons/filter.svg b/src/assets/icons/filter.svg new file mode 100644 index 0000000..e16de88 --- /dev/null +++ b/src/assets/icons/filter.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/icons/group.svg b/src/assets/icons/group.svg new file mode 100644 index 0000000..6d1948f --- /dev/null +++ b/src/assets/icons/group.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/icons/report.svg b/src/assets/icons/report.svg new file mode 100644 index 0000000..23d8a8d --- /dev/null +++ b/src/assets/icons/report.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/assets/icons/reset.svg b/src/assets/icons/reset.svg new file mode 100644 index 0000000..fa86dba --- /dev/null +++ b/src/assets/icons/reset.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/src/assets/images/add-user.svg b/src/assets/images/add-user.svg new file mode 100644 index 0000000..fc9799f --- /dev/null +++ b/src/assets/images/add-user.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/src/assets/images/attendance.svg b/src/assets/images/attendance.svg new file mode 100644 index 0000000..f276072 --- /dev/null +++ b/src/assets/images/attendance.svg @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/src/assets/images/bottom.svg b/src/assets/images/bottom.svg new file mode 100644 index 0000000..0bb8d19 --- /dev/null +++ b/src/assets/images/bottom.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/src/assets/images/coat-of-arms.png b/src/assets/images/coat-of-arms.png new file mode 100644 index 0000000..835d15c Binary files /dev/null and b/src/assets/images/coat-of-arms.png differ diff --git a/src/assets/images/educate-a-child.png b/src/assets/images/educate-a-child.png new file mode 100644 index 0000000..adf8787 Binary files /dev/null and b/src/assets/images/educate-a-child.png differ diff --git a/src/assets/images/favicon.png b/src/assets/images/favicon.png new file mode 100644 index 0000000..12351c6 Binary files /dev/null and b/src/assets/images/favicon.png differ diff --git a/src/assets/images/female-dropout.svg b/src/assets/images/female-dropout.svg new file mode 100644 index 0000000..1b8e240 --- /dev/null +++ b/src/assets/images/female-dropout.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/assets/images/female.svg b/src/assets/images/female.svg new file mode 100644 index 0000000..7d3aadd --- /dev/null +++ b/src/assets/images/female.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/assets/images/import-data.png b/src/assets/images/import-data.png new file mode 100644 index 0000000..7c889c8 Binary files /dev/null and b/src/assets/images/import-data.png differ diff --git a/src/assets/images/kenya_logo.png b/src/assets/images/kenya_logo.png new file mode 100644 index 0000000..4312f1c Binary files /dev/null and b/src/assets/images/kenya_logo.png differ diff --git a/src/assets/images/logo-dark.svg b/src/assets/images/logo-dark.svg new file mode 100755 index 0000000..56cff4d --- /dev/null +++ b/src/assets/images/logo-dark.svg @@ -0,0 +1 @@ +logo-dark \ No newline at end of file diff --git a/src/assets/images/logo.svg b/src/assets/images/logo.svg new file mode 100755 index 0000000..8ed4c50 --- /dev/null +++ b/src/assets/images/logo.svg @@ -0,0 +1 @@ +logo \ No newline at end of file diff --git a/src/assets/images/male-dropout.svg b/src/assets/images/male-dropout.svg new file mode 100644 index 0000000..b08ccd8 --- /dev/null +++ b/src/assets/images/male-dropout.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/assets/images/male.svg b/src/assets/images/male.svg new file mode 100644 index 0000000..35b05bc --- /dev/null +++ b/src/assets/images/male.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/assets/images/naconek.png b/src/assets/images/naconek.png new file mode 100644 index 0000000..2409c7a Binary files /dev/null and b/src/assets/images/naconek.png differ diff --git a/src/assets/images/nemis-logo.jpg b/src/assets/images/nemis-logo.jpg new file mode 100644 index 0000000..564b40b Binary files /dev/null and b/src/assets/images/nemis-logo.jpg differ diff --git a/src/assets/images/school.svg b/src/assets/images/school.svg new file mode 100644 index 0000000..04d2fb0 --- /dev/null +++ b/src/assets/images/school.svg @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/assets/images/students.svg b/src/assets/images/students.svg new file mode 100644 index 0000000..2398270 --- /dev/null +++ b/src/assets/images/students.svg @@ -0,0 +1,27 @@ + + + + + + + diff --git a/src/assets/images/top.svg b/src/assets/images/top.svg new file mode 100644 index 0000000..2db69b0 --- /dev/null +++ b/src/assets/images/top.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/src/assets/images/unicef-logo.png b/src/assets/images/unicef-logo.png new file mode 100644 index 0000000..a284db2 Binary files /dev/null and b/src/assets/images/unicef-logo.png differ diff --git a/src/assets/styles/app.scss b/src/assets/styles/app.scss new file mode 100755 index 0000000..ae158be --- /dev/null +++ b/src/assets/styles/app.scss @@ -0,0 +1,142 @@ +$primary: #2096f3; +$secondary: #7e7e7e; +$modal-fade-transform: scale(0.8); + +@import "~bootstrap/scss/bootstrap"; +@import "scss/material.variables"; +@import "scss/material.themes"; +@import "scss/mixins/bi-app/bi-app-ltr"; + +// Core Variables and Mixins +@import "scss/app.variables"; +@import "scss/mixins"; + +// Core Styles +@import "scss/core"; +@import "scss/material"; +@import "scss/utilities/utilities"; + +// todo: move these custom css +@font-face { + font-family: "Prompt-Bold"; + src: url("../fonts/Prompt/Prompt-Bold.ttf"); + font-style: normal; +} + +@font-face { + font-family: "Prompt-Light"; + src: url("../fonts/Prompt/Prompt-Light.ttf"); + font-style: normal; +} + +@font-face { + font-family: "Prompt-Medium"; + src: url("../fonts/Prompt/Prompt-Medium.ttf"); + font-style: normal; +} + +@font-face { + font-family: "Prompt-Regular"; + src: url("../fonts/Prompt/Prompt-Regular.ttf"); + font-style: normal; +} + +@font-face { + font-family: "Prompt-Semibold"; + src: url("../fonts/Prompt/Prompt-SemiBold.ttf"); + font-style: normal; +} + +* { + font-family: "Prompt-Regular"; +} + +.green-snackbar { + background-color: #43a047; +} + +.yello-snackbar { + background-color: #ffa000; +} + +.red-snackbar { + background-color: #d32f2f; +} + +.blue-snackbar { + background-color: #2096f3; +} + +.notification-info { + padding: 5px; + padding-top: 2px; +} + +.message { + display: flex; + margin-bottom: -5px; +} + +.message mat-icon { + opacity: 0.6; +} + +.stats-link { + cursor: pointer; +} + +.logo { + width: 50%; +} + +.access_account_text { + border-bottom: 1px solid black; +} + +.text-color { + color: white !important; +} + +.modal-backdrop { + z-index: -1 !important; +} + +.modal-backdrop-1 { + z-index: -1; +} + +.mat-expansion-indicator { + margin-bottom: 4px; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 15px; + font-size: 14px; +} + +input.mat-input-element { + margin-bottom: -5px; +} + +input { + cursor: pointer; +} + +.page-title { + font-family: "Prompt-Medium"; + margin-left: 15px; + font-size: 19px; +} + +.page-subtitle { + font-family: "Prompt-Regular"; + margin-left: 20px; + font-size: 14px; +} \ No newline at end of file diff --git a/src/assets/styles/highlightjs/material-dark.css b/src/assets/styles/highlightjs/material-dark.css new file mode 100755 index 0000000..7497bf5 --- /dev/null +++ b/src/assets/styles/highlightjs/material-dark.css @@ -0,0 +1,122 @@ +/* +Orginal Style from https://github.com/Kelbster/highlightjs-material-dark-theme (c) Kelby Gassmanl +*/ +.hljs { + display: block; + overflow-x: auto; + padding: 1em; + background: #2B2B2D; + color: #CDD3D8; + -webkit-font-smoothing: antialiased; + text-size-adjust: 100%; + font: 300 100%/1 Roboto Mono, monospace; + font-size: 14px; +} + +.hljs>*::selection { + background-color: #3e4451; +} + +.hljs-comment { + color: #656565; + font-style: italic; +} + +.hljs-selector-tag { + color: #C792EA; +} + +.hljs-string, +.hljs-subst { + color: #9ccc65; +} + +.hljs-number, +.hljs-regexp, +.hljs-variable, +.hljs-template-variable { + color: #F77669; +} + +.hljs-keyword { + color: #C792EA; +} + +.hljs-function>.hljs-title { + color: #75A5FF; +} + +.hljs-tag { + color: #ce93d8; +} + +.hljs-name { + color: #4dd0e1; +} + +.hljs-type { + color: #da4939; +} + +.hljs-attribute { + color: #80CBBF; +} + +.hljs-symbol, +.hljs-bullet, +.hljs-built_in, +.hljs-builtin-name, +.hljs-link { + color: #C792EA; +} + +.hljs-params { + color: #EEFFF7; +} + + +.hljs-meta { + color: #75A5FF; +} + +.hljs-title { + color: #75A5FF; +} + +.hljs-section { + color: #ffc66d; +} + +.hljs-addition { + background-color: #144212; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + background-color: #600; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.hljs-selector-class { + color: #FFCB68; +} + +.hljs-selector-id { + color: #F77669; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-link { + text-decoration: underline; +} diff --git a/src/assets/styles/highlightjs/material-light.css b/src/assets/styles/highlightjs/material-light.css new file mode 100755 index 0000000..35e3c02 --- /dev/null +++ b/src/assets/styles/highlightjs/material-light.css @@ -0,0 +1,90 @@ +/** Adapted from https://github.com/atom-material/atom-material-syntax-light */ +.hljs { + display: block; + overflow-x: auto; + padding: 1em; + background: #FAFAFA; + color: #37474f; + -webkit-font-smoothing: antialiased; + text-size-adjust: 100%; + font: 300 100%/1 Roboto Mono, monospace; + font-size: 14px; +} + +.hljs>*::selection, +.hljs-section { + background-color: #D6EDEA; +} + +.hljs-comment { + color: #B0BEC5; + font-style: italic; +} + +.hljs-tag, +.hljs-selector-tag, +.hljs-regexp, +.hljs-meta { + color: #9c27b0; +} + +.hljs-string, +.hljs-subst { + color: #0d904f; +} + +.hljs-number, +.hljs-variable, +.hljs-template-variable { + color: #80CBC4; +} + +.hljs-name, +.hljs-keyword, +.hljs-type, +.hljs-attribute { + color: #3b78e7; +} + +.hljs-title, +.hljs-function>.hljs-title, +.hljs-symbol, +.hljs-bullet, +.hljs-built_in, +.hljs-builtin-name, +.hljs-link { + color: #6182B8; +} + +.hljs-params { + color: #d81b60; +} + +.hljs-addition { + color: #3b78e7; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + color: #E53935; + display: inline-block; + width: 100%; +} + +.hljs-selector-id, +.hljs-selector-class { + color: #8796B0; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-link { + text-decoration: underline; +} diff --git a/src/assets/styles/scss/_app.variables.scss b/src/assets/styles/scss/_app.variables.scss new file mode 100755 index 0000000..aa10c2f --- /dev/null +++ b/src/assets/styles/scss/_app.variables.scss @@ -0,0 +1,105 @@ +// +// General +// +$transition-duration: 300ms !default; +$gutter: 1rem !default; +// +// Widths +// +$sidebar-width: 15rem !default; +$compact-sidebar-width: 100px !default; +$collapsed-sidebar-width: 80px !default; +$sidebar-width-mobile: 18rem !default; +// +// Typography +// +$mat-font-family: Roboto, "Helvetica Neue", sans-serif; +$font-size-base: 0.875rem !default; +$font-weight-base: 400 !default; +$font-weight-medium: 500 !default; +$font-weight-bold: 600 !default; +$font-size-h1: 2.5rem !default; +$font-size-h2: 2rem !default; +$font-size-h3: 1.75rem !default; +$font-size-h4: 1.5rem !default; +$font-size-h5: 1.25rem !default; +$font-size-h6: 1rem !default; +$headings-margin-bottom: (1rem / 2) !default; +$headings-font-family: inherit !default; +$headings-font-weight: 400 !default; +$headings-line-height: 1.1 !default; +$headings-color: inherit !default; +// +// Radius +// +$border-radius-base: 2px !default; +$border-radius-large: 2px !default; +$border-radius-small: 1px !default; +// +// Spacing +// +$spacer: 1rem !default; +$spacer-x: $spacer !default; +$spacer-y: $spacer !default; +$spacers: ( + 0: ( + x: 0, + y: 0, + ), + xs: ( + x: ( + $spacer-x / 1.8, + ), + y: ( + $spacer-y / 1.8, + ), + ), + 1: ( + x: $spacer-x, + y: $spacer-y, + ), + 2: ( + x: ( + $spacer-x * 1.5, + ), + y: ( + $spacer-y * 1.5, + ), + ), + 3: ( + x: ( + $spacer-x * 3, + ), + y: ( + $spacer-y * 3, + ), + ), +) !default; +$border-width: 1px !default; +// Media queries breakpoints +// -------------------------------------------------- +// Grid breakpoints +// +// Define the minimum and maximum dimensions at which your layout will change, +// adapting to different screen sizes, for use in media queries. +$grid-breakpoints: ( + // Extra small screen / phone + xs: 0, + // Small screen / phone + sm: 600px, + // Medium screen / tablet + md: 960px, + // Large screen / desktop + lg: 1280px, + // Extra large screen / wide desktop + xl: 1920px +) !default; +// Grid containers +// +// Define the maximum width of `.container` for different screen sizes. +$container-max-widths: ( + sm: 576px, + md: 720px, + lg: 940px, + xl: 1140px, +) !default; diff --git a/src/assets/styles/scss/_core.scss b/src/assets/styles/scss/_core.scss new file mode 100755 index 0000000..6f2e5d5 --- /dev/null +++ b/src/assets/styles/scss/_core.scss @@ -0,0 +1,10 @@ +@import "components/perfect-scrollbar"; +@import "core/scaffolding"; +@import "core/typography"; +@import "core/main-sidebar"; +@import "core/main-header"; +@import "core/main-panel"; +@import "core/notification-sidebar"; +@import "components/table"; +@import "core/sessions"; +@import "core/media"; diff --git a/src/assets/styles/scss/_material.scss b/src/assets/styles/scss/_material.scss new file mode 100755 index 0000000..f434192 --- /dev/null +++ b/src/assets/styles/scss/_material.scss @@ -0,0 +1,7 @@ +@import "material/buttons"; +@import "material/cards"; +@import "material/dialog"; +@import "material/lists"; +@import "material/select"; +@import "material/menus"; +@import "material/tabs"; diff --git a/src/assets/styles/scss/_material.themes.scss b/src/assets/styles/scss/_material.themes.scss new file mode 100755 index 0000000..8657b90 --- /dev/null +++ b/src/assets/styles/scss/_material.themes.scss @@ -0,0 +1,7 @@ +// Default Theme +@include angular-material-theme($theme); + +// Dark Theme +.app-dark { + @include angular-material-theme($dark-theme); +} diff --git a/src/assets/styles/scss/_material.variables.scss b/src/assets/styles/scss/_material.variables.scss new file mode 100755 index 0000000..adaadf3 --- /dev/null +++ b/src/assets/styles/scss/_material.variables.scss @@ -0,0 +1,15 @@ +@import '~@angular/material/theming'; +$primary: mat-palette($mat-blue); +$accent: mat-palette($mat-amber, A200, A100, A400); +$warn: mat-palette($mat-red); +$theme: mat-light-theme($primary, $accent, $warn); +$background: map-get($theme, background); +$foreground: map-get($theme, foreground); +@include mat-core(); +$dark-primary: mat-palette($mat-blue-grey); +$dark-accent: mat-palette($mat-amber, A200, A100, A400); +$dark-warn: mat-palette($mat-deep-orange); +$dark-theme: mat-dark-theme($dark-primary, $dark-accent, $dark-warn); +$dark-background: map-get($dark-theme, background); +$dark-foreground: map-get($dark-theme, foreground); +$config: mat-typography-config(); \ No newline at end of file diff --git a/src/assets/styles/scss/_mixins.scss b/src/assets/styles/scss/_mixins.scss new file mode 100755 index 0000000..94e4404 --- /dev/null +++ b/src/assets/styles/scss/_mixins.scss @@ -0,0 +1,6 @@ +@import "mixins/breakpoints"; +@import "mixins/hover"; +@import "mixins/text-emphasis"; +@import "mixins/clearfix"; +@import "mixins/flex"; +@import "mixins/misc"; diff --git a/src/assets/styles/scss/components/_calendar.scss b/src/assets/styles/scss/components/_calendar.scss new file mode 100755 index 0000000..54955f4 --- /dev/null +++ b/src/assets/styles/scss/components/_calendar.scss @@ -0,0 +1,106 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +:host ::ng-deep { + .cal-day-view { + .cal-hour-rows { + border-top: 0; + border-bottom: 0; + border-color: mat-color($foreground, divider); + } + + .cal-hour:nth-child(odd) { + background-color: mat-color($background, 'hover'); + } + + .cal-hour:not(:last-child) .cal-hour-segment, + .cal-hour:last-child :not(:last-child) .cal-hour-segment { + border-color: mat-color($foreground, divider); + } + + .cal-hour-segment:hover { + background-color: mat-color($background, 'hover'); + } + } + + .cal-month-view { + .cal-cell-row:hover { + background-color: mat-color($background, 'hover'); + } + + .cal-cell-row .cal-cell:hover, + .cal-cell.cal-has-events.cal-open { + background-color: mat-color($background, 'hover'); + } + + .cal-days { + border-color: mat-color($foreground, divider); + } + + .cal-day-cell:not(:last-child) { + border-color: mat-color($foreground, divider); + } + + .cal-days .cal-cell-row { + border-color: mat-color($foreground, divider); + } + + .cal-open-day-events { + box-shadow: none; + } + } + + .cal-week-view { + .cal-day-headers { + border-color: mat-color($foreground, divider); + } + + .cal-day-headers .cal-header:not(:last-child) { + border-color: mat-color($foreground, divider); + } + + .cal-day-headers .cal-header:hover { + background-color: mat-color($background, 'hover'); + } + + .cal-event.cal-starts-within-week { + border-top-left-radius: $border-radius-base; + border-bottom-left-radius: $border-radius-base; + ; + } + + .cal-event.cal-ends-within-week { + border-top-right-radius: $border-radius-base; + ; + border-bottom-right-radius: $border-radius-base; + ; + } + } + + .cal-month-view .cal-days, + .cal-day-view .cal-hour-rows, + .cal-week-view .cal-day-headers { + border-left: 0; + border-right: 0; + } + + .editButton, + .deleteButton { + background-size: cover; + width: 13px; + height: 13px; + display: inline-block; + margin: 0 5px; + } + + .editButton { + background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDUyOC44OTkgNTI4Ljg5OSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTI4Ljg5OSA1MjguODk5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTMyOC44ODMsODkuMTI1bDEwNy41OSwxMDcuNTg5bC0yNzIuMzQsMjcyLjM0TDU2LjYwNCwzNjEuNDY1TDMyOC44ODMsODkuMTI1eiBNNTE4LjExMyw2My4xNzdsLTQ3Ljk4MS00Ny45ODEgICBjLTE4LjU0My0xOC41NDMtNDguNjUzLTE4LjU0My02Ny4yNTksMGwtNDUuOTYxLDQ1Ljk2MWwxMDcuNTksMTA3LjU5bDUzLjYxMS01My42MTEgICBDNTMyLjQ5NSwxMDAuNzUzLDUzMi40OTUsNzcuNTU5LDUxOC4xMTMsNjMuMTc3eiBNMC4zLDUxMi42OWMtMS45NTgsOC44MTIsNS45OTgsMTYuNzA4LDE0LjgxMSwxNC41NjVsMTE5Ljg5MS0yOS4wNjkgICBMMjcuNDczLDM5MC41OTdMMC4zLDUxMi42OXoiIGZpbGw9IiNGRkZGRkYiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K); + + } + + .deleteButton { + background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDM1NyAzNTciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDM1NyAzNTc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iY2xlYXIiPgoJCTxwb2x5Z29uIHBvaW50cz0iMzU3LDM1LjcgMzIxLjMsMCAxNzguNSwxNDIuOCAzNS43LDAgMCwzNS43IDE0Mi44LDE3OC41IDAsMzIxLjMgMzUuNywzNTcgMTc4LjUsMjE0LjIgMzIxLjMsMzU3IDM1NywzMjEuMyAgICAgMjE0LjIsMTc4LjUgICAiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K); + } +} diff --git a/src/assets/styles/scss/components/_chat.scss b/src/assets/styles/scss/components/_chat.scss new file mode 100755 index 0000000..d7badd4 --- /dev/null +++ b/src/assets/styles/scss/components/_chat.scss @@ -0,0 +1,154 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +.mat-drawer { + width: 15rem; +} + +.chat-conversation-user { + overflow: hidden; + box-sizing: border-box; + width: 100%; + margin-bottom: $gutter; + padding: 0 2rem; + @include flexbox; +} + +.me { + @include justify-content(flex-end); +} + +.me .chat-conversation-avatar { + @include margin-left($gutter); + @include order(2); +} + +.chat-conversation-message { + position: relative; + padding: .625rem $gutter; + background-color: white; + @include rounded(4px); + + p { + margin: 0; + } + + .chat-date { + display: block; + font-size: 11px; + padding-top: 2px; + } +} + +.me .chat-conversation-message { + @include order(1); + + .chat-date { + text-align: right; + } +} + +.me .chat-conversation-message::after { + position: absolute; + bottom: 0; + width: 0; + height: 0; + content: ''; + border: 5px solid mat-color($accent); + border-top-color: transparent; + border-right-color: transparent; + @include right(-7px); +} + +.them .chat-conversation-avatar { + @include margin-right($gutter); +} + +.them .chat-conversation-message::after { + position: absolute; + top: 0; + width: 0; + height: 0; + content: ''; + border: 5px solid mat-color($background, card); + border-bottom-color: transparent; + @include left(-7px); + @include border-left-color(transparent); +} + +.chat-conversation-avatar { + position: relative; + width: 36px; + @include flex-shrink(0); + @include flex-grow(0); + + img { + max-width: 100%; + border-radius: 50%; + } +} + +.chat-conversation-user.me .chat-conversation-message { + position: relative; + background-color: mat-color($accent); + @include float(right); + + p { + color: white; + } +} + +.app-dark :host { + .them .chat-conversation-message { + background: mat-color($dark-background, card); + } + + .them .chat-conversation-message::after { + border: 5px solid mat-color($dark-background, card); + border-bottom-color: transparent; + @include left(-7px); + @include border-left-color(transparent); + } +} + +[dir="rtl"] :host { + + .me .chat-conversation-avatar { + @include margin-left(0); + @include margin-right($gutter); + } + + .me .chat-conversation-message { + .chat-date { + text-align: left; + } + } + + .me .chat-conversation-message::after { + border: 5px solid mat-color($accent); + border-top-color: transparent; + border-right-color: mat-color($accent); + border-left-color: transparent; + @include right(auto); + @include left(-7px); + } + + .them .chat-conversation-avatar { + @include margin-right(0); + @include margin-left($gutter); + } + + .them .chat-conversation-message::after { + border: 5px solid mat-color($background, card); + border-bottom-color: transparent; + border-right-color: transparent; + @include left(auto); + @include right(-7px); + } + + .chat-conversation-user.me .chat-conversation-message { + @include float(left); + } +} diff --git a/src/assets/styles/scss/components/_editor.scss b/src/assets/styles/scss/components/_editor.scss new file mode 100755 index 0000000..7ae8915 --- /dev/null +++ b/src/assets/styles/scss/components/_editor.scss @@ -0,0 +1,26 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +.app-dark :host ::ng-deep { + .ql-snow .ql-picker .ql-picker-label { + color: mat-color($dark-foreground, base); + } + + .ql-snow .ql-stroke { + stroke: mat-color($dark-foreground, base); + } + + .ql-snow .ql-fill, + .ql-snow .ql-stroke.ql-fill { + fill: mat-color($dark-foreground, base); + } +} + +[dir=rtl] :host ::ng-deep { + .ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg { + right: auto; + left: 0; + } +} diff --git a/src/assets/styles/scss/components/_messages.scss b/src/assets/styles/scss/components/_messages.scss new file mode 100755 index 0000000..921385d --- /dev/null +++ b/src/assets/styles/scss/components/_messages.scss @@ -0,0 +1,65 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +:host { + .mat-sidenav { + position: absolute !important; + width: 200px; + } + + .mat-drawer-content { + padding: 0; + } + + @media (min-width: 959px) { + .mat-drawer-side { + background-color: transparent; + box-shadow: none !important; + } + } + + .message-icon { + width: 24px; + height: 24px; + border-radius: 12px; + } + + mat-expansion-panel:not(.mat-expanded) { + .show-on-open { + display: none; + } + } + + .mat-expanded .hide-on-open { + display: none; + } + + .mat-expansion-panel { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.05) !important; + } + + .mat-expansion-panel-header { + height: auto !important; + min-height: 65px !important; + } + + .messages-nav { + mat-icon { + margin-right: 16px; + } + } +} + +[dir="rtl"] :host ::ng-deep { + .side-panel-opened>.mat-drawer-content { + margin-left: 0 !important; + margin-right: 200px !important; + } + + .messages-nav mat-icon { + margin-right: 0; + margin-left: 16px; + } +} diff --git a/src/assets/styles/scss/components/_perfect-scrollbar.scss b/src/assets/styles/scss/components/_perfect-scrollbar.scss new file mode 100755 index 0000000..ff40562 --- /dev/null +++ b/src/assets/styles/scss/components/_perfect-scrollbar.scss @@ -0,0 +1,138 @@ +$ps-bar-container-hover-bg: rgba(0, 0, 0, 0.582) !default; + +/* + * Container style + */ +.ps { + overflow: hidden !important; + overflow-anchor: none; + -ms-overflow-style: none; + touch-action: auto; + -ms-touch-action: auto; +} + +/* + * Scrollbar rail styles + */ +.ps__rail-x { + display: none; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; + -webkit-transition: background-color .2s linear, opacity .2s linear; + height: 15px; + /* there must be 'bottom' or 'top' for ps__rail-x */ + bottom: 0px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__rail-y { + display: none; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; + -webkit-transition: background-color .2s linear, opacity .2s linear; + width: 15px; + /* there must be 'right' or 'left' for ps__rail-y */ + right: 0; + /* please don't change 'position' */ + position: absolute; +} + +.ps--active-x>.ps__rail-x, +.ps--active-y>.ps__rail-y { + display: block; + background-color: transparent; +} + +.ps:hover>.ps__rail-x, +.ps:hover>.ps__rail-y, +.ps--focus>.ps__rail-x, +.ps--focus>.ps__rail-y, +.ps--scrolling-x>.ps__rail-x, +.ps--scrolling-y>.ps__rail-y { + opacity: 0.6; +} + +.ps__rail-x:hover, +.ps__rail-y:hover, +.ps__rail-x:focus, +.ps__rail-y:focus { + background-color: #eee; + opacity: 0.9; +} + +/* + * Scrollbar thumb styles + */ +.ps__thumb-x { + background-color: $ps-bar-container-hover-bg; + border-radius: 6px; + transition: background-color .2s linear, height .2s ease-in-out; + -webkit-transition: background-color .2s linear, height .2s ease-in-out; + height: 6px; + /* there must be 'bottom' for ps__thumb-x */ + bottom: 2px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__thumb-y { + background-color: $ps-bar-container-hover-bg; + border-radius: 6px; + transition: background-color .2s linear, width .2s ease-in-out; + -webkit-transition: background-color .2s linear, width .2s ease-in-out; + width: 6px; + /* there must be 'right' for ps__thumb-y */ + right: 2px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__rail-x:hover>.ps__thumb-x, +.ps__rail-x:focus>.ps__thumb-x { + background-color: #999; + height: 11px; +} + +.ps__rail-y:hover>.ps__thumb-y, +.ps__rail-y:focus>.ps__thumb-y { + background-color: #999; + width: 11px; +} + +/* MS supports */ +/*@supports (-ms-overflow-style: none) { + .ps { + overflow: auto !important; + } +}*/ + +@media screen and (-ms-high-contrast: active), +(-ms-high-contrast: none) { + .ps { + overflow: auto !important; + } +} + + +.ps__rail-y { + right: 0; + left: auto !important; +} + +.ps__thumb-y { + right: 2px; + left: auto !important; +} + +[dir="rtl"] { + .ps__rail-y { + right: auto !important; + left: 0 !important; + } + + .ps__thumb-y { + right: auto !important; + left: 2px !important; + } +} diff --git a/src/assets/styles/scss/components/_pricing.scss b/src/assets/styles/scss/components/_pricing.scss new file mode 100755 index 0000000..e0e1845 --- /dev/null +++ b/src/assets/styles/scss/components/_pricing.scss @@ -0,0 +1,66 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +:host ::ng-deep { + .pricing-plan { + text-align: center; + cursor: default; + margin-bottom: 22px; + + .mat-list[dense] .mat-list-item .mat-list-item-content, + .mat-nav-list[dense] .mat-list-item .mat-list-item-content { + display: inline-flex; + } + } + + .plan-price { + font-size: 2.5rem; + font-weight: 900; + position: relative; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + + .plan-price-symbol { + font-size: 1rem; + vertical-align: super; + } + + .plan-price-period { + font-size: 0.8125rem; + display: inline-block; + padding: 0; + opacity: .7; + } + + .plan-title { + font-size: 0.8125rem; + font-weight: 500; + overflow: hidden; + margin-bottom: $gutter; + white-space: nowrap; + letter-spacing: .01rem; + text-transform: uppercase; + text-overflow: ellipsis; + } + + .plan-features { + line-height: 2.5; + margin: 0; + padding: $gutter; + list-style: none; + + li { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + } + + .switch-center { + margin: 0 auto; + } +} diff --git a/src/assets/styles/scss/components/_product-detail.scss b/src/assets/styles/scss/components/_product-detail.scss new file mode 100755 index 0000000..b280761 --- /dev/null +++ b/src/assets/styles/scss/components/_product-detail.scss @@ -0,0 +1,23 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +:host { + .product-image-header { + position: relative; + top: -5px; + left: -5px; + border-radius: $border-radius-base; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12); + height: 100%; + + @include media-breakpoint-down(sm) { + top: 0; + left: 0; + border-radius: $border-radius-base $border-radius-base 0 0; + box-shadow: none; + height: 400px; + } + } +} diff --git a/src/assets/styles/scss/components/_social.scss b/src/assets/styles/scss/components/_social.scss new file mode 100755 index 0000000..a441110 --- /dev/null +++ b/src/assets/styles/scss/components/_social.scss @@ -0,0 +1,59 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +:host { + mat-list.profile-list mat-list-item .mat-list-item-content { + padding: 0 !important; + font-size: 13px !important; + } + + .profile-post { + textarea { + border: 0; + width: 100%; + padding: 8px; + outline: 0; + border-radius: $border-radius-base $border-radius-base 0 0; + font-size: $font-size-base; + } + } + + .activity-stream { + position: relative; + + &::before { + content: ''; + position: absolute; + top: 48px; + bottom: 0; + left: 48px; + width: 1px; + background-color: mat-color($foreground, divider); + } + + .mat-card { + background-color: transparent; + } + + .mat-card-content { + padding-top: 0; + padding-left: 78px; + } + } +} + +[dir="rtl"] :host { + .activity-stream { + &::before { + left: auto; + right: 42px; + } + + .mat-card-content { + padding-left: o; + padding-right: 78px; + } + } +} diff --git a/src/assets/styles/scss/components/_table.scss b/src/assets/styles/scss/components/_table.scss new file mode 100755 index 0000000..e69de29 diff --git a/src/assets/styles/scss/components/_taskboard.scss b/src/assets/styles/scss/components/_taskboard.scss new file mode 100755 index 0000000..7b6239a --- /dev/null +++ b/src/assets/styles/scss/components/_taskboard.scss @@ -0,0 +1,118 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +.taskboard { + overflow-x: auto; + overflow-y: hidden; + white-space: nowrap; + padding: $spacer; + + .taskboard-wrapper { + width: 280px; + padding-right: ($spacer / 2); + padding-left: ($spacer / 2); + box-sizing: border-box; + display: inline-block; + vertical-align: top; + height: 100%; + + &:first-child { + padding-left: 0; + } + + &:last-child { + padding-right: 0; + } + } + + .taskboard-list { + box-sizing: border-box; + display: flex; + flex-direction: column; + max-height: 100%; + white-space: normal; + background-color: rgba(0, 0, 0, 0.05); + border-radius: $border-radius-base; + } + + .taskboard-header { + position: relative; + flex-direction: row; + align-items: center; + letter-spacing: 0.02rem; + padding: ($spacer/2); + margin: 0; + } + + .taskboard-task { + position: relative; + display: flex; + flex-direction: column; + @include mat-elevation(1); + color: rgba(mat-color($foreground, base), 0.87); + background: mat-color($background, card); + border-radius: $border-radius-base; + padding: $gutter; + margin-bottom: ($spacer/2); + + &:last-child { + margin-bottom: 0; + } + + &:hover { + cursor: grab; + } + } + + .taskboard-task::after { + content: ""; + position: absolute; + border: 4px solid transparent; + top: 0; + border-top-width: 12px; + border-bottom-color: transparent; + right: 6px; + } + + .taskboard-task.task-status-success::after { + border-top-color: map-get($mat-green, A700); + border-right-color: map-get($mat-green, A700); + border-left-color: map-get($mat-green, A700); + } + + .taskboard-task.task-status-info::after { + border-top-color: map-get($mat-light-blue, A700); + border-right-color: map-get($mat-light-blue, A700); + border-left-color: map-get($mat-light-blue, A700); + } + + .taskboard-task.task-status-warning::after { + border-top-color: map-get($mat-yellow, A700); + border-right-color: map-get($mat-yellow, A700); + border-left-color: map-get($mat-yellow, A700); + } + + .taskboard-task.task-status-danger::after { + border-top-color: map-get($mat-red, A700); + border-right-color: map-get($mat-red, A700); + border-left-color: map-get($mat-red, A700); + } + + .taskboard-cards { + padding: 0 ($spacer/2) ($spacer/2); + box-sizing: border-box; + overflow-x: hidden; + overflow-y: auto; + } + + .taskboard-task-title { + margin-bottom: ($spacer/2); + } +} + +[dir=rtl] :host .taskboard .taskboard-task::after { + right: auto; + left: 6px; +} diff --git a/src/assets/styles/scss/components/_timeline.scss b/src/assets/styles/scss/components/_timeline.scss new file mode 100755 index 0000000..366c4e4 --- /dev/null +++ b/src/assets/styles/scss/components/_timeline.scss @@ -0,0 +1,359 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +.timeline { + position: relative; + margin: ($gutter/3); + + &::before { + position: absolute; + top: 6px; + width: 4px; + height: 100%; + content: ''; + background: mat-color($background, card); + @include left(4px); + } + + .timeline-icon { + position: absolute; + top: 15px; + width: 12px; + height: 12px; + text-align: center; + @include left(0); + @include rounded(50%); + + &::after { + content: ''; + position: absolute; + top: 2px; + @include left(2px); + width: 8px; + height: 8px; + @include rounded(50%); + background: white; + } + } + + .timeline-card { + position: relative; + margin: 40px 0; + @include clearfix(); + + &:first-child .timeline-icon { + top: 0; + } + + &:last-child .timeline-icon { + top: 0; + } + } + + .timeline-card:first-child { + margin-top: 0; + } + + .timeline-content { + position: relative; + @include margin-left(30px); + @include clearfix(); + + >.mat-card { + @include float(left); + display: inline-block; + margin: 0; + } + } + + .timeline-content .timeline-date { + display: inline-block; + padding: 4px 0 10px; + } + + .timeline-content>.mat-card::before { + position: absolute; + top: 11px; + width: 0; + height: 0; + content: ' '; + pointer-events: none; + border-width: 10px; + border-style: solid; + @include right(100%); + @include border-color(transparent, rgba(150, 150, 150, .2), transparent, transparent); + } + + .timeline-content>.mat-card::after { + position: absolute; + top: 12px; + width: 0; + height: 0; + content: ' '; + pointer-events: none; + border-width: 9px; + border-style: solid; + @include right(100%); + @include border-color(transparent, mat-color($background, card), transparent, transparent); + } +} + +@include media-breakpoint-up(lg) { + .timeline:not(.stacked) { + &::before { + @include left(50%); + @include margin-left(-2px); + } + + .timeline-card:nth-child(odd) .timeline-content { + @include float(right); + } + + .timeline-card:nth-child(even) .timeline-content { + @include float(left); + } + + .timeline-card:nth-child(even) .timeline-content>.mat-card { + @include float(right); + } + + .timeline-card:nth-child(even) .timeline-content>.mat-card::before { + position: absolute; + @include right(auto); + @include left(100%); + @include border-color(transparent, transparent, transparent, rgba(150, 150, 150, .2)); + } + + .timeline-card:nth-child(even) .timeline-content>.mat-card::after { + position: absolute; + @include right(auto); + @include left(100%); + @include border-color(transparent, transparent, transparent, mat-color($background, card)); + } + + .timeline-card:nth-child(odd) .timeline-content .timeline-date { + @include right(112%); + @include left(auto); + @include text-align(right); + } + + .timeline-card:first-child { + margin-top: 0; + } + + .timeline-icon { + @include left(50%); + @include margin-left(-6px); + } + + .timeline-content { + width: 47%; + @include margin-left(0); + } + } + + .timeline .timeline-date { + position: absolute; + top: 7px; + width: 100%; + @include left(112%); + } + + .timeline.stacked { + .timeline-content>.mat-card { + margin-bottom: 0; + } + + .timeline-date { + position: relative; + top: 0; + width: 100%; + @include left(auto); + } + } +} + +@include media-breakpoint-down(md) { + .timeline { + .timeline-content { + margin-left: 30px; + } + + .timeline-content>.mat-card { + @include float(left); + } + + .timeline-content>.mat-card { + margin-bottom: 0; + } + + .timeline-date { + position: relative; + top: 0; + width: 100%; + @include left(auto); + } + } +} + +[dir="rtl"] :host { + .timeline { + &::before { + @include left(auto); + @include right(4px); + } + + .timeline-icon { + @include left(auto); + @include right(0); + } + + .timeline-content { + >.mat-card { + @include float(right !important); + } + } + + &.stacked { + .timeline-content { + margin-left: 0; + margin-right: 30px; + } + + .timeline-content .timeline-date { + text-align: right; + } + + .timeline-content>.mat-card::before { + @include right(auto); + @include left(100%); + @include border-color(transparent, transparent, transparent, rgba(150, 150, 150, .2)); + } + + .timeline-content>.mat-card::after { + @include right(auto); + @include left(100%); + @include border-color(transparent, transparent, transparent, mat-color($background, card)); + } + } + } + + @include media-breakpoint-up(lg) { + .timeline:not(.stacked) { + &::before { + @include left(auto); + @include right(50%); + @include margin-left(0); + @include margin-right(-2px); + } + + .timeline-icon { + @include left(auto); + @include right(50%); + @include margin-left(0); + @include margin-right(-6px); + } + } + + .timeline .timeline-date { + text-align: left; + } + + .timeline.stacked { + .timeline-date { + position: relative; + top: 0; + width: 100%; + @include left(auto); + text-align: right; + } + } + } + + @include media-breakpoint-down(md) { + .timeline { + .timeline-content { + margin-left: 0; + margin-right: 30px; + } + + .timeline-content .timeline-date { + text-align: right; + } + + .timeline-content>.mat-card::before { + @include right(auto !important); + @include left(100% !important); + @include border-color(transparent, transparent, transparent, rgba(150, 150, 150, .2) !important); + } + + .timeline-content>.mat-card::after { + @include right(auto !important); + @include left(100% !important); + @include border-color(transparent, transparent, transparent, mat-color($background, card) !important); + } + } + } +} + +.app-dark :host { + .timeline { + &::before { + background: mat-color($dark-background, card); + } + + .timeline-icon { + &::after { + background: mat-color($dark-background, card); + } + } + + .timeline-content>.mat-card::before { + @include border-color(transparent, mat-color($dark-background, card), transparent, transparent !important); + } + + .timeline-content>.mat-card::after { + @include border-color(transparent, mat-color($dark-background, card), transparent, transparent !important); + } + } + + @include media-breakpoint-up(lg) { + .timeline:not(.stacked) { + .timeline-card:nth-child(even) .timeline-content>.mat-card::before { + @include border-color(transparent, transparent, transparent, mat-color($dark-background, card) !important); + } + + .timeline-card:nth-child(even) .timeline-content>.mat-card::after { + @include border-color(transparent, transparent, transparent, mat-color($dark-background, card) !important); + } + } + } +} + +.app-dark[dir="rtl"] :host { + .timeline { + &.stacked { + .timeline-content>.mat-card::before { + @include border-color(transparent, transparent, transparent, rgba(150, 150, 150, .2) !important); + } + + .timeline-content>.mat-card::after { + @include border-color(transparent, transparent, transparent, mat-color($dark-background, card) !important); + } + } + } + + @include media-breakpoint-down(md) { + .timeline { + .timeline-content>.mat-card::before { + @include border-color(transparent, transparent, transparent, rgba(150, 150, 150, .2) !important); + } + + .timeline-content>.mat-card::after { + @include border-color(transparent, transparent, transparent, mat-color($dark-background, card) !important); + } + } + } +} diff --git a/src/assets/styles/scss/components/_upload.scss b/src/assets/styles/scss/components/_upload.scss new file mode 100755 index 0000000..1ddb78f --- /dev/null +++ b/src/assets/styles/scss/components/_upload.scss @@ -0,0 +1,19 @@ +@import "../material.variables"; +@import "../mixins/bi-app/bi-app-ltr"; +@import "../app.variables"; +@import "../mixins"; + +.my-drop-zone { + min-height: 32px; + margin-bottom: $gutter; + padding: ($gutter/2); + border: dashed 1px mat-color($foreground, divider); + background-color: white; + @include rounded($border-radius-base); +} + +.app-dark :host { + .my-drop-zone { + background: mat-color($dark-background, card); + } +} diff --git a/src/assets/styles/scss/core/_main-header.scss b/src/assets/styles/scss/core/_main-header.scss new file mode 100755 index 0000000..4f6b2d7 --- /dev/null +++ b/src/assets/styles/scss/core/_main-header.scss @@ -0,0 +1,114 @@ +/* $header + ------------------------------------------*/ + +mat-toolbar { + .toolbar-avatar { + width: 40px; + height: 40px; + line-height: 24px; + } + .toolbar-avatar img { + width: 40px; + border-radius: 50%; + } + .notification-label { + position: absolute; + top: 0; + left: 50%; + font-size: 12px; + font-weight: 700; + line-height: 13px; + border-radius: 50%; + width: 13px; + height: 13px; + background-color: mat-color($warn); + border: 4px solid mat-color($warn); + color: white; + text-align: center; + } + &.main-header { + padding: 0 8px; + position: relative; + box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3); + z-index: 9; + + .nav-bar { + display: flex; + flex-direction: row; + align-items: center; + .logo { + width: 11%; + cursor: pointer; + } + .ministry-text { + font-size: 16px; + font-weight: 500; + padding-left: 10px; + } + } + + .onekana-text { + font-size: 18px; + font-weight: 400; + justify-content: center; + padding-left: 50%; + } + } +} + +@media only screen and (max-width: 1024px) { + mat-toolbar { + &.main-header { + .onekana-text { + padding-left: 5%; + font-size: 16px; + } + } + } +} + +@media only screen and (max-width: 670px) { + mat-toolbar { + &.main-header { + .onekana-text { + display: none; + } + } + } +} + +// Specific height for mobile devices in portrait mode. +@media ($mat-xsmall) and (orientation: portrait) { + mat-toolbar { + &.main-header { + .branding { + padding: 0 16px 0 16px; + } + .logo { + width: 87px; + height: 20px; + -webkit-background-size: 87px 20px; + background-size: 87px 20px; + } + .onekana-text { + padding-left: 10%; + } + } + } +} + +[dir="rtl"] { + .main-header { + .branding { + padding: 0 16px 0 64px; + } + .search-bar { + .search-form { + .material-icons { + left: auto; + right: 10px; + } + } + } + } +} diff --git a/src/assets/styles/scss/core/_main-panel.scss b/src/assets/styles/scss/core/_main-panel.scss new file mode 100755 index 0000000..49b821b --- /dev/null +++ b/src/assets/styles/scss/core/_main-panel.scss @@ -0,0 +1,92 @@ +/* $main-panel + ------------------------------------------*/ +$mat-toolbar-height-desktop: 64px !default; +$mat-toolbar-height-mobile-portrait: 56px !default; +$mat-toolbar-height-mobile-landscape: 48px !default; + +.app-inner { + position: relative; + width: 100%; + max-width: 100%; + height: calc(100vh - #{$mat-toolbar-height-desktop}); + @include flexbox; + @include flex-direction(row); +} + +// As per specs, mobile devices will use a different height for toolbars than for desktop. +// The height for mobile landscape devices has been ignored since relying on `@media orientation` +// is causing issues on devices with a soft-keyboard. +// See: https://material.io/guidelines/layout/structure.html#structure-app-bar +@media ($mat-xsmall) { + .app-inner { + height: calc(100vh - #{$mat-toolbar-height-mobile-portrait}); + } +} + +/* Boxed layout*/ + +.app.boxed { + overflow: hidden; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 48em) { + .app.boxed { + max-width: 46.88rem; + } +} + +@media (min-width: 62rem) { + .app.boxed { + max-width: 60.63rem; + } +} + +@media (min-width: 75rem) { + .app.boxed { + max-width: 73.13rem; + } +} + +.mat-drawer-content { + height: 100%; + + >.ps { + position: relative; + height: 100%; + min-height: 100%; + box-sizing: border-box; + @include flex-direction(column); + @include flexbox; + @include flex(1); + overflow-y: auto; + overflow-x: hidden; + padding: ($gutter/3); + } + + >.main-content { + box-sizing: border-box; + @include flex-direction(column); + @include flexbox; + @include flex(1); + + >.content-view { + position: relative; + box-sizing: border-box; + padding: $gutter; + @include flex(1 0 auto); + } + } +} + +.app-dark .mat-drawer-content { + background-color: rgba(53, 53, 53, 1.00); +} + +@include media-breakpoint-up(md) { + .side-panel-opened[dir="rtl"] .mat-drawer-content { + margin-left: 0 !important; + margin-right: $sidebar-width !important; + } +} diff --git a/src/assets/styles/scss/core/_main-sidebar.scss b/src/assets/styles/scss/core/_main-sidebar.scss new file mode 100755 index 0000000..7daeb85 --- /dev/null +++ b/src/assets/styles/scss/core/_main-sidebar.scss @@ -0,0 +1,372 @@ +/* $sidebar-panel + ------------------------------------------*/ +$mat-toolbar-height-desktop: 64px !default; +$mat-toolbar-height-mobile-portrait: 56px !default; +$mat-toolbar-height-mobile-landscape: 48px !default; + +mat-sidenav.sidebar-panel { + position: absolute !important; + overflow-x: hidden; + width: $sidebar-width; + box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12) !important; + + .mat-drawer-focus-trap>.cdk-focus-trap-content { + position: relative; + } + + >nav { + min-width: $sidebar-width; + } + + .mat-list-item .mat-list-item-content { + display: block; + height: auto; + max-height: 48px; + overflow: hidden; + padding: 0; + transition: max-height .3s cubic-bezier(.35, 0, .25, 1); + } + + .mat-list-item { + height: auto; + background-color: transparent; + transition: background-color .3s cubic-bezier(.35, 0, .25, 1); + } + + .mat-list-item.open>.mat-list-item-content { + max-height: 2000px; + background: mat-color($background, 'hover'); + } + + .mat-nav-list a { + display: flex; + flex-direction: row; + align-items: center; + height: 48px; + padding: 0 16px; + } + + .sub-menu { + padding-top: 0; + overflow: hidden; + transition: .5s max-height cubic-bezier(.35, 0, .25, 1); + max-height: 0; + transform: translateZ(0) !important; + } + + .sub-menu a { + @include padding-left(64px); + } + + .sub-menu .sub-menu a { + @include padding-left(64px + 16px); + } + + .sub-menu .sub-menu .sub-menu a { + @include padding-left(64px + 32px); + } + + .sub-menu .sub-menu .sub-menu .sub-menu a { + @include padding-left(64px + 48px); + } + + .navigation { + mat-icon:not(.menu-caret) { + @include margin-right(24px); + } + + .menu-caret { + display: inline-block; + transition: transform $transition-duration cubic-bezier(.7, 0, .3, 1); + @include float(right); + @include margin-left(.3125rem); + text-align: center; + } + + .open>.mat-list-item-content>[appAccordionToggle]>.menu-caret { + @include rotate(-180deg); + } + + .menu-badge { + display: inline-block; + height: 16px; + min-width: 10px; + line-height: 18px; + text-align: center; + border-radius: 16px; + font-size: 10px; + font-weight: 700; + padding: 0 4px; + } + + .open>.mat-list-item-content>.sub-menu { + max-height: 2000px; + } + } +} + +@include media-breakpoint-up(md) { + + /* Collapsed sidebar */ + .collapsed-sidebar { + .mat-drawer-backdrop { + display: none; + } + + &.side-panel-opened mat-sidenav.sidebar-panel~.mat-drawer-content { + margin-left: $collapsed-sidebar-width !important; + } + + mat-sidenav.sidebar-panel { + transition: width .4s cubic-bezier(.25, .8, .25, 1), transform .4s cubic-bezier(.25, .8, .25, 1) !important; + } + + mat-sidenav.sidebar-panel:not(:hover) { + width: $collapsed-sidebar-width; + + .sub-menu { + display: none !important; + visibility: hidden; + } + + .mat-list-item>.mat-list-item-content>a { + padding-right: 0; + padding-left: 0; + text-align: center; + } + + .mat-list-item>.mat-list-item-content>a>span:not(.menu-badge), + .mat-list-item>.mat-list-item-content>a>.menu-caret { + display: none; + } + + .mat-list-item>.mat-list-item-content>a>span.menu-badge { + position: absolute; + top: 10px; + right: 16px; + } + + .mat-list-item>.mat-list-item-content>a>.material-icons { + width: $collapsed-sidebar-width !important; + padding: 0; + margin: 0; + } + } + } + + /* Compact sidebar */ + .compact-sidebar { + overflow-x: hidden; + + >.mat-toolbar { + position: fixed; + top: 0; + left: 0; + right: 0; + } + + >.app-inner { + display: table; + border-collapse: separate; + min-height: calc(100vh - #{$mat-toolbar-height-desktop}); + height: auto; + + @media ($mat-xsmall) { + min-height: calc(100vh - #{$mat-toolbar-height-mobile-portrait}); + } + + .mat-drawer-content>.ps.ps--theme_default { + overflow: visible !important; + } + } + + mat-sidenav.sidebar-panel~.mat-drawer-content { + display: table-cell !important; + vertical-align: top; + height: auto; + overflow: visible; + } + + &.side-panel-closed mat-sidenav.sidebar-panel { + position: absolute !important; + } + + &.side-panel-opened mat-sidenav.sidebar-panel { + position: relative !important; + } + + mat-sidenav.sidebar-panel { + transition: width .4s cubic-bezier(.25, .8, .25, 1), transform .4s cubic-bezier(.25, .8, .25, 1) !important; + + >.ps__scrollbar-x-rail, + >.ps__scrollbar-y-rail { + display: none; + } + } + + mat-sidenav.sidebar-panel { + width: $compact-sidebar-width; + overflow: visible !important; + display: table-cell; + vertical-align: top; + + .navigation>.mat-list-item>.mat-list-item-content { + height: 60px; + max-height: 60px; + align-items: center; + justify-content: center; + } + + .navigation>.mat-list-item { + position: relative; + } + + .navigation>.mat-list-item>.mat-list-item-content { + overflow: visible; + } + + .navigation>.mat-list-item>.mat-list-item-content>a { + padding-right: 0; + padding-left: 0; + padding-top: 9px; + padding-bottom: 9px; + text-align: center; + box-sizing: content-box !important; + flex-direction: column !important; + height: 42px; + } + + .navigation>.mat-list-item>.mat-list-item-content>a>span:not(.menu-badge):not(.menu-caret) { + font-size: 12px; + } + + .navigation>.mat-list-item>.mat-list-item-content>a>span.menu-badge { + position: absolute; + top: 10px; + right: 16px; + } + + .navigation>.mat-list-item>.mat-list-item-content>a>.material-icons { + width: $compact-sidebar-width !important; + padding: 0; + margin: 0; + } + + .navigation>.mat-list-item:hover>.mat-list-item-content>.sub-menu { + display: block !important; + visibility: visible; + } + + .mat-list-item>.mat-list-item-content>a>.menu-caret, + .mat-list-item>.mat-list-item-content>a>[fxflex], + { + display: none; + } + + .sub-menu { + display: none !important; + visibility: hidden; + background: mat-color($background, 'card'); + box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12); + position: absolute; + top: 0; + left: 100%; + max-height: 300px; + overflow-x: hidden; + overflow-y: auto; + + a { + padding-left: 16px; + height: 36px; + } + } + } + } +} + +[dir="rtl"] { + mat-sidenav.sidebar-panel { + .sub-menu a { + @include padding-right(64px); + @include padding-left(16px); + } + + .sub-menu .sub-menu a { + @include padding-right(64px + 16px); + @include padding-left(16px); + } + + .sub-menu .sub-menu .sub-menu a { + @include padding-right(64px + 32px); + @include padding-left(16px); + } + + .sub-menu .sub-menu .sub-menu .sub-menu a { + @include padding-right(64px + 48px); + @include padding-left(16px); + } + + .navigation { + mat-icon:not(.menu-caret) { + @include margin-left(24px); + @include margin-right(0); + } + + .menu-caret { + @include float(left); + @include margin-right(.3125rem); + @include margin-left(0); + } + } + } +} + +@include media-breakpoint-up(md) { + [dir="rtl"] { + + &.collapsed-sidebar, + .collapsed-sidebar { + &.side-panel-opened mat-sidenav.sidebar-panel~.mat-drawer-content { + margin-left: 0 !important; + margin-right: $collapsed-sidebar-width !important; + } + + mat-sidenav.sidebar-panel:not(:hover) { + .mat-list-item>.mat-list-item-content>a>span.menu-badge { + right: auto; + left: 16px; + } + } + } + + &.compact-sidebar, + .compact-sidebar { + mat-sidenav.sidebar-panel { + .navigation>.mat-list-item>.mat-list-item-content>a>span.menu-badge { + right: auto; + left: 16px; + } + + .sub-menu { + left: auto; + right: 100%; + + a { + padding-left: 16px; + padding-right: 16px; + } + } + } + } + } + + .app-dark { + + &.compact-sidebar, + .compact-sidebar { + mat-sidenav.sidebar-panel .sub-menu { + background: mat-color($dark-background, card); + } + } + } +} diff --git a/src/assets/styles/scss/core/_media.scss b/src/assets/styles/scss/core/_media.scss new file mode 100755 index 0000000..57ad5d5 --- /dev/null +++ b/src/assets/styles/scss/core/_media.scss @@ -0,0 +1,154 @@ +.media-grid { + text-align: center; + overflow: hidden; + + figure { + position: relative; + text-align: center; + cursor: pointer; + background: rgba(0, 0, 0, .38); + text-align: left; + border-radius: $border-radius-base $border-radius-base 0 0; + text-align: center; + } + + figure img { + position: relative; + display: block; + max-width: 100%; + border-radius: $border-radius-base $border-radius-base 0 0; + } + + &.compact { + border-radius: $border-radius-base 0 0 $border-radius-base; + + figure { + border-radius: $border-radius-base 0 0 $border-radius-base; + } + + figure img { + border-radius: $border-radius-base 0 0 $border-radius-base; + } + } + + .product-badge { + color: #fff; + text-align: center; + position: absolute; + border-top: 30px solid mat-color($warn); + border-bottom: 30px solid transparent; + border-right: 30px solid transparent; + border-left: 30px solid mat-color($warn); + top: 0; + left: 0; + z-index: 100; + + span { + position: absolute; + transform: rotate(-45deg); + top: -18px; + left: -25px; + white-space: nowrap; + } + } + + figure figcaption { + color: #fff; + text-transform: uppercase; + backface-visibility: hidden; + } + + figure figcaption::before { + pointer-events: none; + position: absolute; + width: 100%; + height: 100%; + border-style: solid; + border-color: rgba(0, 0, 0, .38); + content: ''; + transition: transform $transition-duration; + } + + figure figcaption::before { + right: 0; + bottom: 0; + border-width: 0 45px 0 0; + transform: translate3d(45px, 0, 0); + } + + figure figcaption, + figure figcaption>a { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + } + + figure figcaption>a { + z-index: 1000; + text-indent: 200%; + white-space: nowrap; + font-size: 0; + opacity: 0; + } + + figure p { + margin: 0; + } + + figure p { + float: right; + clear: both; + text-align: center; + text-transform: none; + font-size: 1rem; + width: 45px; + padding-top: 1rem; + } + + figure img, + figure p a { + transition: opacity $transition-duration, transform $transition-duration; + } + + figure img { + opacity: 0.85; + } + + figure p a { + display: block; + margin-bottom: $spacer; + color: #fff; + opacity: 0; + transform: translate3d(90px, 0, 0); + } + + figure:hover figcaption::before { + transform: translate3d(0, 0, 0); + } + + figure:hover p a { + transform: translate3d(0, 0, 0); + } + + figure:hover p a { + opacity: 1; + } + + figure:hover p a:first-child { + transition-delay: 0.025s; + } + + figure:hover p a:nth-child(2) { + transition-delay: 0.05s; + } + + figure:hover p a:nth-child(3) { + transition-delay: 0.075s; + } + + figure:hover p a:nth-child(4) { + transition-delay: 0.1s; + } +} diff --git a/src/assets/styles/scss/core/_notification-sidebar.scss b/src/assets/styles/scss/core/_notification-sidebar.scss new file mode 100755 index 0000000..81f2fae --- /dev/null +++ b/src/assets/styles/scss/core/_notification-sidebar.scss @@ -0,0 +1,24 @@ +/* $chat-panel + ------------------------------------------*/ + +.chat-panel { + max-width: 320px; + width: 100%; + overflow: hidden; + + mat-tab-group, + .mat-tab-body-wrapper, + mat-tab-body, + .mat-tab-body-content { + height: 100%; + } + + .scroll { + height: 100%; + overflow-x: hidden; + overflow-y: auto; + position: absolute; + width: 100%; + -webkit-overflow-scrolling: touch; + } +} diff --git a/src/assets/styles/scss/core/_scaffolding.scss b/src/assets/styles/scss/core/_scaffolding.scss new file mode 100755 index 0000000..d354e8a --- /dev/null +++ b/src/assets/styles/scss/core/_scaffolding.scss @@ -0,0 +1,90 @@ +/* $scaffolding + ------------------------------------------*/ +html { + font-size: 16px; +} + +html, +body { + width: 100%; + height: 100%; + position: relative; + + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-touch-callout: none; + + min-height: 100%; + + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +body { + margin: 0; + padding: 0; + font-weight: $font-weight-base; + @include mat-typography-level-to-styles($config, body-1); + color: rgba(mat-color($foreground, base), 0.87); + line-height: 1.5; + font-family: $mat-font-family; + + &.pace-done { + background: #6b6b6b; + } +} + +[tabindex='-1']:focus { + outline: none; +} + +select, +button, +textarea, +input { + vertical-align: baseline; +} + +html, +body { + + &[dir=rtl], + &[dir=ltr] { + unicode-bidi: embed + } +} + +bdo[dir=rtl] { + direction: rtl; + unicode-bidi: bidi-override; +} + +bdo[dir=ltr] { + direction: ltr; + unicode-bidi: bidi-override; +} + + +.mat-card.settings-panel { + position: fixed; + bottom: 6px; + right: 6px; + width: 250px; + z-index: 9; +} + +.demo-checkbox { + + .mat-checkbox, + .mat-checkbox-layout { + width: 100%; + } + + .mat-checkbox-layout .mat-checkbox-label { + flex: 1; + box-sizing: border-box; + -webkit-box-flex: 1; + } +} diff --git a/src/assets/styles/scss/core/_sessions.scss b/src/assets/styles/scss/core/_sessions.scss new file mode 100755 index 0000000..b40fba8 --- /dev/null +++ b/src/assets/styles/scss/core/_sessions.scss @@ -0,0 +1,73 @@ +/* $error-pages + ------------------------------------------*/ +.session { + position: relative; + z-index: 4000; + min-height: 100vh; + @include flexbox; + @include flex-direction(column); +} + +.session-content { + padding: 40px $gutter; + @include flexbox; + @include align-items(center); + @include justify-content(center); + @include flex(1 0 auto); + @include flex-direction(column); + min-height: 100%; +} + +.session-wrapper { + @include flex(none); + max-width: 400px; + width: 100%; + margin: 0 auto; +} + +.lockscreen-avatar { + position: relative; + display: block; + margin: -75px auto 0 !important; +} + +.lockscreen-wrapper { + @include flex(none); + max-width: 280px; + width: 100%; + margin: 0 auto; +} + +.error-title { + font-size: 150px; + line-height: 1.2; + font-weight: 900; + display: inline-table; + position: relative; + background: mat-color($primary); + color: #fff; + padding: 0 $gutter; + border-radius: 8px; + cursor: pointer; + margin: 0 0 $gutter; + + &:after { + top: 100%; + left: 50%; + border: solid transparent; + content: ''; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + border-color: rgba(0, 0, 0, 0); + border-top-color: mat-color($primary); + border-width: 8px; + margin-left: -8px; + } +} + +.error-subtitle { + font-size: 32px; + font-weight: 300; +} diff --git a/src/assets/styles/scss/core/_typography.scss b/src/assets/styles/scss/core/_typography.scss new file mode 100755 index 0000000..97ef2d4 --- /dev/null +++ b/src/assets/styles/scss/core/_typography.scss @@ -0,0 +1,36 @@ +/* $typography + ------------------------------------------*/ +a { + text-decoration: none; + color: inherit; + + @include hover-focus { + cursor: pointer; + text-decoration: none; + outline: 0; + } +} + +button { + outline: 0; +} + +figure { + margin: 0; +} + +hr { + margin-top: 0; + margin-bottom: 0; + border: 0; + border-top: 1px solid mat-color($foreground, divider); +} + +strong, +b { + font-weight: 700; +} + +.strikethrough { + text-decoration: line-through; +} diff --git a/src/assets/styles/scss/material/_buttons.scss b/src/assets/styles/scss/material/_buttons.scss new file mode 100755 index 0000000..8d43584 --- /dev/null +++ b/src/assets/styles/scss/material/_buttons.scss @@ -0,0 +1,43 @@ +$mat-fab-size: 56px !default; +$mat-fab-padding: 16px !default; +[mat-raised-button], +[mat-fab], +[mat-mini-fab], +[mat-button], +[mat-icon-button] { + border-radius: $border-radius-base; + font-weight: $font-weight-base; + &[mat-button-sm] { + font-size: 13px; + line-height: 30px; + padding: 0 8px; + } +} + +[mat-icon-button] { + &[mat-button-sm] { + padding: 0; + width: 30px; + height: 30px; + mat-icon { + font-size: 20px; + line-height: 20px; + } + } +} + +@mixin mat-fab-position($spot, $top: auto, $right: auto, $bottom: auto, $left: auto) { + [mat-fab].mat-fab-#{$spot} { + top: $top; + right: $right; + bottom: $bottom; + left: $left; + position: fixed; + } +} + +$mat-fab-pos-offset: ($mat-fab-size - $mat-fab-padding) / 2; +@include mat-fab-position(bottom-right, auto, $mat-fab-pos-offset, 1rem, auto); +@include mat-fab-position(bottom-left, auto, auto, -25px, $mat-fab-pos-offset); +@include mat-fab-position(top-right, $mat-fab-pos-offset, $mat-fab-pos-offset, auto, auto); +@include mat-fab-position(top-left, $mat-fab-pos-offset, auto, auto, $mat-fab-pos-offset); \ No newline at end of file diff --git a/src/assets/styles/scss/material/_cards.scss b/src/assets/styles/scss/material/_cards.scss new file mode 100755 index 0000000..32fb5ee --- /dev/null +++ b/src/assets/styles/scss/material/_cards.scss @@ -0,0 +1,97 @@ +/* $cards + ------------------------------------------*/ +$mat-card-header-size: 40px !default; + +body { + .mat-card { + margin: ($gutter/3); + @include mat-elevation(1); + color: rgba(mat-color($foreground, base), 0.87); + + > :first-child { + border-radius: $border-radius-base $border-radius-base 0 0; + } + + > :last-child { + border-radius: 0 0 $border-radius-base $border-radius-base; + } + + .mat-card-title { + line-height: 1; + font-size: 16px; + font-weight: 400; + } + + .mat-card-subtitle { + line-height: 1; + font-size: 13px; + } + + .content-full, + >hr { + width: calc(100% + 48px); + margin: 0 -24px 16px -24px; + } + + [mat-fab-card-float] { + top: -36px; + position: absolute; + right: 8px; + } + + [mat-card-float-icon] { + position: absolute; + right: 15px; + top: 50%; + margin-top: -20px; + width: 40px; + height: 40px; + + .material-icons { + font-size: 40px; + opacity: .2; + transform: rotate(-5deg); + } + } + + [mat-card-widget] { + height: auto; + display: flex; + flex-direction: row; + align-items: center; + align-content: center; + + [mat-card-widget-title], + p { + margin: 0; + padding: 0; + line-height: $headings-line-height !important; + } + } + + &.card-widget { + padding: 20px; + + .card-widget-content { + display: flex; + flex-direction: row; + height: 40px; + margin: -($gutter/2) 0 $gutter 0; + } + } + } +} + +body [dir="rtl"] { + .mat-card { + [mat-fab-card-float] { + right: auto; + left: 8px; + } + + [mat-card-float-icon] { + right: auto; + left: 15px; + } + } +} diff --git a/src/assets/styles/scss/material/_dialog.scss b/src/assets/styles/scss/material/_dialog.scss new file mode 100755 index 0000000..7605705 --- /dev/null +++ b/src/assets/styles/scss/material/_dialog.scss @@ -0,0 +1,4 @@ +.mat-dialog-container { + background: mat-color($background, card); + border-radius: 8px !important; +} diff --git a/src/assets/styles/scss/material/_lists.scss b/src/assets/styles/scss/material/_lists.scss new file mode 100755 index 0000000..df6f305 --- /dev/null +++ b/src/assets/styles/scss/material/_lists.scss @@ -0,0 +1,54 @@ +/* $listgroup + ------------------------------------------*/ +mat-list, +mat-nav-list { + + mat-list-item, + a[mat-list-item] { + color: rgba(mat-color($foreground, base), 0.87); + } +} + +mat-list-item, +.mat-list-item { + mat-icon { + &[mat-list-avatar] { + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-align-content: center; + -ms-flex-line-pack: center; + align-content: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + display: flex; + } + } +} + +mat-divider { + border-top: 1px solid mat-color($foreground, divider) !important; +} + +mat-list mat-list-item [mat-list-avatar], +mat-list a[mat-list-item] [mat-list-avatar], +mat-nav-list mat-list-item [mat-list-avatar], +mat-nav-list a[mat-list-item] [mat-list-avatar] { + min-width: 40px; +} + +mat-list-item.active>.mat-list-item-content { + background: mat-color($background, 'hover'); +} + +mat-list mat-list-item .mat-list-item-content, +mat-list a[mat-list-item] .mat-list-item-content, +mat-nav-list mat-list-item .mat-list-item-content, +mat-nav-list a[mat-list-item] .mat-list-item-content { + font-size: $font-size-base !important; +} + +mat-card>mat-list>mat-list-item>.mat-list-item-content { + padding: 0 !important; +} diff --git a/src/assets/styles/scss/material/_menus.scss b/src/assets/styles/scss/material/_menus.scss new file mode 100755 index 0000000..b0c2124 --- /dev/null +++ b/src/assets/styles/scss/material/_menus.scss @@ -0,0 +1,7 @@ +.mat-menu { + border-radius: $border-radius-base; +} + +[mat-menu-item] { + font-size: $font-size-base !important; +} diff --git a/src/assets/styles/scss/material/_select.scss b/src/assets/styles/scss/material/_select.scss new file mode 100755 index 0000000..ea855ab --- /dev/null +++ b/src/assets/styles/scss/material/_select.scss @@ -0,0 +1,14 @@ +body { + .mat-select-panel { + background-color: mat-color($background, card); + } + + .mat-select-trigger, + .mat-option { + font-size: $font-size-base; + } + + .app-dark .mat-select-panel { + background-color: mat-color($dark-background, card); + } +} diff --git a/src/assets/styles/scss/material/_tabs.scss b/src/assets/styles/scss/material/_tabs.scss new file mode 100755 index 0000000..ee688fc --- /dev/null +++ b/src/assets/styles/scss/material/_tabs.scss @@ -0,0 +1,10 @@ +.mat-tab-label { + color: rgba(mat-color($foreground, base), 0.87); + align-items: center; + display: flex; + justify-content: center; +} + +.app-dark .mat-tab-label { + color: mat-color($dark-foreground, base); +} diff --git a/src/assets/styles/scss/mixins/_breakpoints.scss b/src/assets/styles/scss/mixins/_breakpoints.scss new file mode 100755 index 0000000..b484516 --- /dev/null +++ b/src/assets/styles/scss/mixins/_breakpoints.scss @@ -0,0 +1,92 @@ +// Breakpoint viewport sizes and media queries. +// +// Breakpoints are defined as a map of (name: minimum width), order from small to large: +// +// (xs: 0, sm: 544px, md: 768px) +// +// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default. + +// Name of the next breakpoint, or null for the last breakpoint. +// +// >> breakpoint-next(sm) +// md +// >> breakpoint-next(sm, (xs: 0, sm: 544px, md: 768px)) +// md +// >> breakpoint-next(sm, $breakpoint-names: (xs sm md)) +// md +@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) { + $n: index($breakpoint-names, $name); + @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null); +} + +// Minimum breakpoint width. Null for the smallest (first) breakpoint. +// +// >> breakpoint-min(sm, (xs: 0, sm: 544px, md: 768px)) +// 544px +@function breakpoint-min($name, $breakpoints: $grid-breakpoints) { + $min: map-get($breakpoints, $name); + @return if($min !=0, $min, null); +} + +// Maximum breakpoint width. Null for the largest (last) breakpoint. +// The maximum value is calculated as the minimum of the next one less 0.1. +// +// >> breakpoint-max(sm, (xs: 0, sm: 544px, md: 768px)) +// 767px +@function breakpoint-max($name, $breakpoints: $grid-breakpoints) { + $next: breakpoint-next($name, $breakpoints); + @return if($next, breakpoint-min($next, $breakpoints) - 1px, null); +} + +// Media of at least the minimum breakpoint width. No query for the smallest breakpoint. +// Makes the @content apply to the given breakpoint and wider. +@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) { + $min: breakpoint-min($name, $breakpoints); + + @if $min { + @media (min-width: $min) { + @content; + } + } + + @else { + @content; + } +} + +// Media of at most the maximum breakpoint width. No query for the largest breakpoint. +// Makes the @content apply to the given breakpoint and narrower. +@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) { + $max: breakpoint-max($name, $breakpoints); + + @if $max { + @media (max-width: $max) { + @content; + } + } + + @else { + @content; + } +} + +// Media between the breakpoint's minimum and maximum widths. +// No minimum for the smallest breakpoint, and no maximum for the largest one. +// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower. +@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) { + @include media-breakpoint-up($name, $breakpoints) { + @include media-breakpoint-down($name, $breakpoints) { + @content; + } + } +} + +// Media that spans multiple breakpoint widths. +// Makes the @content apply between the min and max breakpoints +@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) { + @include media-breakpoint-up($lower, $breakpoints) { + @include media-breakpoint-down($upper, $breakpoints) { + @content; + } + } +} diff --git a/src/assets/styles/scss/mixins/_clearfix.scss b/src/assets/styles/scss/mixins/_clearfix.scss new file mode 100755 index 0000000..d0ae125 --- /dev/null +++ b/src/assets/styles/scss/mixins/_clearfix.scss @@ -0,0 +1,7 @@ +@mixin clearfix() { + &::after { + content: ""; + display: table; + clear: both; + } +} diff --git a/src/assets/styles/scss/mixins/_flex.scss b/src/assets/styles/scss/mixins/_flex.scss new file mode 100755 index 0000000..75c0422 --- /dev/null +++ b/src/assets/styles/scss/mixins/_flex.scss @@ -0,0 +1,441 @@ +// Flexbox Mixins +// http://philipwalton.github.io/solved-by-flexbox/ +// https://github.com/philipwalton/solved-by-flexbox +// +// Copyright (c) 2013 Brian Franco +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// +// This is a set of mixins for those who want to mess around with flexbox +// using the native support of current browsers. For full support table +// check: http://caniuse.com/flexbox +// +// Basically this will use: +// +// * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping) +// * Final standards syntax (FF, Safari, Chrome, IE11, Opera) +// +// This was inspired by: +// +// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ +// +// With help from: +// +// * http://w3.org/tr/css3-flexbox/ +// * http://the-echoplex.net/flexyboxes/ +// * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx +// * http://css-tricks.com/using-flexbox/ +// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ +// * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes + +//---------------------------------------------------------------------- + +// Flexbox Containers +// +// The 'flex' value causes an element to generate a block-level flex +// container box. +// +// The 'inline-flex' value causes an element to generate a inline-level +// flex container box. +// +// display: flex | inline-flex +// +// http://w3.org/tr/css3-flexbox/#flex-containers +// +// (Placeholder selectors for each type, for those who rather @extend) + +@mixin flexbox { + display: -webkit-box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; +} + +%flexbox { + @include flexbox; +} + +//---------------------------------- + +@mixin inline-flex { + display: -webkit-inline-box; + display: -webkit-inline-flex; + display: -moz-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; +} + +%inline-flex { + @include inline-flex; +} + +//---------------------------------------------------------------------- + +// Flexbox Direction +// +// The 'flex-direction' property specifies how flex items are placed in +// the flex container, by setting the direction of the flex container's +// main axis. This determines the direction that flex items are laid out in. +// +// Values: row | row-reverse | column | column-reverse +// Default: row +// +// http://w3.org/tr/css3-flexbox/#flex-direction-property + +@mixin flex-direction($value: row) { + @if $value==row-reverse { + -webkit-box-direction: reverse; + -webkit-box-orient: horizontal; + } + + @else if $value==column { + -webkit-box-direction: normal; + -webkit-box-orient: vertical; + } + + @else if $value==column-reverse { + -webkit-box-direction: reverse; + -webkit-box-orient: vertical; + } + + @else { + -webkit-box-direction: normal; + -webkit-box-orient: horizontal; + } + + -webkit-flex-direction: $value; + -moz-flex-direction: $value; + -ms-flex-direction: $value; + flex-direction: $value; +} + +// Shorter version: +@mixin flex-dir($args...) { + @include flex-direction($args...); +} + +//---------------------------------------------------------------------- + +// Flexbox Wrap +// +// The 'flex-wrap' property controls whether the flex container is single-line +// or multi-line, and the direction of the cross-axis, which determines +// the direction new lines are stacked in. +// +// Values: nowrap | wrap | wrap-reverse +// Default: nowrap +// +// http://w3.org/tr/css3-flexbox/#flex-wrap-property + +@mixin flex-wrap($value: nowrap) { + // No Webkit Box fallback. + -webkit-flex-wrap: $value; + -moz-flex-wrap: $value; + + @if $value==nowrap { + -ms-flex-wrap: none; + } + + @else { + -ms-flex-wrap: $value; + } + + flex-wrap: $value; +} + +//---------------------------------------------------------------------- + +// Flexbox Flow (shorthand) +// +// The 'flex-flow' property is a shorthand for setting the 'flex-direction' +// and 'flex-wrap' properties, which together define the flex container's +// main and cross axes. +// +// Values: | +// Default: row nowrap +// +// http://w3.org/tr/css3-flexbox/#flex-flow-property + +@mixin flex-flow($values: (row nowrap)) { + // No Webkit Box fallback. + -webkit-flex-flow: $values; + -moz-flex-flow: $values; + -ms-flex-flow: $values; + flex-flow: $values; +} + +//---------------------------------------------------------------------- + +// Flexbox Order +// +// The 'order' property controls the order in which flex items appear within +// their flex container, by assigning them to ordinal groups. +// +// Default: 0 +// +// http://w3.org/tr/css3-flexbox/#order-property + +@mixin order($int: 0) { + -webkit-box-ordinal-group: $int + 1; + -webkit-order: $int; + -moz-order: $int; + -ms-flex-order: $int; + order: $int; +} + +//---------------------------------------------------------------------- + +// Flexbox Grow +// +// The 'flex-grow' property sets the flex grow factor. Negative numbers +// are invalid. +// +// Default: 0 +// +// http://w3.org/tr/css3-flexbox/#flex-grow-property + +@mixin flex-grow($int: 0) { + -webkit-box-flex: $int; + -webkit-flex-grow: $int; + -moz-flex-grow: $int; + -ms-flex-positive: $int; + flex-grow: $int; +} + +//---------------------------------------------------------------------- + +// Flexbox Shrink +// +// The 'flex-shrink' property sets the flex shrink factor. Negative numbers +// are invalid. +// +// Default: 1 +// +// http://w3.org/tr/css3-flexbox/#flex-shrink-property + +@mixin flex-shrink($int: 1) { + -webkit-flex-shrink: $int; + -moz-flex-shrink: $int; + -ms-flex-negative: $int; + flex-shrink: $int; +} + +//---------------------------------------------------------------------- + +// Flexbox Basis +// +// The 'flex-basis' property sets the flex basis. Negative lengths are invalid. +// +// Values: Like "width" +// Default: auto +// +// http://www.w3.org/TR/css3-flexbox/#flex-basis-property + +@mixin flex-basis($value: auto) { + -webkit-flex-basis: $value; + -moz-flex-basis: $value; + -ms-flex-preferred-size: $value; + flex-basis: $value; +} + +//---------------------------------------------------------------------- + +// Flexbox "Flex" (shorthand) +// +// The 'flex' property specifies the components of a flexible length: the +// flex grow factor and flex shrink factor, and the flex basis. When an +// element is a flex item, 'flex' is consulted instead of the main size +// property to determine the main size of the element. If an element is +// not a flex item, 'flex' has no effect. +// +// Values: none | || +// Default: See individual properties (1 1 0). +// +// http://w3.org/tr/css3-flexbox/#flex-property + +@mixin flex($fg: 1, $fs: null, $fb: null) { + + // Set a variable to be used by box-flex properties + $fg-boxflex: $fg; + + // Box-Flex only supports a flex-grow value so let's grab the + // first item in the list and just return that. + @if type-of($fg)=='list' { + $fg-boxflex: nth($fg, 1); + } + + -webkit-box-flex: $fg-boxflex; + -webkit-flex: $fg $fs $fb; + -moz-box-flex: $fg-boxflex; + -moz-flex: $fg $fs $fb; + -ms-flex: $fg $fs $fb; + flex: $fg $fs $fb; +} + +//---------------------------------------------------------------------- + +// Flexbox Justify Content +// +// The 'justify-content' property aligns flex items along the main axis +// of the current line of the flex container. This is done after any flexible +// lengths and any auto margins have been resolved. Typically it helps distribute +// extra free space leftover when either all the flex items on a line are +// inflexible, or are flexible but have reached their maximum size. It also +// exerts some control over the alignment of items when they overflow the line. +// +// Note: 'space-*' values not supported in older syntaxes. +// +// Values: flex-start | flex-end | center | space-between | space-around +// Default: flex-start +// +// http://w3.org/tr/css3-flexbox/#justify-content-property + +@mixin justify-content($value: flex-start) { + @if $value==flex-start { + -webkit-box-pack: start; + -ms-flex-pack: start; + } + + @else if $value==flex-end { + -webkit-box-pack: end; + -ms-flex-pack: end; + } + + @else if $value==space-between { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + } + + @else if $value==space-around { + -ms-flex-pack: distribute; + } + + @else { + -webkit-box-pack: $value; + -ms-flex-pack: $value; + } + + -webkit-justify-content: $value; + -moz-justify-content: $value; + justify-content: $value; +} + +// Shorter version: +@mixin flex-just($args...) { + @include justify-content($args...); +} + +//---------------------------------------------------------------------- + +// Flexbox Align Items +// +// Flex items can be aligned in the cross axis of the current line of the +// flex container, similar to 'justify-content' but in the perpendicular +// direction. 'align-items' sets the default alignment for all of the flex +// container's items, including anonymous flex items. 'align-self' allows +// this default alignment to be overridden for individual flex items. (For +// anonymous flex items, 'align-self' always matches the value of 'align-items' +// on their associated flex container.) +// +// Values: flex-start | flex-end | center | baseline | stretch +// Default: stretch +// +// http://w3.org/tr/css3-flexbox/#align-items-property + +@mixin align-items($value: stretch) { + @if $value==flex-start { + -webkit-box-align: start; + -ms-flex-align: start; + } + + @else if $value==flex-end { + -webkit-box-align: end; + -ms-flex-align: end; + } + + @else { + -webkit-box-align: $value; + -ms-flex-align: $value; + } + + -webkit-align-items: $value; + -moz-align-items: $value; + align-items: $value; +} + +//---------------------------------- + +// Flexbox Align Self +// +// Values: auto | flex-start | flex-end | center | baseline | stretch +// Default: auto + +@mixin align-self($value: auto) { + // No Webkit Box Fallback. + -webkit-align-self: $value; + -moz-align-self: $value; + + @if $value==flex-start { + -ms-flex-item-align: start; + } + + @else if $value==flex-end { + -ms-flex-item-align: end; + } + + @else { + -ms-flex-item-align: $value; + } + + align-self: $value; +} + +//---------------------------------------------------------------------- + +// Flexbox Align Content +// +// The 'align-content' property aligns a flex container's lines within the +// flex container when there is extra space in the cross-axis, similar to +// how 'justify-content' aligns individual items within the main-axis. Note, +// this property has no effect when the flexbox has only a single line. +// +// Values: flex-start | flex-end | center | space-between | space-around | stretch +// Default: stretch +// +// http://w3.org/tr/css3-flexbox/#align-content-property + +@mixin align-content($value: stretch) { + // No Webkit Box Fallback. + -webkit-align-content: $value; + -moz-align-content: $value; + + @if $value==flex-start { + -ms-flex-line-pack: start; + } + + @else if $value==flex-end { + -ms-flex-line-pack: end; + } + + @else { + -ms-flex-line-pack: $value; + } + + align-content: $value; +} diff --git a/src/assets/styles/scss/mixins/_hover.scss b/src/assets/styles/scss/mixins/_hover.scss new file mode 100755 index 0000000..388cb7a --- /dev/null +++ b/src/assets/styles/scss/mixins/_hover.scss @@ -0,0 +1,31 @@ +@mixin hover { + &:hover { + @content + } +} + +@mixin hover-focus { + + &:focus, + &:hover { + @content + } +} + +@mixin plain-hover-focus { + + &, + &:focus, + &:hover { + @content + } +} + +@mixin hover-focus-active { + + &:focus, + &:active, + &:hover { + @content + } +} diff --git a/src/assets/styles/scss/mixins/_misc.scss b/src/assets/styles/scss/mixins/_misc.scss new file mode 100755 index 0000000..f7d46c5 --- /dev/null +++ b/src/assets/styles/scss/mixins/_misc.scss @@ -0,0 +1,101 @@ +// + +@mixin vertical-align($parent-height, $element-height) { + margin-top: (($parent-height - $element-height) / 2); + margin-bottom: (($parent-height - $element-height) / 2); +} + +@mixin vertical-align-padding($parent-height, $element-height) { + padding-top: (($parent-height - $element-height) / 2); + padding-bottom: (($parent-height - $element-height) / 2); +} + +@mixin rounded($radius: 2px) { + border-radius: $radius; +} + +@mixin box-shadow($arguments...) { + box-shadow: $arguments; +} + +@mixin transform($arguments...) { + -webkit-transform: $arguments; + -moz-transform: $arguments; + -ms-transform: $arguments; + -o-transform: $arguments; + transform: $arguments; +} + +@mixin rotate($deg: 5deg) { + @include transform(rotate($deg)); +} + +@mixin translate($x: 0, $y:0) { + @include transform(translate($x, $y)); +} + +@mixin translate3d($x: 0, $y:0, $z:0) { + @include transform(translate3d($x, $y, $z)); +} + +@mixin scale($x: 0, $y:0) { + @include transform(scale($x, $y)); +} + +@mixin scale3d($x: 0, $y:0, $z:0) { + @include transform(scale3d($x, $y, $z)); +} + +@mixin transition($value...) { + -webkit-transition: $value; + transition: $value; +} + +@mixin animation-duration($duration) { + -webkit-animation-duration: $duration; + animation-duration: $duration; +} + +@mixin animation-timing-function($timing) { + -webkit-animation-timing-function: $timing; + animation-timing-function: $timing; +} + +@mixin animation-fill-mode($mode) { + -webkit-animation-fill-mode: $mode; + animation-fill-mode: $mode; +} + +@mixin animation-name($name) { + -webkit-animation-name: $name; + animation-name: $name; +} + +@mixin transition-delay($delay) { + -webkit-transition-delay: $delay; + transition-delay: $delay; +} + +@mixin transition-duration($duration: .2s) { + -moz-transition-duration: $duration; + transition-duration: $duration; +} + +@mixin transform-origin($origin) { + -webkit-transform-origin: $origin; + -moz-transform-origin: $origin; + -ms-transform-origin: $origin; + -o-transform-origin: $origin; + transform-origin: $origin; +} + +@mixin user-select($argument: none) { + -webkit-user-select: $argument; + -moz-user-select: $argument; + -ms-user-select: $argument; + user-select: $argument; +} + +@mixin opacity($opacity: .5) { + opacity: $opacity; +} diff --git a/src/assets/styles/scss/mixins/_text-emphasis.scss b/src/assets/styles/scss/mixins/_text-emphasis.scss new file mode 100755 index 0000000..85f70f1 --- /dev/null +++ b/src/assets/styles/scss/mixins/_text-emphasis.scss @@ -0,0 +1,13 @@ +// Typography + +@mixin text-emphasis-variant($parent, $color) { + #{$parent} { + color: $color !important; + } + + a#{$parent} { + @include hover-focus { + color: darken($color, 10%); + } + } +} diff --git a/src/assets/styles/scss/mixins/bi-app/_bi-app-ltr.scss b/src/assets/styles/scss/mixins/bi-app/_bi-app-ltr.scss new file mode 100755 index 0000000..6278a31 --- /dev/null +++ b/src/assets/styles/scss/mixins/bi-app/_bi-app-ltr.scss @@ -0,0 +1,11 @@ +// ------------------------------------------ +// left to right module +// authors: +// twitter.com/anasnakawa +// twitter.com/victorzamfir +// licensed under the MIT license +// http://www.opensource.org/licenses/mit-license.php +// ------------------------------------------ + +@import 'variables-ltr'; +@import 'mixins'; \ No newline at end of file diff --git a/src/assets/styles/scss/mixins/bi-app/_bi-app-rtl.scss b/src/assets/styles/scss/mixins/bi-app/_bi-app-rtl.scss new file mode 100755 index 0000000..17b7f2e --- /dev/null +++ b/src/assets/styles/scss/mixins/bi-app/_bi-app-rtl.scss @@ -0,0 +1,11 @@ +// ------------------------------------------ +// right to left module +// authors: +// twitter.com/anasnakawa +// twitter.com/victorzamfir +// licensed under the MIT license +// http://www.opensource.org/licenses/mit-license.php +// ------------------------------------------ + +@import 'variables-rtl'; +@import 'mixins'; \ No newline at end of file diff --git a/src/assets/styles/scss/mixins/bi-app/_mixins.scss b/src/assets/styles/scss/mixins/bi-app/_mixins.scss new file mode 100755 index 0000000..c7e4ddd --- /dev/null +++ b/src/assets/styles/scss/mixins/bi-app/_mixins.scss @@ -0,0 +1,294 @@ +// ------------------------------------------ +// bi app mixins +// authors: +// twitter.com/anasnakawa +// twitter.com/victorzamfir +// licensed under the MIT license +// http://www.opensource.org/licenses/mit-license.php +// ------------------------------------------ + +// ------------------------------------------ +// Table of contents +// ------------------------------------------ +// padding +// margin +// float +// text align +// clear +// left / right +// border +// - width +// - style +// - color +// - generic +// - radius +// ltr / rtl contents +// ------------------------------------------ + +// generic mixin for properties with values +// (top right bottom left) +// ------------------------------------------ +@mixin bi-app-compact($property, $top, $right, $bottom, $left) { + @if $bi-app-direction == ltr { + #{$property}: $top $right $bottom $left; + } @else { + #{$property}: $top $left $bottom $right; + } +} + +// padding +// ------------------------------------------ +@mixin padding-left($distance) { + padding-#{$bi-app-left}: $distance; +} + +@mixin padding-right($distance) { + padding-#{$bi-app-right}: $distance; +} + +@mixin padding($top, $right, $bottom, $left) { + @include bi-app-compact(padding, $top, $right, $bottom, $left); +} + +// margin +// ------------------------------------------ +@mixin margin-left($distance) { + margin-#{$bi-app-left}: $distance; +} + +@mixin margin-right($distance) { + margin-#{$bi-app-right}: $distance; +} + +@mixin margin($top, $right, $bottom, $left) { + @include bi-app-compact(margin, $top, $right, $bottom, $left); +} + +// float +// ------------------------------------------ +@mixin bi-app-float-left($important: '') { + float: $bi-app-left unquote($important); +} + +@mixin bi-app-float-right($important: '') { + float: $bi-app-right unquote($important); +} + +@mixin float($direction, $important: '') { + @if $direction == left { + @include bi-app-float-left($important); + } @else if $direction == right { + @include bi-app-float-right($important); + } @else { + float: $direction; + } +} + +// text align +// ------------------------------------------ +@mixin bi-app-text-align-left { + text-align: $bi-app-left; +} + +@mixin bi-app-text-align-right { + text-align: $bi-app-right; +} + +@mixin text-align($direction) { + @if $direction == left { + @include bi-app-text-align-left; + } @else if $direction == right { + @include bi-app-text-align-right; + } @else { + text-align: $direction; + } +} + +// clear +// ------------------------------------------ +@mixin bi-app-clear-left { + clear: $bi-app-left; +} + +@mixin bi-app-clear-right { + clear: $bi-app-right; +} + +@mixin clear($direction) { + @if $direction == left { + @include bi-app-clear-left; + } @else if $direction == right { + @include bi-app-clear-right; + } @else { + clear: $direction; + } +} + +// left / right +// ------------------------------------------ +@mixin left($distance) { + @if $bi-app-direction == ltr { + left: $distance; + } @else if $bi-app-direction == rtl { + right: $distance; + } +} + +@mixin right($distance) { + @if $bi-app-direction == ltr { + right: $distance; + } @else if $bi-app-direction == rtl { + left: $distance; + } +} + +// border +// ------------------------------------------ + +// width +@mixin border-left-width($width) { + border-#{$bi-app-left}-width: $width; +} + +@mixin border-right-width($width) { + border-#{$bi-app-right}-width: $width; +} + +@mixin border-width($top, $right, $bottom, $left) { + @include bi-app-compact(border-width, $top, $right, $bottom, $left); +} + +// style +@mixin border-left-style($style) { + border-#{$bi-app-left}-style: $style; +} + +@mixin border-right-style($style) { + border-#{$bi-app-right}-style: $style; +} + +@mixin border-style($top, $right, $bottom, $left) { + @include bi-app-compact(border-style, $top, $right, $bottom, $left); +} + +// color +@mixin border-left-color($color) { + border-#{$bi-app-left}-color: $color; +} + +@mixin border-right-color($color) { + border-#{$bi-app-right}-color: $color; +} + +@mixin border-color($top, $right, $bottom, $left) { + @include bi-app-compact(border-color, $top, $right, $bottom, $left); +} + +// generic +@mixin border-left($border-style) { + border-#{$bi-app-left}: $border-style; +} + +@mixin border-right($border-style) { + border-#{$bi-app-right}: $border-style; +} + +// radius +@mixin border-top-left-radius($radius) { + -webkit-border-top-#{$bi-app-left}-radius: $radius; + -moz-border-top#{$bi-app-left}-radius: $radius; + border-top-#{$bi-app-left}-radius: $radius; +} + +@mixin border-top-right-radius($radius) { + -webkit-border-top-#{$bi-app-right}-radius: $radius; + -moz-border-top#{$bi-app-right}-radius: $radius; + border-top-#{$bi-app-right}-radius: $radius; +} + +@mixin border-bottom-left-radius($radius) { + -webkit-border-bottom-#{$bi-app-left}-radius: $radius; + -moz-border-bottom#{$bi-app-left}-radius: $radius; + border-bottom-#{$bi-app-left}-radius: $radius; +} + +@mixin border-bottom-right-radius($radius) { + -webkit-border-bottom-#{$bi-app-right}-radius: $radius; + -moz-border-bottom#{$bi-app-right}-radius: $radius; + border-bottom-#{$bi-app-right}-radius: $radius; +} + +@mixin border-right-radius($radius) { + @include border-top-right-radius($radius); + @include border-bottom-right-radius($radius); +} + +@mixin border-left-radius($radius) { + @include border-top-left-radius($radius); + @include border-bottom-left-radius($radius); +} + +@mixin border-top-radius($radius) { + @include border-top-left-radius($radius); + @include border-top-right-radius($radius); +} + +@mixin border-bottom-radius($radius) { + @include border-bottom-left-radius($radius); + @include border-bottom-right-radius($radius); +} + +@mixin border-radius($topLeft, $topRight: null, $bottomRight: null, $bottomLeft: null) { + @if $topRight != null { + @include border-top-left-radius($topLeft); + @include border-top-right-radius($topRight); + @include border-bottom-right-radius($bottomRight); + @include border-bottom-left-radius($bottomLeft); + } @else { + -webkit-border-radius: $topLeft; + -moz-border-radius: $topLeft; + -ms-border-radius: $topLeft; + -o-border-radius: $topLeft; + border-radius: $topLeft; + } +} + +// Returns "en" or "ar", useful for image suffixes. +// Usage: background-image: url(/img/header-#{lang()}.png); +@function lang() { + @if $bi-app-direction == ltr { + @return 'en'; + } @else { + @return 'ar'; + } +} + +// Support for "direction" declaration (renders ltr/rtl). +// Useful for form elements as they swap the text-indent property and align the text accordingly. +@mixin direction { + direction: $bi-app-direction; +} + +// Inverts a percentage value. Example: 97% becames 3%. +// Useful for background-position. +@function bi-app-invert-percentage($percentage) { + @if $bi-app-direction == rtl { + @return 100% - $percentage; + } @else { + @return $percentage; + } +} + +// ltr / rtl contents +// ------------------------------------------ +@mixin ltr { + @if $bi-app-direction == ltr { + @content; + } +} + +@mixin rtl { + @if $bi-app-direction == rtl { + @content; + } +} diff --git a/src/assets/styles/scss/mixins/bi-app/_variables-ltr.scss b/src/assets/styles/scss/mixins/bi-app/_variables-ltr.scss new file mode 100755 index 0000000..b2600ec --- /dev/null +++ b/src/assets/styles/scss/mixins/bi-app/_variables-ltr.scss @@ -0,0 +1,16 @@ +// ------------------------------------------ +// left to right variables to be used by bi-app mixins +// authors: +// twitter.com/anasnakawa +// twitter.com/victorzamfir +// licensed under the MIT license +// http://www.opensource.org/licenses/mit-license.php +// ------------------------------------------ + +// namespacing variables with bi-app to +// avoid conflicting with other global variables +$bi-app-left : left; +$bi-app-right : right; +$bi-app-direction : ltr; +$bi-app-invert-direction : rtl; +$imp : !important; \ No newline at end of file diff --git a/src/assets/styles/scss/mixins/bi-app/_variables-rtl.scss b/src/assets/styles/scss/mixins/bi-app/_variables-rtl.scss new file mode 100755 index 0000000..86e058a --- /dev/null +++ b/src/assets/styles/scss/mixins/bi-app/_variables-rtl.scss @@ -0,0 +1,16 @@ +// ------------------------------------------ +// right to left variables to be used by bi-app mixins +// authors: +// twitter.com/anasnakawa +// twitter.com/victorzamfir +// licensed under the MIT license +// http://www.opensource.org/licenses/mit-license.php +// ------------------------------------------ + +// namespacing variables with bi-app to +// avoid conflicting with other global variables +$bi-app-left : right; +$bi-app-right : left; +$bi-app-direction : rtl; +$bi-app-invert-direction : ltr; +$imp : !important; \ No newline at end of file diff --git a/src/assets/styles/scss/utilities/_background.scss b/src/assets/styles/scss/utilities/_background.scss new file mode 100755 index 0000000..80f7f1a --- /dev/null +++ b/src/assets/styles/scss/utilities/_background.scss @@ -0,0 +1,1424 @@ +.mat-red { + background-color: mat-color($mat-red, 500) !important; + color: mat-contrast($mat-red, 500) !important; +} + +.mat-red-50 { + background-color: mat-color($mat-red, 50) !important; + color: mat-contrast($mat-red, 50) !important; +} + +.mat-red-100 { + background-color: mat-color($mat-red, 100) !important; + color: mat-contrast($mat-red, 100) !important; +} + +.mat-red-200 { + background-color: mat-color($mat-red, 200) !important; + color: mat-contrast($mat-red, 200) !important; +} + +.mat-red-300 { + background-color: mat-color($mat-red, 300) !important; + color: mat-contrast($mat-red, 300) !important; +} + +.mat-red-400 { + background-color: mat-color($mat-red, 400) !important; + color: mat-contrast($mat-red, 400) !important; +} + +.mat-red-500 { + background-color: mat-color($mat-red, 500) !important; + color: mat-contrast($mat-red, 500) !important; +} + +.mat-red-600 { + background-color: mat-color($mat-red, 600) !important; + color: mat-contrast($mat-red, 600) !important; +} + +.mat-red-700 { + background-color: mat-color($mat-red, 700) !important; + color: mat-contrast($mat-red, 700) !important; +} + +.mat-red-800 { + background-color: mat-color($mat-red, 800) !important; + color: mat-contrast($mat-red, 800) !important; +} + +.mat-red-900 { + background-color: mat-color($mat-red, 900) !important; + color: mat-contrast($mat-red, 900) !important; +} + +.mat-red-A100 { + background-color: mat-color($mat-red, A100) !important; + color: mat-contrast($mat-red, A100) !important; +} + +.mat-red-A200 { + background-color: mat-color($mat-red, A200) !important; + color: mat-contrast($mat-red, A200) !important; +} + +.mat-red-A400 { + background-color: mat-color($mat-red, A400) !important; + color: mat-contrast($mat-red, A400) !important; +} + +.mat-red-A700 { + background-color: mat-color($mat-red, A700) !important; + color: mat-contrast($mat-red, A700) !important; +} + +.mat-pink { + background-color: mat-color($mat-pink, 500) !important; + color: mat-contrast($mat-pink, 500) !important; +} + +.mat-pink-50 { + background-color: mat-color($mat-pink, 50) !important; + color: mat-contrast($mat-pink, 50) !important; +} + +.mat-pink-100 { + background-color: mat-color($mat-pink, 100) !important; + color: mat-contrast($mat-pink, 100) !important; +} + +.mat-pink-200 { + background-color: mat-color($mat-pink, 200) !important; + color: mat-contrast($mat-pink, 200) !important; +} + +.mat-pink-300 { + background-color: mat-color($mat-pink, 300) !important; + color: mat-contrast($mat-pink, 300) !important; +} + +.mat-pink-400 { + background-color: mat-color($mat-pink, 400) !important; + color: mat-contrast($mat-pink, 400) !important; +} + +.mat-pink-500 { + background-color: mat-color($mat-pink, 500) !important; + color: mat-contrast($mat-pink, 500) !important; +} + +.mat-pink-600 { + background-color: mat-color($mat-pink, 600) !important; + color: mat-contrast($mat-pink, 600) !important; +} + +.mat-pink-700 { + background-color: mat-color($mat-pink, 700) !important; + color: mat-contrast($mat-pink, 700) !important; +} + +.mat-pink-800 { + background-color: mat-color($mat-pink, 800) !important; + color: mat-contrast($mat-pink, 800) !important; +} + +.mat-pink-900 { + background-color: mat-color($mat-pink, 900) !important; + color: mat-contrast($mat-pink, 900) !important; +} + +.mat-pink-A100 { + background-color: mat-color($mat-pink, A100) !important; + color: mat-contrast($mat-pink, A100) !important; +} + +.mat-pink-A200 { + background-color: mat-color($mat-pink, A200) !important; + color: mat-contrast($mat-pink, A200) !important; +} + +.mat-pink-A400 { + background-color: mat-color($mat-pink, A400) !important; + color: mat-contrast($mat-pink, A400) !important; +} + +.mat-pink-A700 { + background-color: mat-color($mat-pink, A700) !important; + color: mat-contrast($mat-pink, A700) !important; +} + +.mat-purple { + background-color: mat-color($mat-purple, 500) !important; + color: mat-contrast($mat-purple, 500) !important; +} + +.mat-purple-50 { + background-color: mat-color($mat-purple, 50) !important; + color: mat-contrast($mat-purple, 50) !important; +} + +.mat-purple-100 { + background-color: mat-color($mat-purple, 100) !important; + color: mat-contrast($mat-purple, 100) !important; +} + +.mat-purple-200 { + background-color: mat-color($mat-purple, 200) !important; + color: mat-contrast($mat-purple, 200) !important; +} + +.mat-purple-300 { + background-color: mat-color($mat-purple, 300) !important; + color: mat-contrast($mat-purple, 300) !important; +} + +.mat-purple-400 { + background-color: mat-color($mat-purple, 400) !important; + color: mat-contrast($mat-purple, 400) !important; +} + +.mat-purple-500 { + background-color: mat-color($mat-purple, 500) !important; + color: mat-contrast($mat-purple, 500) !important; +} + +.mat-purple-600 { + background-color: mat-color($mat-purple, 600) !important; + color: mat-contrast($mat-purple, 600) !important; +} + +.mat-purple-700 { + background-color: mat-color($mat-purple, 700) !important; + color: mat-contrast($mat-purple, 700) !important; +} + +.mat-purple-800 { + background-color: mat-color($mat-purple, 800) !important; + color: mat-contrast($mat-purple, 800) !important; +} + +.mat-purple-900 { + background-color: mat-color($mat-purple, 900) !important; + color: mat-contrast($mat-purple, 900) !important; +} + +.mat-purple-A100 { + background-color: mat-color($mat-purple, A100) !important; + color: mat-contrast($mat-purple, A100) !important; +} + +.mat-purple-A200 { + background-color: mat-color($mat-purple, A200) !important; + color: mat-contrast($mat-purple, A200) !important; +} + +.mat-purple-A400 { + background-color: mat-color($mat-purple, A400) !important; + color: mat-contrast($mat-purple, A400) !important; +} + +.mat-purple-A700 { + background-color: mat-color($mat-purple, A700) !important; + color: mat-contrast($mat-purple, A700) !important; +} + +.mat-deep-purple { + background-color: mat-color($mat-deep-purple, 500) !important; + color: mat-contrast($mat-deep-purple, 500) !important; +} + +.mat-deep-purple-50 { + background-color: mat-color($mat-deep-purple, 50) !important; + color: mat-contrast($mat-deep-purple, 50) !important; +} + +.mat-deep-purple-100 { + background-color: mat-color($mat-deep-purple, 100) !important; + color: mat-contrast($mat-deep-purple, 100) !important; +} + +.mat-deep-purple-200 { + background-color: mat-color($mat-deep-purple, 200) !important; + color: mat-contrast($mat-deep-purple, 200) !important; +} + +.mat-deep-purple-300 { + background-color: mat-color($mat-deep-purple, 300) !important; + color: mat-contrast($mat-deep-purple, 300) !important; +} + +.mat-deep-purple-400 { + background-color: mat-color($mat-deep-purple, 400) !important; + color: mat-contrast($mat-deep-purple, 400) !important; +} + +.mat-deep-purple-500 { + background-color: mat-color($mat-deep-purple, 500) !important; + color: mat-contrast($mat-deep-purple, 500) !important; +} + +.mat-deep-purple-600 { + background-color: mat-color($mat-deep-purple, 600) !important; + color: mat-contrast($mat-deep-purple, 600) !important; +} + +.mat-deep-purple-700 { + background-color: mat-color($mat-deep-purple, 700) !important; + color: mat-contrast($mat-deep-purple, 700) !important; +} + +.mat-deep-purple-800 { + background-color: mat-color($mat-deep-purple, 800) !important; + color: mat-contrast($mat-deep-purple, 800) !important; +} + +.mat-deep-purple-900 { + background-color: mat-color($mat-deep-purple, 900) !important; + color: mat-contrast($mat-deep-purple, 900) !important; +} + +.mat-deep-purple-A100 { + background-color: mat-color($mat-deep-purple, A100) !important; + color: mat-contrast($mat-deep-purple, A100) !important; +} + +.mat-deep-purple-A200 { + background-color: mat-color($mat-deep-purple, A200) !important; + color: mat-contrast($mat-deep-purple, A200) !important; +} + +.mat-deep-purple-A400 { + background-color: mat-color($mat-deep-purple, A400) !important; + color: mat-contrast($mat-deep-purple, A400) !important; +} + +.mat-deep-purple-A700 { + background-color: mat-color($mat-deep-purple, A700) !important; + color: mat-contrast($mat-deep-purple, A700) !important; +} + +.mat-indigo { + background-color: mat-color($mat-indigo, 500) !important; + color: mat-contrast($mat-indigo, 500) !important; +} + +.mat-indigo-50 { + background-color: mat-color($mat-indigo, 50) !important; + color: mat-contrast($mat-indigo, 50) !important; +} + +.mat-indigo-100 { + background-color: mat-color($mat-indigo, 100) !important; + color: mat-contrast($mat-indigo, 100) !important; +} + +.mat-indigo-200 { + background-color: mat-color($mat-indigo, 200) !important; + color: mat-contrast($mat-indigo, 200) !important; +} + +.mat-indigo-300 { + background-color: mat-color($mat-indigo, 300) !important; + color: mat-contrast($mat-indigo, 300) !important; +} + +.mat-indigo-400 { + background-color: mat-color($mat-indigo, 400) !important; + color: mat-contrast($mat-indigo, 400) !important; +} + +.mat-indigo-500 { + background-color: mat-color($mat-indigo, 500) !important; + color: mat-contrast($mat-indigo, 500) !important; +} + +.mat-indigo-600 { + background-color: mat-color($mat-indigo, 600) !important; + color: mat-contrast($mat-indigo, 600) !important; +} + +.mat-indigo-700 { + background-color: mat-color($mat-indigo, 700) !important; + color: mat-contrast($mat-indigo, 700) !important; +} + +.mat-indigo-800 { + background-color: mat-color($mat-indigo, 800) !important; + color: mat-contrast($mat-indigo, 800) !important; +} + +.mat-indigo-900 { + background-color: mat-color($mat-indigo, 900) !important; + color: mat-contrast($mat-indigo, 900) !important; +} + +.mat-indigo-A100 { + background-color: mat-color($mat-indigo, A100) !important; + color: mat-contrast($mat-indigo, A100) !important; +} + +.mat-indigo-A200 { + background-color: mat-color($mat-indigo, A200) !important; + color: mat-contrast($mat-indigo, A200) !important; +} + +.mat-indigo-A400 { + background-color: mat-color($mat-indigo, A400) !important; + color: mat-contrast($mat-indigo, A400) !important; +} + +.mat-indigo-A700 { + background-color: mat-color($mat-indigo, A700) !important; + color: mat-contrast($mat-indigo, A700) !important; +} + +.mat-blue { + background-color: mat-color($mat-blue, 500) !important; + color: mat-contrast($mat-blue, 500) !important; +} + +.mat-blue-50 { + background-color: mat-color($mat-blue, 50) !important; + color: mat-contrast($mat-blue, 50) !important; +} + +.mat-blue-100 { + background-color: mat-color($mat-blue, 100) !important; + color: mat-contrast($mat-blue, 100) !important; +} + +.mat-blue-200 { + background-color: mat-color($mat-blue, 200) !important; + color: mat-contrast($mat-blue, 200) !important; +} + +.mat-blue-300 { + background-color: mat-color($mat-blue, 300) !important; + color: mat-contrast($mat-blue, 300) !important; +} + +.mat-blue-400 { + background-color: mat-color($mat-blue, 400) !important; + color: mat-contrast($mat-blue, 400) !important; +} + +.mat-blue-500 { + background-color: mat-color($mat-blue, 500) !important; + color: mat-contrast($mat-blue, 500) !important; +} + +.mat-blue-600 { + background-color: mat-color($mat-blue, 600) !important; + color: mat-contrast($mat-blue, 600) !important; +} + +.mat-blue-700 { + background-color: mat-color($mat-blue, 700) !important; + color: mat-contrast($mat-blue, 700) !important; +} + +.mat-blue-800 { + background-color: mat-color($mat-blue, 800) !important; + color: mat-contrast($mat-blue, 800) !important; +} + +.mat-blue-900 { + background-color: mat-color($mat-blue, 900) !important; + color: mat-contrast($mat-blue, 900) !important; +} + +.mat-blue-A100 { + background-color: mat-color($mat-blue, A100) !important; + color: mat-contrast($mat-blue, A100) !important; +} + +.mat-blue-A200 { + background-color: mat-color($mat-blue, A200) !important; + color: mat-contrast($mat-blue, A200) !important; +} + +.mat-blue-A400 { + background-color: mat-color($mat-blue, A400) !important; + color: mat-contrast($mat-blue, A400) !important; +} + +.mat-blue-A700 { + background-color: mat-color($mat-blue, A700) !important; + color: mat-contrast($mat-blue, A700) !important; +} + +.mat-light-blue { + background-color: mat-color($mat-light-blue, 500) !important; + color: mat-contrast($mat-light-blue, 500) !important; +} + +.mat-light-blue-50 { + background-color: mat-color($mat-light-blue, 50) !important; + color: mat-contrast($mat-light-blue, 50) !important; +} + +.mat-light-blue-100 { + background-color: mat-color($mat-light-blue, 100) !important; + color: mat-contrast($mat-light-blue, 100) !important; +} + +.mat-light-blue-200 { + background-color: mat-color($mat-light-blue, 200) !important; + color: mat-contrast($mat-light-blue, 200) !important; +} + +.mat-light-blue-300 { + background-color: mat-color($mat-light-blue, 300) !important; + color: mat-contrast($mat-light-blue, 300) !important; +} + +.mat-light-blue-400 { + background-color: mat-color($mat-light-blue, 400) !important; + color: mat-contrast($mat-light-blue, 400) !important; +} + +.mat-light-blue-500 { + background-color: mat-color($mat-light-blue, 500) !important; + color: mat-contrast($mat-light-blue, 500) !important; +} + +.mat-light-blue-600 { + background-color: mat-color($mat-light-blue, 600) !important; + color: mat-contrast($mat-light-blue, 600) !important; +} + +.mat-light-blue-700 { + background-color: mat-color($mat-light-blue, 700) !important; + color: mat-contrast($mat-light-blue, 700) !important; +} + +.mat-light-blue-800 { + background-color: mat-color($mat-light-blue, 800) !important; + color: mat-contrast($mat-light-blue, 800) !important; +} + +.mat-light-blue-900 { + background-color: mat-color($mat-light-blue, 900) !important; + color: mat-contrast($mat-light-blue, 900) !important; +} + +.mat-light-blue-A100 { + background-color: mat-color($mat-light-blue, A100) !important; + color: mat-contrast($mat-light-blue, A100) !important; +} + +.mat-light-blue-A200 { + background-color: mat-color($mat-light-blue, A200) !important; + color: mat-contrast($mat-light-blue, A200) !important; +} + +.mat-light-blue-A400 { + background-color: mat-color($mat-light-blue, A400) !important; + color: mat-contrast($mat-light-blue, A400) !important; +} + +.mat-light-blue-A700 { + background-color: mat-color($mat-light-blue, A700) !important; + color: mat-contrast($mat-light-blue, A700) !important; +} + +.mat-cyan { + background-color: mat-color($mat-cyan, 500) !important; + color: mat-contrast($mat-cyan, 500) !important; +} + +.mat-cyan-50 { + background-color: mat-color($mat-cyan, 50) !important; + color: mat-contrast($mat-cyan, 50) !important; +} + +.mat-cyan-100 { + background-color: mat-color($mat-cyan, 100) !important; + color: mat-contrast($mat-cyan, 100) !important; +} + +.mat-cyan-200 { + background-color: mat-color($mat-cyan, 200) !important; + color: mat-contrast($mat-cyan, 200) !important; +} + +.mat-cyan-300 { + background-color: mat-color($mat-cyan, 300) !important; + color: mat-contrast($mat-cyan, 300) !important; +} + +.mat-cyan-400 { + background-color: mat-color($mat-cyan, 400) !important; + color: mat-contrast($mat-cyan, 400) !important; +} + +.mat-cyan-500 { + background-color: mat-color($mat-cyan, 500) !important; + color: mat-contrast($mat-cyan, 500) !important; +} + +.mat-cyan-600 { + background-color: mat-color($mat-cyan, 600) !important; + color: mat-contrast($mat-cyan, 600) !important; +} + +.mat-cyan-700 { + background-color: mat-color($mat-cyan, 700) !important; + color: mat-contrast($mat-cyan, 700) !important; +} + +.mat-cyan-800 { + background-color: mat-color($mat-cyan, 800) !important; + color: mat-contrast($mat-cyan, 800) !important; +} + +.mat-cyan-900 { + background-color: mat-color($mat-cyan, 900) !important; + color: mat-contrast($mat-cyan, 900) !important; +} + +.mat-cyan-A100 { + background-color: mat-color($mat-cyan, A100) !important; + color: mat-contrast($mat-cyan, A100) !important; +} + +.mat-cyan-A200 { + background-color: mat-color($mat-cyan, A200) !important; + color: mat-contrast($mat-cyan, A200) !important; +} + +.mat-cyan-A400 { + background-color: mat-color($mat-cyan, A400) !important; + color: mat-contrast($mat-cyan, A400) !important; +} + +.mat-cyan-A700 { + background-color: mat-color($mat-cyan, A700) !important; + color: mat-contrast($mat-cyan, A700) !important; +} + +.mat-teal { + background-color: mat-color($mat-teal, 500) !important; + color: mat-contrast($mat-teal, 500) !important; +} + +.mat-teal-50 { + background-color: mat-color($mat-teal, 50) !important; + color: mat-contrast($mat-teal, 50) !important; +} + +.mat-teal-100 { + background-color: mat-color($mat-teal, 100) !important; + color: mat-contrast($mat-teal, 100) !important; +} + +.mat-teal-200 { + background-color: mat-color($mat-teal, 200) !important; + color: mat-contrast($mat-teal, 200) !important; +} + +.mat-teal-300 { + background-color: mat-color($mat-teal, 300) !important; + color: mat-contrast($mat-teal, 300) !important; +} + +.mat-teal-400 { + background-color: mat-color($mat-teal, 400) !important; + color: mat-contrast($mat-teal, 400) !important; +} + +.mat-teal-500 { + background-color: mat-color($mat-teal, 500) !important; + color: mat-contrast($mat-teal, 500) !important; +} + +.mat-teal-600 { + background-color: mat-color($mat-teal, 600) !important; + color: mat-contrast($mat-teal, 600) !important; +} + +.mat-teal-700 { + background-color: mat-color($mat-teal, 700) !important; + color: mat-contrast($mat-teal, 700) !important; +} + +.mat-teal-800 { + background-color: mat-color($mat-teal, 800) !important; + color: mat-contrast($mat-teal, 800) !important; +} + +.mat-teal-900 { + background-color: mat-color($mat-teal, 900) !important; + color: mat-contrast($mat-teal, 900) !important; +} + +.mat-teal-A100 { + background-color: mat-color($mat-teal, A100) !important; + color: mat-contrast($mat-teal, A100) !important; +} + +.mat-teal-A200 { + background-color: mat-color($mat-teal, A200) !important; + color: mat-contrast($mat-teal, A200) !important; +} + +.mat-teal-A400 { + background-color: mat-color($mat-teal, A400) !important; + color: mat-contrast($mat-teal, A400) !important; +} + +.mat-teal-A700 { + background-color: mat-color($mat-teal, A700) !important; + color: mat-contrast($mat-teal, A700) !important; +} + +.mat-green { + background-color: mat-color($mat-green, 500) !important; + color: mat-contrast($mat-green, 500) !important; +} + +.mat-green-50 { + background-color: mat-color($mat-green, 50) !important; + color: mat-contrast($mat-green, 50) !important; +} + +.mat-green-100 { + background-color: mat-color($mat-green, 100) !important; + color: mat-contrast($mat-green, 100) !important; +} + +.mat-green-200 { + background-color: mat-color($mat-green, 200) !important; + color: mat-contrast($mat-green, 200) !important; +} + +.mat-green-300 { + background-color: mat-color($mat-green, 300) !important; + color: mat-contrast($mat-green, 300) !important; +} + +.mat-green-400 { + background-color: mat-color($mat-green, 400) !important; + color: mat-contrast($mat-green, 400) !important; +} + +.mat-green-500 { + background-color: mat-color($mat-green, 500) !important; + color: mat-contrast($mat-green, 500) !important; +} + +.mat-green-600 { + background-color: mat-color($mat-green, 600) !important; + color: mat-contrast($mat-green, 600) !important; +} + +.mat-green-700 { + background-color: mat-color($mat-green, 700) !important; + color: mat-contrast($mat-green, 700) !important; +} + +.mat-green-800 { + background-color: mat-color($mat-green, 800) !important; + color: mat-contrast($mat-green, 800) !important; +} + +.mat-green-900 { + background-color: mat-color($mat-green, 900) !important; + color: mat-contrast($mat-green, 900) !important; +} + +.mat-green-A100 { + background-color: mat-color($mat-green, A100) !important; + color: mat-contrast($mat-green, A100) !important; +} + +.mat-green-A200 { + background-color: mat-color($mat-green, A200) !important; + color: mat-contrast($mat-green, A200) !important; +} + +.mat-green-A400 { + background-color: mat-color($mat-green, A400) !important; + color: mat-contrast($mat-green, A400) !important; +} + +.mat-green-A700 { + background-color: mat-color($mat-green, A700) !important; + color: mat-contrast($mat-green, A700) !important; +} + +.mat-light-green { + background-color: mat-color($mat-light-green, 500) !important; + color: mat-contrast($mat-light-green, 500) !important; +} + +.mat-light-green-50 { + background-color: mat-color($mat-light-green, 50) !important; + color: mat-contrast($mat-light-green, 50) !important; +} + +.mat-light-green-100 { + background-color: mat-color($mat-light-green, 100) !important; + color: mat-contrast($mat-light-green, 100) !important; +} + +.mat-light-green-200 { + background-color: mat-color($mat-light-green, 200) !important; + color: mat-contrast($mat-light-green, 200) !important; +} + +.mat-light-green-300 { + background-color: mat-color($mat-light-green, 300) !important; + color: mat-contrast($mat-light-green, 300) !important; +} + +.mat-light-green-400 { + background-color: mat-color($mat-light-green, 400) !important; + color: mat-contrast($mat-light-green, 400) !important; +} + +.mat-light-green-500 { + background-color: mat-color($mat-light-green, 500) !important; + color: mat-contrast($mat-light-green, 500) !important; +} + +.mat-light-green-600 { + background-color: mat-color($mat-light-green, 600) !important; + color: mat-contrast($mat-light-green, 600) !important; +} + +.mat-light-green-700 { + background-color: mat-color($mat-light-green, 700) !important; + color: mat-contrast($mat-light-green, 700) !important; +} + +.mat-light-green-800 { + background-color: mat-color($mat-light-green, 800) !important; + color: mat-contrast($mat-light-green, 800) !important; +} + +.mat-light-green-900 { + background-color: mat-color($mat-light-green, 900) !important; + color: mat-contrast($mat-light-green, 900) !important; +} + +.mat-light-green-A100 { + background-color: mat-color($mat-light-green, A100) !important; + color: mat-contrast($mat-light-green, A100) !important; +} + +.mat-light-green-A200 { + background-color: mat-color($mat-light-green, A200) !important; + color: mat-contrast($mat-light-green, A200) !important; +} + +.mat-light-green-A400 { + background-color: mat-color($mat-light-green, A400) !important; + color: mat-contrast($mat-light-green, A400) !important; +} + +.mat-light-green-A700 { + background-color: mat-color($mat-light-green, A700) !important; + color: mat-contrast($mat-light-green, A700) !important; +} + +.mat-lime { + background-color: mat-color($mat-lime, 500) !important; + color: mat-contrast($mat-lime, 500) !important; +} + +.mat-lime-50 { + background-color: mat-color($mat-lime, 50) !important; + color: mat-contrast($mat-lime, 50) !important; +} + +.mat-lime-100 { + background-color: mat-color($mat-lime, 100) !important; + color: mat-contrast($mat-lime, 100) !important; +} + +.mat-lime-200 { + background-color: mat-color($mat-lime, 200) !important; + color: mat-contrast($mat-lime, 200) !important; +} + +.mat-lime-300 { + background-color: mat-color($mat-lime, 300) !important; + color: mat-contrast($mat-lime, 300) !important; +} + +.mat-lime-400 { + background-color: mat-color($mat-lime, 400) !important; + color: mat-contrast($mat-lime, 400) !important; +} + +.mat-lime-500 { + background-color: mat-color($mat-lime, 500) !important; + color: mat-contrast($mat-lime, 500) !important; +} + +.mat-lime-600 { + background-color: mat-color($mat-lime, 600) !important; + color: mat-contrast($mat-lime, 600) !important; +} + +.mat-lime-700 { + background-color: mat-color($mat-lime, 700) !important; + color: mat-contrast($mat-lime, 700) !important; +} + +.mat-lime-800 { + background-color: mat-color($mat-lime, 800) !important; + color: mat-contrast($mat-lime, 800) !important; +} + +.mat-lime-900 { + background-color: mat-color($mat-lime, 900) !important; + color: mat-contrast($mat-lime, 900) !important; +} + +.mat-lime-A100 { + background-color: mat-color($mat-lime, A100) !important; + color: mat-contrast($mat-lime, A100) !important; +} + +.mat-lime-A200 { + background-color: mat-color($mat-lime, A200) !important; + color: mat-contrast($mat-lime, A200) !important; +} + +.mat-lime-A400 { + background-color: mat-color($mat-lime, A400) !important; + color: mat-contrast($mat-lime, A400) !important; +} + +.mat-lime-A700 { + background-color: mat-color($mat-lime, A700) !important; + color: mat-contrast($mat-lime, A700) !important; +} + +.mat-yellow { + background-color: mat-color($mat-yellow, 500) !important; + color: mat-contrast($mat-yellow, 500) !important; +} + +.mat-yellow-50 { + background-color: mat-color($mat-yellow, 50) !important; + color: mat-contrast($mat-yellow, 50) !important; +} + +.mat-yellow-100 { + background-color: mat-color($mat-yellow, 100) !important; + color: mat-contrast($mat-yellow, 100) !important; +} + +.mat-yellow-200 { + background-color: mat-color($mat-yellow, 200) !important; + color: mat-contrast($mat-yellow, 200) !important; +} + +.mat-yellow-300 { + background-color: mat-color($mat-yellow, 300) !important; + color: mat-contrast($mat-yellow, 300) !important; +} + +.mat-yellow-400 { + background-color: mat-color($mat-yellow, 400) !important; + color: mat-contrast($mat-yellow, 400) !important; +} + +.mat-yellow-500 { + background-color: mat-color($mat-yellow, 500) !important; + color: mat-contrast($mat-yellow, 500) !important; +} + +.mat-yellow-600 { + background-color: mat-color($mat-yellow, 600) !important; + color: mat-contrast($mat-yellow, 600) !important; +} + +.mat-yellow-700 { + background-color: mat-color($mat-yellow, 700) !important; + color: mat-contrast($mat-yellow, 700) !important; +} + +.mat-yellow-800 { + background-color: mat-color($mat-yellow, 800) !important; + color: mat-contrast($mat-yellow, 800) !important; +} + +.mat-yellow-900 { + background-color: mat-color($mat-yellow, 900) !important; + color: mat-contrast($mat-yellow, 900) !important; +} + +.mat-yellow-A100 { + background-color: mat-color($mat-yellow, A100) !important; + color: mat-contrast($mat-yellow, A100) !important; +} + +.mat-yellow-A200 { + background-color: mat-color($mat-yellow, A200) !important; + color: mat-contrast($mat-yellow, A200) !important; +} + +.mat-yellow-A400 { + background-color: mat-color($mat-yellow, A400) !important; + color: mat-contrast($mat-yellow, A400) !important; +} + +.mat-yellow-A700 { + background-color: mat-color($mat-yellow, A700) !important; + color: mat-contrast($mat-yellow, A700) !important; +} + +.mat-amber { + background-color: mat-color($mat-amber, 500) !important; + color: mat-contrast($mat-amber, 500) !important; +} + +.mat-amber-50 { + background-color: mat-color($mat-amber, 50) !important; + color: mat-contrast($mat-amber, 50) !important; +} + +.mat-amber-100 { + background-color: mat-color($mat-amber, 100) !important; + color: mat-contrast($mat-amber, 100) !important; +} + +.mat-amber-200 { + background-color: mat-color($mat-amber, 200) !important; + color: mat-contrast($mat-amber, 200) !important; +} + +.mat-amber-300 { + background-color: mat-color($mat-amber, 300) !important; + color: mat-contrast($mat-amber, 300) !important; +} + +.mat-amber-400 { + background-color: mat-color($mat-amber, 400) !important; + color: mat-contrast($mat-amber, 400) !important; +} + +.mat-amber-500 { + background-color: mat-color($mat-amber, 500) !important; + color: mat-contrast($mat-amber, 500) !important; +} + +.mat-amber-600 { + background-color: mat-color($mat-amber, 600) !important; + color: mat-contrast($mat-amber, 600) !important; +} + +.mat-amber-700 { + background-color: mat-color($mat-amber, 700) !important; + color: mat-contrast($mat-amber, 700) !important; +} + +.mat-amber-800 { + background-color: mat-color($mat-amber, 800) !important; + color: mat-contrast($mat-amber, 800) !important; +} + +.mat-amber-900 { + background-color: mat-color($mat-amber, 900) !important; + color: mat-contrast($mat-amber, 900) !important; +} + +.mat-amber-A100 { + background-color: mat-color($mat-amber, A100) !important; + color: mat-contrast($mat-amber, A100) !important; +} + +.mat-amber-A200 { + background-color: mat-color($mat-amber, A200) !important; + color: mat-contrast($mat-amber, A200) !important; +} + +.mat-amber-A400 { + background-color: mat-color($mat-amber, A400) !important; + color: mat-contrast($mat-amber, A400) !important; +} + +.mat-amber-A700 { + background-color: mat-color($mat-amber, A700) !important; + color: mat-contrast($mat-amber, A700) !important; +} + +.mat-orange { + background-color: mat-color($mat-orange, 500) !important; + color: mat-contrast($mat-orange, 500) !important; +} + +.mat-orange-50 { + background-color: mat-color($mat-orange, 50) !important; + color: mat-contrast($mat-orange, 50) !important; +} + +.mat-orange-100 { + background-color: mat-color($mat-orange, 100) !important; + color: mat-contrast($mat-orange, 100) !important; +} + +.mat-orange-200 { + background-color: mat-color($mat-orange, 200) !important; + color: mat-contrast($mat-orange, 200) !important; +} + +.mat-orange-300 { + background-color: mat-color($mat-orange, 300) !important; + color: mat-contrast($mat-orange, 300) !important; +} + +.mat-orange-400 { + background-color: mat-color($mat-orange, 400) !important; + color: mat-contrast($mat-orange, 400) !important; +} + +.mat-orange-500 { + background-color: mat-color($mat-orange, 500) !important; + color: mat-contrast($mat-orange, 500) !important; +} + +.mat-orange-600 { + background-color: mat-color($mat-orange, 600) !important; + color: mat-contrast($mat-orange, 600) !important; +} + +.mat-orange-700 { + background-color: mat-color($mat-orange, 700) !important; + color: mat-contrast($mat-orange, 700) !important; +} + +.mat-orange-800 { + background-color: mat-color($mat-orange, 800) !important; + color: mat-contrast($mat-orange, 800) !important; +} + +.mat-orange-900 { + background-color: mat-color($mat-orange, 900) !important; + color: mat-contrast($mat-orange, 900) !important; +} + +.mat-orange-A100 { + background-color: mat-color($mat-orange, A100) !important; + color: mat-contrast($mat-orange, A100) !important; +} + +.mat-orange-A200 { + background-color: mat-color($mat-orange, A200) !important; + color: mat-contrast($mat-orange, A200) !important; +} + +.mat-orange-A400 { + background-color: mat-color($mat-orange, A400) !important; + color: mat-contrast($mat-orange, A400) !important; +} + +.mat-orange-A700 { + background-color: mat-color($mat-orange, A700) !important; + color: mat-contrast($mat-orange, A700) !important; +} + +.mat-deep-orange { + background-color: mat-color($mat-deep-orange, 500) !important; + color: mat-contrast($mat-deep-orange, 500) !important; +} + +.mat-deep-orange-50 { + background-color: mat-color($mat-deep-orange, 50) !important; + color: mat-contrast($mat-deep-orange, 50) !important; +} + +.mat-deep-orange-100 { + background-color: mat-color($mat-deep-orange, 100) !important; + color: mat-contrast($mat-deep-orange, 100) !important; +} + +.mat-deep-orange-200 { + background-color: mat-color($mat-deep-orange, 200) !important; + color: mat-contrast($mat-deep-orange, 200) !important; +} + +.mat-deep-orange-300 { + background-color: mat-color($mat-deep-orange, 300) !important; + color: mat-contrast($mat-deep-orange, 300) !important; +} + +.mat-deep-orange-400 { + background-color: mat-color($mat-deep-orange, 400) !important; + color: mat-contrast($mat-deep-orange, 400) !important; +} + +.mat-deep-orange-500 { + background-color: mat-color($mat-deep-orange, 500) !important; + color: mat-contrast($mat-deep-orange, 500) !important; +} + +.mat-deep-orange-600 { + background-color: mat-color($mat-deep-orange, 600) !important; + color: mat-contrast($mat-deep-orange, 600) !important; +} + +.mat-deep-orange-700 { + background-color: mat-color($mat-deep-orange, 700) !important; + color: mat-contrast($mat-deep-orange, 700) !important; +} + +.mat-deep-orange-800 { + background-color: mat-color($mat-deep-orange, 800) !important; + color: mat-contrast($mat-deep-orange, 800) !important; +} + +.mat-deep-orange-900 { + background-color: mat-color($mat-deep-orange, 900) !important; + color: mat-contrast($mat-deep-orange, 900) !important; +} + +.mat-deep-orange-A100 { + background-color: mat-color($mat-deep-orange, A100) !important; + color: mat-contrast($mat-deep-orange, A100) !important; +} + +.mat-deep-orange-A200 { + background-color: mat-color($mat-deep-orange, A200) !important; + color: mat-contrast($mat-deep-orange, A200) !important; +} + +.mat-deep-orange-A400 { + background-color: mat-color($mat-deep-orange, A400) !important; + color: mat-contrast($mat-deep-orange, A400) !important; +} + +.mat-deep-orange-A700 { + background-color: mat-color($mat-deep-orange, A700) !important; + color: mat-contrast($mat-deep-orange, A700) !important; +} + +.mat-brown { + background-color: mat-color($mat-brown, 500) !important; + color: mat-contrast($mat-brown, 500) !important; +} + +.mat-brown-50 { + background-color: mat-color($mat-brown, 50) !important; + color: mat-contrast($mat-brown, 50) !important; +} + +.mat-brown-100 { + background-color: mat-color($mat-brown, 100) !important; + color: mat-contrast($mat-brown, 100) !important; +} + +.mat-brown-200 { + background-color: mat-color($mat-brown, 200) !important; + color: mat-contrast($mat-brown, 200) !important; +} + +.mat-brown-300 { + background-color: mat-color($mat-brown, 300) !important; + color: mat-contrast($mat-brown, 300) !important; +} + +.mat-brown-400 { + background-color: mat-color($mat-brown, 400) !important; + color: mat-contrast($mat-brown, 400) !important; +} + +.mat-brown-500 { + background-color: mat-color($mat-brown, 500) !important; + color: mat-contrast($mat-brown, 500) !important; +} + +.mat-brown-600 { + background-color: mat-color($mat-brown, 600) !important; + color: mat-contrast($mat-brown, 600) !important; +} + +.mat-brown-700 { + background-color: mat-color($mat-brown, 700) !important; + color: mat-contrast($mat-brown, 700) !important; +} + +.mat-brown-800 { + background-color: mat-color($mat-brown, 800) !important; + color: mat-contrast($mat-brown, 800) !important; +} + +.mat-brown-900 { + background-color: mat-color($mat-brown, 900) !important; + color: mat-contrast($mat-brown, 900) !important; +} + +.mat-brown-A100 { + background-color: mat-color($mat-brown, A100) !important; + color: mat-contrast($mat-brown, A100) !important; +} + +.mat-brown-A200 { + background-color: mat-color($mat-brown, A200) !important; + color: mat-contrast($mat-brown, A200) !important; +} + +.mat-brown-A400 { + background-color: mat-color($mat-brown, A400) !important; + color: mat-contrast($mat-brown, A400) !important; +} + +.mat-brown-A700 { + background-color: mat-color($mat-brown, A700) !important; + color: mat-contrast($mat-brown, A700) !important; +} + +.mat-grey { + background-color: mat-color($mat-grey, 500) !important; + color: mat-contrast($mat-grey, 500) !important; +} + +.mat-grey-50 { + background-color: mat-color($mat-grey, 50) !important; + color: mat-contrast($mat-grey, 50) !important; +} + +.mat-grey-100 { + background-color: mat-color($mat-grey, 100) !important; + color: mat-contrast($mat-grey, 100) !important; +} + +.mat-grey-200 { + background-color: mat-color($mat-grey, 200) !important; + color: mat-contrast($mat-grey, 200) !important; +} + +.mat-grey-300 { + background-color: mat-color($mat-grey, 300) !important; + color: mat-contrast($mat-grey, 300) !important; +} + +.mat-grey-400 { + background-color: mat-color($mat-grey, 400) !important; + color: mat-contrast($mat-grey, 400) !important; +} + +.mat-grey-500 { + background-color: mat-color($mat-grey, 500) !important; + color: mat-contrast($mat-grey, 500) !important; +} + +.mat-grey-600 { + background-color: mat-color($mat-grey, 600) !important; + color: mat-contrast($mat-grey, 600) !important; +} + +.mat-grey-700 { + background-color: mat-color($mat-grey, 700) !important; + color: mat-contrast($mat-grey, 700) !important; +} + +.mat-grey-800 { + background-color: mat-color($mat-grey, 800) !important; + color: mat-contrast($mat-grey, 800) !important; +} + +.mat-grey-900 { + background-color: mat-color($mat-grey, 900) !important; + color: mat-contrast($mat-grey, 900) !important; +} + +.mat-grey-A100 { + background-color: mat-color($mat-grey, A100) !important; + color: mat-contrast($mat-grey, A100) !important; +} + +.mat-grey-A200 { + background-color: mat-color($mat-grey, A200) !important; + color: mat-contrast($mat-grey, A200) !important; +} + +.mat-grey-A400 { + background-color: mat-color($mat-grey, A400) !important; + color: mat-contrast($mat-grey, A400) !important; +} + +.mat-grey-A700 { + background-color: mat-color($mat-grey, A700) !important; + color: mat-contrast($mat-grey, A700) !important; +} + +.mat-blue-grey { + background-color: mat-color($mat-blue-grey, 500) !important; + color: mat-contrast($mat-blue-grey, 500) !important; +} + +.mat-blue-grey-50 { + background-color: mat-color($mat-blue-grey, 50) !important; + color: mat-contrast($mat-blue-grey, 50) !important; +} + +.mat-blue-grey-100 { + background-color: mat-color($mat-blue-grey, 100) !important; + color: mat-contrast($mat-blue-grey, 100) !important; +} + +.mat-blue-grey-200 { + background-color: mat-color($mat-blue-grey, 200) !important; + color: mat-contrast($mat-blue-grey, 200) !important; +} + +.mat-blue-grey-300 { + background-color: mat-color($mat-blue-grey, 300) !important; + color: mat-contrast($mat-blue-grey, 300) !important; +} + +.mat-blue-grey-400 { + background-color: mat-color($mat-blue-grey, 400) !important; + color: mat-contrast($mat-blue-grey, 400) !important; +} + +.mat-blue-grey-500 { + background-color: mat-color($mat-blue-grey, 500) !important; + color: mat-contrast($mat-blue-grey, 500) !important; +} + +.mat-blue-grey-600 { + background-color: mat-color($mat-blue-grey, 600) !important; + color: mat-contrast($mat-blue-grey, 600) !important; +} + +.mat-blue-grey-700 { + background-color: mat-color($mat-blue-grey, 700) !important; + color: mat-contrast($mat-blue-grey, 700) !important; +} + +.mat-blue-grey-800 { + background-color: mat-color($mat-blue-grey, 800) !important; + color: mat-contrast($mat-blue-grey, 800) !important; +} + +.mat-blue-grey-900 { + background-color: mat-color($mat-blue-grey, 900) !important; + color: mat-contrast($mat-blue-grey, 900) !important; +} + +.mat-blue-grey-A100 { + background-color: mat-color($mat-blue-grey, A100) !important; + color: mat-contrast($mat-blue-grey, A100) !important; +} + +.mat-blue-grey-A200 { + background-color: mat-color($mat-blue-grey, A200) !important; + color: mat-contrast($mat-blue-grey, A200) !important; +} + +.mat-blue-grey-A400 { + background-color: mat-color($mat-blue-grey, A400) !important; + color: mat-contrast($mat-blue-grey, A400) !important; +} + +.mat-blue-grey-A700 { + background-color: mat-color($mat-blue-grey, A700) !important; + color: mat-contrast($mat-blue-grey, A700) !important; +} diff --git a/src/assets/styles/scss/utilities/_general.scss b/src/assets/styles/scss/utilities/_general.scss new file mode 100755 index 0000000..333ceb5 --- /dev/null +++ b/src/assets/styles/scss/utilities/_general.scss @@ -0,0 +1,79 @@ +.radius-none { + border-radius: 0; +} + +.radius-round { + border-radius: $border-radius-base; +} + +.radius-circle { + border-radius: 50%; +} + +.overflow-visible { + overflow: visible; +} + +.overflow-hidden { + overflow: hidden; +} + +.overflow-auto { + overflow: auto; +} + +.block { + display: block; +} + +.button-block { + display: block; + width: 100%; +} + +.inline-block { + display: inline-block; +} + +.center-block { + display: block; + margin: 0 auto; +} + +.relative { + position: relative; +} + +.fixed { + position: fixed; +} + +.absolute { + position: absolute; +} + +.shadow-none { + box-shadow: none !important; +} + +.border-none { + border: 0 !important; +} + +.background-none { + background-color: transparent !important; +} + +.bg-cover { + background-size: cover; + background-repeat: no-repeat; + background-position: center; +} + +.w-100 { + width: 100%; +} + +.h-100 { + height: 100%; +} diff --git a/src/assets/styles/scss/utilities/_spacing.scss b/src/assets/styles/scss/utilities/_spacing.scss new file mode 100755 index 0000000..12888ad --- /dev/null +++ b/src/assets/styles/scss/utilities/_spacing.scss @@ -0,0 +1,41 @@ +@each $prop, +$abbrev in (margin: m, padding: p) { + + @each $size, + $lengths in $spacers { + $length-x: map-get($lengths, x); + $length-y: map-get($lengths, y); + + .#{$abbrev}a-#{$size} { + #{$prop}: $length-y $length-x !important; + } + + // a = All sides + .#{$abbrev}t-#{$size} { + #{$prop}-top: $length-y !important; + } + + .#{$abbrev}r-#{$size} { + #{$prop}-right: $length-x !important; + } + + .#{$abbrev}b-#{$size} { + #{$prop}-bottom: $length-y !important; + } + + .#{$abbrev}l-#{$size} { + #{$prop}-left: $length-x !important; + } + + // Axes + .#{$abbrev}x-#{$size} { + #{$prop}-right: $length-x !important; + #{$prop}-left: $length-x !important; + } + + .#{$abbrev}y-#{$size} { + #{$prop}-top: $length-y !important; + #{$prop}-bottom: $length-y !important; + } + } +} diff --git a/src/assets/styles/scss/utilities/_text.scss b/src/assets/styles/scss/utilities/_text.scss new file mode 100755 index 0000000..b2154c7 --- /dev/null +++ b/src/assets/styles/scss/utilities/_text.scss @@ -0,0 +1,112 @@ +// +// Text +// + +// Alignment + +.text-justify { + text-align: justify !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +// Responsive alignment + +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + .text-#{$breakpoint}-left { + text-align: left !important; + } + + .text-#{$breakpoint}-right { + text-align: right !important; + } + + .text-#{$breakpoint}-center { + text-align: center !important; + } + } +} + +// Transformation + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +// Size + +.text-xs { + font-size: 50% !important; +} + +.text-sm { + font-size: 70% !important; +} + +.text-md { + font-size: 80% !important; +} + +.text-df { + font-size: 13px !important; +} + +.text-lg { + font-size: 110% !important; +} + +.text-xl { + font-size: 120% !important; +} + +.text-xxl { + font-size: 60px !important; +} + +// Weight and italics + +.font-weight-normal { + font-weight: normal !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-italic { + font-style: italic !important; +} + +// Contextual colors + +@include text-emphasis-variant('.mat-text-muted', mat-color($foreground, secondary-text)); + +@include text-emphasis-variant('.mat-text-default', mat-color($foreground, base)); + +@include text-emphasis-variant('.mat-text-primary', mat-color($primary)); + +@include text-emphasis-variant('.mat-text-warn', mat-color($warn)); + +@include text-emphasis-variant('.mat-text-accent', mat-color($accent)); + +.app-dark { + @include text-emphasis-variant('.mat-text-muted', mat-color($dark-foreground, secondary-text)); + @include text-emphasis-variant('.mat-text-default', mat-color($dark-foreground, base)); +} + +.text-ellipsis { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} diff --git a/src/assets/styles/scss/utilities/utilities.scss b/src/assets/styles/scss/utilities/utilities.scss new file mode 100755 index 0000000..56004a3 --- /dev/null +++ b/src/assets/styles/scss/utilities/utilities.scss @@ -0,0 +1,4 @@ +@import "background"; +@import "general"; +// @import "spacing"; +@import "text"; diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts new file mode 100755 index 0000000..bb0d975 --- /dev/null +++ b/src/environments/environment.prod.ts @@ -0,0 +1,7 @@ +export const environment = { + production: true, + APIEndpoint: 'https://api.domain.com/', + APIEndpointNoSlash: 'https://api.domain.com', + APIv1Endpoint: 'https://api.domain.com/api/v1/', + APIClientID: 'CLIENT_ID_FROM_API' +} \ No newline at end of file diff --git a/src/environments/environment.ts b/src/environments/environment.ts new file mode 100755 index 0000000..bb0d975 --- /dev/null +++ b/src/environments/environment.ts @@ -0,0 +1,7 @@ +export const environment = { + production: true, + APIEndpoint: 'https://api.domain.com/', + APIEndpointNoSlash: 'https://api.domain.com', + APIv1Endpoint: 'https://api.domain.com/api/v1/', + APIClientID: 'CLIENT_ID_FROM_API' +} \ No newline at end of file diff --git a/src/favicon.ico b/src/favicon.ico new file mode 100755 index 0000000..3a5033a Binary files /dev/null and b/src/favicon.ico differ diff --git a/src/index.html b/src/index.html new file mode 100755 index 0000000..c4b4424 --- /dev/null +++ b/src/index.html @@ -0,0 +1,63 @@ + + + + + + + + + Onekana Digital Attendance + + + + + + + + + + +
+
+ + + \ No newline at end of file diff --git a/src/jestGlobalMocks.ts b/src/jestGlobalMocks.ts new file mode 100755 index 0000000..77f53ff --- /dev/null +++ b/src/jestGlobalMocks.ts @@ -0,0 +1,24 @@ +Object.defineProperty(window, 'CSS', {value: null}); +Object.defineProperty(document, 'doctype', { + value: '' +}); +Object.defineProperty(window, 'getComputedStyle', { + value: () => { + return { + display: 'none', + appearance: ['-webkit-appearance'] + }; + } +}); +/** + * ISSUE: https://github.com/angular/material2/issues/7101 + * Workaround for JSDOM missing transform property + */ +Object.defineProperty(document.body.style, 'transform', { + value: () => { + return { + enumerable: true, + configurable: true, + }; + }, +}); \ No newline at end of file diff --git a/src/karma.conf.js b/src/karma.conf.js new file mode 100755 index 0000000..8cbccb9 --- /dev/null +++ b/src/karma.conf.js @@ -0,0 +1,31 @@ +// // Karma configuration file, see link for more information +// // https://karma-runner.github.io/1.0/config/configuration-file.html + +// module.exports = function (config) { +// config.set({ +// basePath: '', +// frameworks: ['jasmine', '@angular-devkit/build-angular'], +// plugins: [ +// require('karma-jasmine'), +// require('karma-chrome-launcher'), +// require('karma-jasmine-html-reporter'), +// require('karma-coverage-istanbul-reporter'), +// require('@angular-devkit/build-angular/plugins/karma') +// ], +// client: { +// clearContext: false // leave Jasmine Spec Runner output visible in browser +// }, +// coverageIstanbulReporter: { +// dir: require('path').join(__dirname, '../coverage'), +// reports: ['html', 'lcovonly'], +// fixWebpackSourcePaths: true +// }, +// reporters: ['progress', 'kjhtml'], +// port: 9876, +// colors: true, +// logLevel: config.LOG_INFO, +// autoWatch: true, +// browsers: ['Chrome'], +// singleRun: false +// }); +// }; diff --git a/src/karmaTest.ts b/src/karmaTest.ts new file mode 100755 index 0000000..a6f15af --- /dev/null +++ b/src/karmaTest.ts @@ -0,0 +1,20 @@ +// This file is required by karma.conf.js and loads recursively all the .spec and framework files + +import 'zone.js/testing'; +import { getTestBed } from '@angular/core/testing'; +import { + BrowserDynamicTestingModule, + platformBrowserDynamicTesting +} from '@angular/platform-browser-dynamic/testing'; + +declare const require: any; + +// First, initialize the Angular testing environment. +getTestBed().initTestEnvironment( + BrowserDynamicTestingModule, + platformBrowserDynamicTesting() +); +// Then we find all the tests. +const context = require.context('./', true, /\.spec\.ts$/); +// And load the modules. +context.keys().map(context); diff --git a/src/main.ts b/src/main.ts new file mode 100755 index 0000000..0caaf48 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,13 @@ +import { enableProdMode } from '@angular/core'; +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; + +import { AppModule } from './app/app.module'; +import { environment } from './environments/environment'; + +if (environment.production) { + console.log("Enabling prod....") + enableProdMode(); +} + +platformBrowserDynamic().bootstrapModule(AppModule) + .catch(err => console.log(err)); diff --git a/src/polyfills.ts b/src/polyfills.ts new file mode 100755 index 0000000..854e0c6 --- /dev/null +++ b/src/polyfills.ts @@ -0,0 +1,44 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + + +/** Evergreen browsers require these. **/ +import 'core-js/es6/reflect'; + + + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import 'zone.js'; // Included with Angular CLI. + + + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import 'intl'; + +(window as any).global = window; diff --git a/src/setupJest.ts b/src/setupJest.ts new file mode 100755 index 0000000..531003a --- /dev/null +++ b/src/setupJest.ts @@ -0,0 +1,2 @@ +import 'jest-preset-angular'; +import './jestGlobalMocks'; // browser mocks globally available for every test \ No newline at end of file diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..e69de29 diff --git a/src/tsconfig.app.json b/src/tsconfig.app.json new file mode 100755 index 0000000..f3a1b80 --- /dev/null +++ b/src/tsconfig.app.json @@ -0,0 +1,14 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "outDir": "../out-tsc/app", + "types": [] + }, + "files": [ + "main.ts", + "polyfills.ts" + ], + "include": [ + "src/**/*.d.ts" + ] +} diff --git a/src/tsconfig.spec.json b/src/tsconfig.spec.json new file mode 100755 index 0000000..a2df625 --- /dev/null +++ b/src/tsconfig.spec.json @@ -0,0 +1,21 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "outDir": "../out-tsc/spec", + "types": [ + // "jasmine", + "jest", + // "jquery", + // "jsdom", + "node" + ] + }, + "files": [ + //"test.ts", + "polyfills.ts" + ], + "include": [ + "**/*.spec.ts", + "**/*.d.ts" + ] +} diff --git a/src/tslint.json b/src/tslint.json new file mode 100755 index 0000000..52e2c1a --- /dev/null +++ b/src/tslint.json @@ -0,0 +1,17 @@ +{ + "extends": "../tslint.json", + "rules": { + "directive-selector": [ + true, + "attribute", + "app", + "camelCase" + ], + "component-selector": [ + true, + "element", + "app", + "kebab-case" + ] + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100755 index 0000000..2a99e8c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "importHelpers": true, + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "module": "es2020", + "moduleResolution": "node", + "downlevelIteration": true, + "experimentalDecorators": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ], + "allowSyntheticDefaultImports": true + } +} \ No newline at end of file diff --git a/tslint.json b/tslint.json new file mode 100755 index 0000000..5065137 --- /dev/null +++ b/tslint.json @@ -0,0 +1,129 @@ +{ + "rulesDirectory": [ + "node_modules/codelyzer" + ], + "rules": { + "arrow-return-shorthand": true, + "callable-types": true, + "class-name": true, + "comment-format": [ + true, + "check-space" + ], + "curly": true, + "deprecation": { + "severity": "warn" + }, + "eofline": true, + "forin": true, + "import-blacklist": [ + true, + "rxjs/Rx" + ], + "import-spacing": true, + "indent": [ + true, + "spaces" + ], + "interface-over-type-literal": true, + "label-position": true, + "max-line-length": [ + true, + 140 + ], + "member-access": false, + "member-ordering": [ + true, + { + "order": [ + "static-field", + "instance-field", + "static-method", + "instance-method" + ] + } + ], + "no-arg": true, + "no-bitwise": true, + "no-console": [ + true, + "debug", + "info", + "time", + "timeEnd", + "trace" + ], + "no-construct": true, + "no-debugger": true, + "no-duplicate-super": true, + "no-empty": false, + "no-empty-interface": true, + "no-eval": true, + "no-inferrable-types": [ + true, + "ignore-params" + ], + "no-misused-new": true, + "no-non-null-assertion": true, + "no-shadowed-variable": true, + "no-string-literal": false, + "no-string-throw": true, + "no-switch-case-fall-through": true, + "no-trailing-whitespace": true, + "no-unnecessary-initializer": true, + "no-unused-expression": true, + "no-var-keyword": true, + "object-literal-sort-keys": false, + "one-line": [ + true, + "check-open-brace", + "check-catch", + "check-else", + "check-whitespace" + ], + "prefer-const": true, + "quotemark": [ + true, + "single" + ], + "radix": true, + "semicolon": [ + true, + "always" + ], + "triple-equals": [ + true, + "allow-null-check" + ], + "typedef-whitespace": [ + true, + { + "call-signature": "nospace", + "index-signature": "nospace", + "parameter": "nospace", + "property-declaration": "nospace", + "variable-declaration": "nospace" + } + ], + "unified-signatures": true, + "variable-name": false, + "whitespace": [ + true, + "check-branch", + "check-decl", + "check-operator", + "check-separator", + "check-type" + ], + "no-output-on-prefix": true, + "no-inputs-metadata-property": true, + "no-outputs-metadata-property": true, + "no-host-metadata-property": true, + "no-input-rename": true, + "no-output-rename": true, + "use-lifecycle-interface": true, + "use-pipe-transform-interface": true, + "component-class-suffix": true, + "directive-class-suffix": true + } +} diff --git a/yarn.lock b/yarn.lock new file mode 100755 index 0000000..d708c78 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,10354 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@agm/core@^1.0.0-beta.3": + version "1.1.0" + resolved "https://registry.npmjs.org/@agm/core/-/core-1.1.0.tgz" + integrity sha512-cMvmm3+3/uuVFurLv1FKhE0/6ssIlDvYBjQFCi8ELg7h0OY2MkIU1MXWr7z+f/xZ08E936I4eeddni6k4yUTIA== + dependencies: + tslib "^1.9.0" + +"@ampproject/remapping@^2.2.0", "@ampproject/remapping@2.2.0": + version "2.2.0" + resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@angular-devkit/architect@0.1303.10": + version "0.1303.10" + resolved "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.10.tgz" + integrity sha512-A8blp98GY9Lg5RdgZ4M/nT0DhWsFv+YikC6+ebJsUTn/L06GcQNhyZKGCwB69S4Xe/kcYJgKpI2nAYnOLDpJlQ== + dependencies: + "@angular-devkit/core" "13.3.10" + rxjs "6.6.7" + +"@angular-devkit/build-angular@~13.3.10": + version "13.3.10" + resolved "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.10.tgz" + integrity sha512-eKMjwr7XHlh/lYqYvdIrHZfVPM8fCxP4isKzCDiOjsJ+4fl+Ycq8RvjtOLntBN6A1U8h93rZNE+VOTEGCJcGig== + dependencies: + "@ampproject/remapping" "2.2.0" + "@angular-devkit/architect" "0.1303.10" + "@angular-devkit/build-webpack" "0.1303.10" + "@angular-devkit/core" "13.3.10" + "@babel/core" "7.16.12" + "@babel/generator" "7.16.8" + "@babel/helper-annotate-as-pure" "7.16.7" + "@babel/plugin-proposal-async-generator-functions" "7.16.8" + "@babel/plugin-transform-async-to-generator" "7.16.8" + "@babel/plugin-transform-runtime" "7.16.10" + "@babel/preset-env" "7.16.11" + "@babel/runtime" "7.16.7" + "@babel/template" "7.16.7" + "@discoveryjs/json-ext" "0.5.6" + "@ngtools/webpack" "13.3.10" + ansi-colors "4.1.1" + babel-loader "8.2.5" + babel-plugin-istanbul "6.1.1" + browserslist "^4.9.1" + cacache "15.3.0" + circular-dependency-plugin "5.2.2" + copy-webpack-plugin "10.2.1" + core-js "3.20.3" + critters "0.0.16" + css-loader "6.5.1" + esbuild-wasm "0.14.22" + glob "7.2.0" + https-proxy-agent "5.0.0" + inquirer "8.2.0" + jsonc-parser "3.0.0" + karma-source-map-support "1.4.0" + less "4.1.2" + less-loader "10.2.0" + license-webpack-plugin "4.0.2" + loader-utils "3.2.1" + mini-css-extract-plugin "2.5.3" + minimatch "3.0.5" + open "8.4.0" + ora "5.4.1" + parse5-html-rewriting-stream "6.0.1" + piscina "3.2.0" + postcss "8.4.5" + postcss-import "14.0.2" + postcss-loader "6.2.1" + postcss-preset-env "7.2.3" + regenerator-runtime "0.13.9" + resolve-url-loader "5.0.0" + rxjs "6.6.7" + sass "1.49.9" + sass-loader "12.4.0" + semver "7.3.5" + source-map-loader "3.0.1" + source-map-support "0.5.21" + stylus "0.56.0" + stylus-loader "6.2.0" + terser "5.14.2" + text-table "0.2.0" + tree-kill "1.2.2" + tslib "2.3.1" + webpack "5.70.0" + webpack-dev-middleware "5.3.0" + webpack-dev-server "4.7.3" + webpack-merge "5.8.0" + webpack-subresource-integrity "5.1.0" + optionalDependencies: + esbuild "0.14.22" + +"@angular-devkit/build-webpack@0.1303.10": + version "0.1303.10" + resolved "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.10.tgz" + integrity sha512-nthTy6r4YQQTrvOpOS3dqjoJog/SL9Hn5YLytqnEp2r2he5evYsKV2Jtqi49/VgW1ohrGzw+bI0c3dUGKweyfw== + dependencies: + "@angular-devkit/architect" "0.1303.10" + rxjs "6.6.7" + +"@angular-devkit/core@13.3.10": + version "13.3.10" + resolved "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.10.tgz" + integrity sha512-NSjyrccES+RkVL/wt1t1jNmJOV9z5H4/DtVjJQbAt/tDE5Mo0ygnhELd/QiUmjVfzfSkhr75LqQD8NtURoGBwQ== + dependencies: + ajv "8.9.0" + ajv-formats "2.1.1" + fast-json-stable-stringify "2.1.0" + magic-string "0.25.7" + rxjs "6.6.7" + source-map "0.7.3" + +"@angular-devkit/schematics@13.3.10": + version "13.3.10" + resolved "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.10.tgz" + integrity sha512-/G0xInGBfFiJJQET3nKMe8V7Ny+fcxAZsXxFuOpuH2jfKqty9JMmuJw6ll5qEP0h3NnKPsF+9J1Gvq8Bmb4uDQ== + dependencies: + "@angular-devkit/core" "13.3.10" + jsonc-parser "3.0.0" + magic-string "0.25.7" + ora "5.4.1" + rxjs "6.6.7" + +"@angular/animations@^13.0.0 || ^14.0.0-0", "@angular/animations@>=6.0.0 <8.0.0", "@angular/animations@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/animations/-/animations-13.3.12.tgz" + integrity sha512-dc2JDokKJuuNxzzZa9FvuQU71kYC/e0xCLjGxEgX48sGKwajHRGBuzYFb8EmvLeA24SshYGmrxN0vGG9GhLK6g== + dependencies: + tslib "^2.3.0" + +"@angular/cdk@^9.0.0-rc.8", "@angular/cdk@13.3.9": + version "13.3.9" + resolved "https://registry.npmjs.org/@angular/cdk/-/cdk-13.3.9.tgz" + integrity sha512-XCuCbeuxWFyo3EYrgEYx7eHzwl76vaWcxtWXl00ka8d+WAOtMQ6Tf1D98ybYT5uwF9889fFpXAPw98mVnlo3MA== + dependencies: + tslib "^2.3.0" + optionalDependencies: + parse5 "^5.0.0" + +"@angular/cli@13.3.10": + version "13.3.10" + resolved "https://registry.npmjs.org/@angular/cli/-/cli-13.3.10.tgz" + integrity sha512-MssGlWSFv2d8d6b0+ml0NLYWr/X+2FzIleaoEwkYnLeCTBrH07xghVkCbSk8OnTvEmuBcUcsNiPprpLFY4cGEw== + dependencies: + "@angular-devkit/architect" "0.1303.10" + "@angular-devkit/core" "13.3.10" + "@angular-devkit/schematics" "13.3.10" + "@schematics/angular" "13.3.10" + "@yarnpkg/lockfile" "1.1.0" + ansi-colors "4.1.1" + debug "4.3.3" + ini "2.0.0" + inquirer "8.2.0" + jsonc-parser "3.0.0" + npm-package-arg "8.1.5" + npm-pick-manifest "6.1.1" + open "8.4.0" + ora "5.4.1" + pacote "12.0.3" + resolve "1.22.0" + semver "7.3.5" + symbol-observable "4.0.0" + uuid "8.3.2" + +"@angular/common@*", "@angular/common@^13.0.0 || ^14.0.0-0", "@angular/common@^13.2.0", "@angular/common@^13.3.0", "@angular/common@^6.0.0 || ^7.0.0 || ^8.0.0", "@angular/common@>=5.0.0", "@angular/common@>=6", "@angular/common@>=6.0.0 <8.0.0", "@angular/common@>=6.0.0-rc.0", "@angular/common@>=7.2.0", "@angular/common@>=9.1.5", "@angular/common@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/common/-/common-13.3.12.tgz" + integrity sha512-Nk4zNKfda92aFe+cucHRv2keyryR7C1ZnsurwZW9WZSobpY3z2tTT81F+yy35lGoMt5BDBAIpfh1b4j9Ue/vMg== + dependencies: + tslib "^2.3.0" + +"@angular/compiler-cli@^13.0.0", "@angular/compiler-cli@^13.0.0 || ^13.3.0-rc.0", "@angular/compiler-cli@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.12.tgz" + integrity sha512-6jrdVwexPihWlyitopc3rn2ReEkhAaMI8UWR0SOTnt3NaqNYWeio4bpeWlumgNPElDyY5rmyrmJgeaY8ICa8qA== + dependencies: + "@babel/core" "^7.17.2" + chokidar "^3.0.0" + convert-source-map "^1.5.1" + dependency-graph "^0.11.0" + magic-string "^0.26.0" + reflect-metadata "^0.1.2" + semver "^7.0.0" + sourcemap-codec "^1.4.8" + tslib "^2.3.0" + yargs "^17.2.1" + +"@angular/compiler@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.12.tgz" + integrity sha512-F5vJYrjbNvEWoVz9J/CqiT3Iod6g9bV0dGI5EeURcW4yHXHZ12ioQpfU3+bE7qXcTlnofbdDhK8cGxGx01SzBA== + dependencies: + tslib "^2.3.0" + +"@angular/compiler@9.0.0": + version "9.0.0" + resolved "https://registry.npmjs.org/@angular/compiler/-/compiler-9.0.0.tgz" + integrity sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ== + +"@angular/core@*", "@angular/core@^13.0.0 || ^14.0.0-0", "@angular/core@^13.2.0", "@angular/core@^13.3.0", "@angular/core@^5.0.0 || ^6.0.0", "@angular/core@^6.0.0 || ^7.0.0 || ^8.0.0", "@angular/core@>=2.0.0", "@angular/core@>=5.0.0", "@angular/core@>=6", "@angular/core@>=6.0.0", "@angular/core@>=6.0.0 <8.0.0", "@angular/core@>=6.0.0-beta.0 <7.0.0", "@angular/core@>=6.0.0-rc.0", "@angular/core@>=7.2.0", "@angular/core@>=9.1.5", "@angular/core@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/core/-/core-13.3.12.tgz" + integrity sha512-jx0YC+NbPMbxGr5bXECkCEQv2RdVxR8AJNnabkPk8ZjwCpDzROrbELwwS1kunrZUhffcD15IhWGBvf1EGHAYDw== + dependencies: + tslib "^2.3.0" + +"@angular/core@9.0.0": + version "9.0.0" + resolved "https://registry.npmjs.org/@angular/core/-/core-9.0.0.tgz" + integrity sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w== + +"@angular/flex-layout@^9.0.0-beta.31": + version "9.0.0-beta.31" + resolved "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-9.0.0-beta.31.tgz" + integrity sha512-g94u2mecDl87ORvFRuOBshV/S/ETE4bybClU2e1xXKWNG+rhRHchChneHSonc29ZLyROTjHhmAtKOYojL92uLA== + +"@angular/forms@^13.0.0 || ^14.0.0-0", "@angular/forms@^5.0.0 || ^6.0.0", "@angular/forms@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/forms/-/forms-13.3.12.tgz" + integrity sha512-auow1TKZx44ha1ia8Jwg2xp2Q7BbpShG5Ft8tewL3T44aTmJY7svWOE/m+DkZ/SXHmTFnbZFobGU5aEfe0+pNw== + dependencies: + tslib "^2.3.0" + +"@angular/language-service@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/language-service/-/language-service-13.3.12.tgz" + integrity sha512-h4zYAmDLxR3DfqfHgOwxuiuX1WDYpYCYwVRYKmk4Mo2AtrRyNwQmkktPgpOFDK9F3gSZ35hbXniuSZbvyy53+g== + +"@angular/material-moment-adapter@6.4.7": + version "6.4.7" + resolved "https://registry.npmjs.org/@angular/material-moment-adapter/-/material-moment-adapter-6.4.7.tgz" + integrity sha512-OGdDtpu/yRioOQXhJFCNuiOF2OgiL9VUj8ewFPi1lDtFGUFfVwU2h3hWkKLn+yuPW+DBVYla11tCNsn5dLElmA== + dependencies: + tslib "^1.7.1" + +"@angular/material@13.3.9", "@angular/material@6.4.7": + version "13.3.9" + resolved "https://registry.npmjs.org/@angular/material/-/material-13.3.9.tgz" + integrity sha512-FU8lcMgo+AL8ckd27B4V097ZPoIZNRHiCe3wpgkImT1qC0YwcyXZVn0MqQTTFSdC9a/aI8wPm3AbTClJEVw5Vw== + dependencies: + tslib "^2.3.0" + +"@angular/platform-browser-dynamic@>=2.0.0", "@angular/platform-browser-dynamic@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-13.3.12.tgz" + integrity sha512-/hBggov0PxK/KNJqIu3MVc5k8f0iDbygDP8Z1k/J0FcllOSRdO4LsQd1fsCfGfwIUf0YWGyD7KraSGpBBiWlFg== + dependencies: + tslib "^2.3.0" + +"@angular/platform-browser@^13.0.0 || ^14.0.0-0", "@angular/platform-browser@>=9.1.5", "@angular/platform-browser@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.12.tgz" + integrity sha512-sfhQqU4xjTJCjkH62TQeH5/gkay/KzvNDF95J6NHi/Q6p2dbtzZdXuLJKR/sHxtF2kc505z5v9RNm6XMSXM1KA== + dependencies: + tslib "^2.3.0" + +"@angular/router@>=5.0.0", "@angular/router@13.3.12": + version "13.3.12" + resolved "https://registry.npmjs.org/@angular/router/-/router-13.3.12.tgz" + integrity sha512-X+TAxTAlqUd2gPm6drFBGVzQsbQWM5wmZ8S5D5i+86x7Ku0v2CUFICT6AUPSl9+FTPiexlL4FdmvQV2CnGTSUw== + dependencies: + tslib "^2.3.0" + +"@assemblyscript/loader@^0.10.1": + version "0.10.1" + resolved "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz" + integrity sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg== + +"@asymmetrik/ngx-leaflet@4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@asymmetrik/ngx-leaflet/-/ngx-leaflet-4.0.0.tgz" + integrity sha512-DT+uOaysb01Egmhd58ftR6BOKI0JD7Uwt8/g6uRthFKGjWwmnOpmXJpPa2eF/lEhl2DAHx61XqJK2t/fmIlmJA== + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.24.7": + version "7.24.7" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + +"@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.25.2": + version "7.25.2" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz" + integrity sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ== + +"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.12.0", "@babel/core@^7.12.3", "@babel/core@^7.13.0", "@babel/core@^7.17.2", "@babel/core@^7.4.0-0": + version "7.25.2" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz" + integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.0" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-module-transforms" "^7.25.2" + "@babel/helpers" "^7.25.0" + "@babel/parser" "^7.25.0" + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.2" + "@babel/types" "^7.25.2" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/core@7.16.12": + version "7.16.12" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz" + integrity sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.16.8" + "@babel/helper-compilation-targets" "^7.16.7" + "@babel/helper-module-transforms" "^7.16.7" + "@babel/helpers" "^7.16.7" + "@babel/parser" "^7.16.12" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.16.10" + "@babel/types" "^7.16.8" + 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@^7.16.8", "@babel/generator@7.16.8": + version "7.16.8" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz" + integrity sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw== + dependencies: + "@babel/types" "^7.16.8" + jsesc "^2.5.1" + source-map "^0.5.0" + +"@babel/generator@^7.25.0", "@babel/generator@^7.4.0": + version "7.25.0" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz" + integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw== + dependencies: + "@babel/types" "^7.25.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-annotate-as-pure@7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz" + integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz" + integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.18.6" + "@babel/types" "^7.18.9" + +"@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.25.2": + version "7.25.2" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz" + integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== + dependencies: + "@babel/compat-data" "^7.25.2" + "@babel/helper-validator-option" "^7.24.8" + browserslist "^4.23.1" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.5", "@babel/helper-create-class-features-plugin@^7.20.7": + version "7.20.12" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz" + integrity sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-member-expression-to-functions" "^7.20.7" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/helper-split-export-declaration" "^7.18.6" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz" + integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + regexpu-core "^5.2.1" + +"@babel/helper-define-polyfill-provider@^0.3.1", "@babel/helper-define-polyfill-provider@^0.3.2", "@babel/helper-define-polyfill-provider@^0.3.3": + version "0.3.3" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz" + integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== + dependencies: + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + +"@babel/helper-explode-assignable-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz" + integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-function-name@^7.18.9": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz" + integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== + dependencies: + "@babel/template" "^7.18.10" + "@babel/types" "^7.19.0" + +"@babel/helper-function-name@^7.19.0": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz" + integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== + dependencies: + "@babel/template" "^7.18.10" + "@babel/types" "^7.19.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-member-expression-to-functions@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz" + integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw== + dependencies: + "@babel/types" "^7.20.7" + +"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.24.7": + version "7.24.7" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz" + integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-module-transforms@^7.16.7", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.25.2": + version "7.25.2" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz" + integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-simple-access" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + "@babel/traverse" "^7.25.2" + +"@babel/helper-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz" + integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== + +"@babel/helper-plugin-utils@^7.18.6": + version "7.20.2" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + +"@babel/helper-plugin-utils@^7.18.9": + version "7.20.2" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + +"@babel/helper-plugin-utils@^7.20.2": + version "7.20.2" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + +"@babel/helper-remap-async-to-generator@^7.16.8": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" + +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz" + integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.20.7" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/helper-simple-access@^7.20.2", "@babel/helper-simple-access@^7.24.7": + version "7.24.7" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz" + integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": + version "7.20.0" + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== + dependencies: + "@babel/types" "^7.20.0" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.24.8": + version "7.24.8" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz" + integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== + +"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/helper-validator-option@^7.16.7", "@babel/helper-validator-option@^7.24.8": + version "7.24.8" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz" + integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== + +"@babel/helper-wrap-function@^7.18.9": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz" + integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== + dependencies: + "@babel/helper-function-name" "^7.19.0" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" + +"@babel/helpers@^7.16.7", "@babel/helpers@^7.25.0": + version "7.25.0" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz" + integrity sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw== + dependencies: + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.0" + +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.12", "@babel/parser@^7.16.7", "@babel/parser@^7.20.7", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3", "@babel/parser@^7.4.3": + version "7.25.3" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz" + integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw== + dependencies: + "@babel/types" "^7.25.2" + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7": + version "7.18.6" + 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.18.6.tgz" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz" + integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.7" + +"@babel/plugin-proposal-async-generator-functions@^7.16.8", "@babel/plugin-proposal-async-generator-functions@7.16.8": + version "7.16.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz" + integrity sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ== + dependencies: + "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-remap-async-to-generator" "^7.16.8" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-class-static-block@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz" + integrity sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-dynamic-import@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.16.7": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" + +"@babel/plugin-proposal-optional-catch-binding@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.16.7", "@babel/plugin-proposal-optional-chaining@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz" + integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.16.11": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.16.7": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz" + integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.16.7", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.4": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-json-strings@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + 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== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-arrow-functions@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz" + integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-async-to-generator@^7.16.8", "@babel/plugin-transform-async-to-generator@7.16.8": + version "7.16.8" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz" + integrity sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg== + dependencies: + "@babel/helper-module-imports" "^7.16.7" + "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-remap-async-to-generator" "^7.16.8" + +"@babel/plugin-transform-block-scoped-functions@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-block-scoping@^7.16.7": + version "7.20.15" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz" + integrity sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-classes@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz" + integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-split-export-declaration" "^7.18.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz" + integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/template" "^7.20.7" + +"@babel/plugin-transform-destructuring@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz" + integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-duplicate-keys@^7.16.7": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-exponentiation-operator@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-for-of@^7.16.7": + version "7.18.8" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz" + integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-function-name@^7.16.7": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== + dependencies: + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-literals@^7.16.7": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-member-expression-literals@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-modules-amd@^7.16.7": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz" + integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== + dependencies: + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-modules-commonjs@^7.16.8": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz" + integrity sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw== + dependencies: + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-simple-access" "^7.20.2" + +"@babel/plugin-transform-modules-systemjs@^7.16.7": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz" + integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== + dependencies: + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-identifier" "^7.19.1" + +"@babel/plugin-transform-modules-umd@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + dependencies: + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.16.8": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz" + integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-new-target@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-object-super@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" + +"@babel/plugin-transform-parameters@^7.16.7", "@babel/plugin-transform-parameters@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz" + integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-property-literals@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-regenerator@^7.16.7": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz" + integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + regenerator-transform "^0.15.1" + +"@babel/plugin-transform-reserved-words@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-runtime@7.16.10": + version "7.16.10" + resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.10.tgz" + integrity sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w== + dependencies: + "@babel/helper-module-imports" "^7.16.7" + "@babel/helper-plugin-utils" "^7.16.7" + babel-plugin-polyfill-corejs2 "^0.3.0" + babel-plugin-polyfill-corejs3 "^0.5.0" + babel-plugin-polyfill-regenerator "^0.3.0" + semver "^6.3.0" + +"@babel/plugin-transform-shorthand-properties@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-spread@^7.16.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz" + integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + +"@babel/plugin-transform-sticky-regex@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-template-literals@^7.16.7": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typeof-symbol@^7.16.7": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-escapes@^7.16.7": + version "7.18.10" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz" + integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-regex@^7.16.7": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/preset-env@7.16.11": + version "7.16.11" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz" + integrity sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g== + dependencies: + "@babel/compat-data" "^7.16.8" + "@babel/helper-compilation-targets" "^7.16.7" + "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-validator-option" "^7.16.7" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7" + "@babel/plugin-proposal-async-generator-functions" "^7.16.8" + "@babel/plugin-proposal-class-properties" "^7.16.7" + "@babel/plugin-proposal-class-static-block" "^7.16.7" + "@babel/plugin-proposal-dynamic-import" "^7.16.7" + "@babel/plugin-proposal-export-namespace-from" "^7.16.7" + "@babel/plugin-proposal-json-strings" "^7.16.7" + "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7" + "@babel/plugin-proposal-numeric-separator" "^7.16.7" + "@babel/plugin-proposal-object-rest-spread" "^7.16.7" + "@babel/plugin-proposal-optional-catch-binding" "^7.16.7" + "@babel/plugin-proposal-optional-chaining" "^7.16.7" + "@babel/plugin-proposal-private-methods" "^7.16.11" + "@babel/plugin-proposal-private-property-in-object" "^7.16.7" + "@babel/plugin-proposal-unicode-property-regex" "^7.16.7" + "@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.7" + "@babel/plugin-transform-async-to-generator" "^7.16.8" + "@babel/plugin-transform-block-scoped-functions" "^7.16.7" + "@babel/plugin-transform-block-scoping" "^7.16.7" + "@babel/plugin-transform-classes" "^7.16.7" + "@babel/plugin-transform-computed-properties" "^7.16.7" + "@babel/plugin-transform-destructuring" "^7.16.7" + "@babel/plugin-transform-dotall-regex" "^7.16.7" + "@babel/plugin-transform-duplicate-keys" "^7.16.7" + "@babel/plugin-transform-exponentiation-operator" "^7.16.7" + "@babel/plugin-transform-for-of" "^7.16.7" + "@babel/plugin-transform-function-name" "^7.16.7" + "@babel/plugin-transform-literals" "^7.16.7" + "@babel/plugin-transform-member-expression-literals" "^7.16.7" + "@babel/plugin-transform-modules-amd" "^7.16.7" + "@babel/plugin-transform-modules-commonjs" "^7.16.8" + "@babel/plugin-transform-modules-systemjs" "^7.16.7" + "@babel/plugin-transform-modules-umd" "^7.16.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8" + "@babel/plugin-transform-new-target" "^7.16.7" + "@babel/plugin-transform-object-super" "^7.16.7" + "@babel/plugin-transform-parameters" "^7.16.7" + "@babel/plugin-transform-property-literals" "^7.16.7" + "@babel/plugin-transform-regenerator" "^7.16.7" + "@babel/plugin-transform-reserved-words" "^7.16.7" + "@babel/plugin-transform-shorthand-properties" "^7.16.7" + "@babel/plugin-transform-spread" "^7.16.7" + "@babel/plugin-transform-sticky-regex" "^7.16.7" + "@babel/plugin-transform-template-literals" "^7.16.7" + "@babel/plugin-transform-typeof-symbol" "^7.16.7" + "@babel/plugin-transform-unicode-escapes" "^7.16.7" + "@babel/plugin-transform-unicode-regex" "^7.16.7" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.16.8" + babel-plugin-polyfill-corejs2 "^0.3.0" + babel-plugin-polyfill-corejs3 "^0.5.0" + babel-plugin-polyfill-regenerator "^0.3.0" + core-js-compat "^3.20.2" + semver "^6.3.0" + +"@babel/preset-modules@^0.1.5": + 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== + 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" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.8.4", "@babel/runtime@7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz" + integrity sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.16.7", "@babel/template@^7.4.0", "@babel/template@7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz" + integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/types" "^7.16.7" + +"@babel/template@^7.18.10": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/template@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/template@^7.25.0": + version "7.25.0" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz" + integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.25.0" + "@babel/types" "^7.25.0" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.16.10", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.24.7", "@babel/traverse@^7.25.2", "@babel/traverse@^7.4.3": + version "7.25.3" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz" + integrity sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.0" + "@babel/parser" "^7.25.3" + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.2" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": + version "7.25.2" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz" + integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q== + dependencies: + "@babel/helper-string-parser" "^7.24.8" + "@babel/helper-validator-identifier" "^7.24.7" + to-fast-properties "^2.0.0" + +"@cnakazawa/watch@^1.0.3": + version "1.0.4" + resolved "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + +"@csstools/postcss-progressive-custom-properties@^1.1.0": + version "1.3.0" + resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz" + integrity sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/selector-specificity@^2.0.0": + version "2.1.1" + resolved "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz" + integrity sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw== + +"@discoveryjs/json-ext@0.5.6": + version "0.5.6" + resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz" + integrity sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA== + +"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz" + integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^24.7.1", "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== + dependencies: + "@jest/source-map" "^24.9.0" + chalk "^2.0.1" + slash "^2.0.0" + +"@jest/core@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz" + integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== + dependencies: + "@jest/console" "^24.7.1" + "@jest/reporters" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-changed-files "^24.9.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-resolve-dependencies "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + jest-watcher "^24.9.0" + micromatch "^3.1.10" + p-each-series "^1.0.0" + realpath-native "^1.1.0" + rimraf "^2.5.4" + slash "^2.0.0" + strip-ansi "^5.0.0" + +"@jest/environment@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz" + integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== + dependencies: + "@jest/fake-timers" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + +"@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + +"@jest/reporters@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz" + integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + istanbul-lib-coverage "^2.0.2" + istanbul-lib-instrument "^3.0.1" + istanbul-lib-report "^2.0.4" + istanbul-lib-source-maps "^3.0.1" + istanbul-reports "^2.2.6" + jest-haste-map "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.6.0" + node-notifier "^5.4.2" + slash "^2.0.0" + source-map "^0.6.0" + string-length "^2.0.0" + +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.1.15" + source-map "^0.6.0" + +"@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== + dependencies: + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/istanbul-lib-coverage" "^2.0.0" + +"@jest/test-sequencer@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz" + integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== + dependencies: + "@jest/test-result" "^24.9.0" + jest-haste-map "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + +"@jest/transform@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz" + integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^24.9.0" + babel-plugin-istanbul "^5.1.0" + chalk "^2.0.1" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.1.15" + jest-haste-map "^24.9.0" + jest-regex-util "^24.9.0" + jest-util "^24.9.0" + micromatch "^3.1.10" + pirates "^4.0.1" + realpath-native "^1.1.0" + slash "^2.0.0" + source-map "^0.6.1" + write-file-atomic "2.4.1" + +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^13.0.0" + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.0": + version "0.3.2" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1", "@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/source-map@^0.3.2": + version "0.3.2" + resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz" + integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.25" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@kurkle/color@^0.3.0": + version "0.3.2" + resolved "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz" + integrity sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw== + +"@mattlewis92/dom-autoscroller@^2.4.2": + version "2.4.2" + resolved "https://registry.npmjs.org/@mattlewis92/dom-autoscroller/-/dom-autoscroller-2.4.2.tgz" + integrity sha512-YbrUWREPGEjE/FU6foXcAT1YbVwqD/jkYnY1dFb0o4AxtP3s4xKBthlELjndZih8uwsDWgQZx1eNskRNe2BgZQ== + +"@ngtools/webpack@13.3.10": + version "13.3.10" + resolved "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.10.tgz" + integrity sha512-QQ8ELLqW5PtvrEAMt99D0s982NW303k8UpZrQoQ9ODgnSVDMdbbzFPNTXq/20dg+nbp8nlOakUrkjB47TBwTNA== + +"@ngx-loading-bar/core@2.2.0": + version "2.2.0" + resolved "https://registry.npmjs.org/@ngx-loading-bar/core/-/core-2.2.0.tgz" + integrity sha512-0jcnEzuhqE/c+4iAumJ/0D4GBWm4RRVas0+qXpX4Wm225SJoE5KupUOlMrvLnJNK2bn8NW31dEj80kJ+UzhE5A== + dependencies: + tslib "^1.7.1" + +"@ngx-loading-bar/router@2.2.0": + version "2.2.0" + resolved "https://registry.npmjs.org/@ngx-loading-bar/router/-/router-2.2.0.tgz" + integrity sha512-/lrWc0ZwGcpmuoa26/h0rC7SRVKgCtsikhy0mVXwrb1VVJ+sRU8vNKbq7aidcvEY5vdi3l0Z7DcVq9+JV/i/BQ== + dependencies: + "@ngx-loading-bar/core" "2.2.0" + tslib "^1.7.1" + +"@ngx-translate/core@>=10.0.0", "@ngx-translate/core@10.0.2": + version "10.0.2" + resolved "https://registry.npmjs.org/@ngx-translate/core/-/core-10.0.2.tgz" + integrity sha512-7nM3DrJaqKswwtJlbu2kuKNl+hE8Isr18sKsKvGGpSxQk+G0gO0reDlx2PhUNus7TJTkA1C59vU/JoN8hIvZ4g== + dependencies: + tslib "^1.9.0" + +"@ngx-translate/http-loader@3.0.1": + version "3.0.1" + resolved "https://registry.npmjs.org/@ngx-translate/http-loader/-/http-loader-3.0.1.tgz" + integrity sha1-ILD5i8bCUyESnT4zAqs8xInApCo= + dependencies: + tslib "^1.9.0" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": + version "2.0.5" + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@npmcli/fs@^1.0.0": + version "1.1.1" + resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz" + integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== + dependencies: + "@gar/promisify" "^1.0.1" + semver "^7.3.5" + +"@npmcli/fs@^2.1.0": + version "2.1.2" + resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz" + integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== + dependencies: + "@gar/promisify" "^1.1.3" + semver "^7.3.5" + +"@npmcli/git@^2.1.0": + version "2.1.0" + resolved "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz" + integrity sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw== + 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" + +"@npmcli/installed-package-contents@^1.0.6": + version "1.0.7" + resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz" + integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw== + dependencies: + npm-bundled "^1.1.1" + npm-normalize-package-bin "^1.0.1" + +"@npmcli/move-file@^1.0.1": + version "1.1.2" + resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz" + integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/move-file@^2.0.0": + version "2.0.1" + resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz" + integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/node-gyp@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz" + integrity sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA== + +"@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2": + version "1.3.2" + resolved "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz" + integrity sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg== + dependencies: + infer-owner "^1.0.4" + +"@npmcli/run-script@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-2.0.0.tgz" + integrity sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig== + dependencies: + "@npmcli/node-gyp" "^1.0.2" + "@npmcli/promise-spawn" "^1.3.2" + node-gyp "^8.2.0" + read-package-json-fast "^2.0.1" + +"@popperjs/core@^2.10.2", "@popperjs/core@^2.9.1": + version "2.11.4" + resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.4.tgz" + integrity sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg== + +"@schematics/angular@13.3.10": + version "13.3.10" + resolved "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.10.tgz" + integrity sha512-sw6K8YihfcqNyfa2/65ACPixZHQJRBw1aNm8w0DRGFyO3aXRe9G5X23MkCMLH+63oK9R1cK63/fZ8zqfdSq7zA== + dependencies: + "@angular-devkit/core" "13.3.10" + "@angular-devkit/schematics" "13.3.10" + jsonc-parser "3.0.0" + +"@sisitech/cards@0.0.4", "@sisitech/cards@0.0.7": + version "0.0.7" + resolved "https://npm.pkg.github.com/download/@sisitech/cards/0.0.7/5b39700165a6b0f0d3dc7c79a47ca3b58beda8ab" + integrity sha512-tH/b4zZ4uuyR3267lOW1iKGe0AI4ktny3tHxJgFd+Ub1J/zXfAWQdWRS2/aoGKcyOX8OlUsbk0jHg5bNmQXNhg== + dependencies: + tslib "^2.3.0" + +"@sisitech/charts@^0.4.9": + version "0.4.9" + resolved "https://npm.pkg.github.com/download/@sisitech/charts/0.4.9/401e18143d464f959d23ef7a210128ae5f06b2e5" + integrity sha512-Y5UEOpafQWLG4qtepuNprsIl2mR8Ow14OQuYq8l5WaGYZyftejmR/aY+F7AogmdcN62FbYK+1N/K1NlRFGHODw== + dependencies: + tslib "^2.3.0" + +"@sisitech/myform@^0.3.1": + version "0.3.1" + resolved "https://npm.pkg.github.com/download/@sisitech/myform/0.3.1/1ab23fba0e122a4de58dae5df1b4c84051ceae7a" + integrity sha512-LujP861BVYH+yEC2qsBNrWtZeuZsM1BzaSpdzIY+SIjQ2ge6UgzCBzHljDRBSnlVkhcM6IJl71L5AGE2nk+JkA== + dependencies: + tslib "^2.3.0" + +"@sisitech/tables@^0.4.8": + version "0.4.8" + resolved "https://npm.pkg.github.com/download/@sisitech/tables/0.4.8/64572d605caa82b4d0a789031785eaf7d67316d9" + integrity sha512-Okd6GuZZep3jZUTynlqplSjbyw3/MqJM1xqVbVa4XDkcUeUPh/2cAFRAyxk6ZJ4iHwxbV0qpclJTmDl4LOk+hA== + dependencies: + tslib "^2.3.0" + +"@sisitech/utils@^0.3.2": + version "0.3.3" + resolved "https://npm.pkg.github.com/download/@sisitech/utils/0.3.3/7aaf2e2f69fa49e4d886f5695d711ddf7d812242" + integrity sha512-775/llEiH2aRF/Qt/fVHV6ED+4cqo4kyzJTHwrjngRoFybqVYXE9PMtbhlb8CuJEb9O1y/cmlZYXnuYdLMAdXA== + dependencies: + tslib "^2.3.0" + +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + +"@tootallnate/once@2": + version "2.0.0" + resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz" + integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== + +"@types/babel__core@^7.1.0": + version "7.1.19" + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz" + integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.14.2" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz" + integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== + dependencies: + "@babel/types" "^7.3.0" + +"@types/body-parser@*": + version "1.19.2" + resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz" + integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bonjour@^3.5.9": + version "3.5.10" + resolved "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz" + integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== + dependencies: + "@types/node" "*" + +"@types/chart.js@^2.9.24", "@types/chart.js@^2.9.40": + version "2.9.40" + resolved "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.40.tgz" + integrity sha512-ApIH2LIDXzKTNtG4oTMmn2CIII6lvRvxyKnmLb1zYFlwXtE4lTOb2ywgXQJYVuhgWpqaCSHSYOlzO+5gs6hL+A== + dependencies: + moment "^2.10.2" + +"@types/connect-history-api-fallback@^1.3.5": + 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== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/dragula@^2.1.33": + version "2.1.36" + resolved "https://registry.npmjs.org/@types/dragula/-/dragula-2.1.36.tgz" + integrity sha512-K1GIMqdiviBIvUsLJPO1xkjpDFS308nU2l57zmV7LEO+znF3gtZGnWQ+c/ef78r6Ngb0cniQk8pnNkObeNlXQQ== + +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "8.21.1" + resolved "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz" + integrity sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*", "@types/estree@^0.0.51": + version "0.0.51" + resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz" + integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": + version "4.17.33" + resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz" + integrity sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + +"@types/express@*", "@types/express@^4.17.13": + version "4.17.17" + resolved "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz" + integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/googlemaps@^3.37.6": + version "3.43.3" + resolved "https://registry.npmjs.org/@types/googlemaps/-/googlemaps-3.43.3.tgz" + integrity sha512-ZWNoz/O8MPEpiajvj7QiqCY8tTLFNqNZ/a+s+zTV58wFVNAvvqV4bdGfnsjTb5Cs4V6wEsLrX8XRhmnyYJ2Tdg== + +"@types/http-proxy@^1.17.8": + version "1.17.9" + resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz" + integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.4" + resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^1.1.1": + version "1.1.2" + resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz" + integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== + dependencies: + "@types/istanbul-lib-coverage" "*" + "@types/istanbul-lib-report" "*" + +"@types/jest@^24.0.15": + version "24.9.1" + resolved "https://registry.npmjs.org/@types/jest/-/jest-24.9.1.tgz" + integrity sha512-Fb38HkXSVA4L8fGKEZ6le5bB8r6MRWlOCZbVuWZcmOMSCd2wCYOwN1ibj8daIoV9naq7aaOZjrLCoCMptKU/4Q== + dependencies: + jest-diff "^24.3.0" + +"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/mime@*": + version "3.0.1" + resolved "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz" + integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== + +"@types/mixpanel-browser@^2.47.2": + version "2.47.2" + resolved "https://registry.npmjs.org/@types/mixpanel-browser/-/mixpanel-browser-2.47.2.tgz" + integrity sha512-8tRG6+uGcZps5HLRqXDkQ8Rm1WGNkpqQMvf4oCOsejDWyKBFbdKqtBddc1vhI4DhMt1VXeGuk95xCQq329Y++A== + +"@types/node@*", "@types/node@^12.11.1": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/q@^0.0.32": + version "0.0.32" + resolved "https://registry.npmjs.org/@types/q/-/q-0.0.32.tgz" + integrity sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug== + +"@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== + +"@types/quill@1.3.3": + version "1.3.3" + resolved "https://registry.npmjs.org/@types/quill/-/quill-1.3.3.tgz" + integrity sha512-QngAyrmDusY3Jg3SwUWDMPPSE7HbErJTTj1K6fMkKkopUyp/JWuATyb2/wK7RaFJ886oSR6s6vjsL/fRAV7Xyw== + +"@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== + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + +"@types/selenium-webdriver@^3.0.0": + version "3.0.20" + resolved "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.20.tgz" + integrity sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA== + +"@types/serve-index@^1.9.1": + version "1.9.1" + resolved "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz" + integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== + dependencies: + "@types/express" "*" + +"@types/serve-static@*": + version "1.15.0" + resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz" + integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg== + dependencies: + "@types/mime" "*" + "@types/node" "*" + +"@types/sockjs@^0.3.33": + version "0.3.33" + resolved "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz" + integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== + dependencies: + "@types/node" "*" + +"@types/stack-utils@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz" + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== + +"@types/ws@^8.2.2": + version "8.5.4" + resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz" + integrity sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg== + dependencies: + "@types/node" "*" + +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^13.0.0": + version "13.0.12" + resolved "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz" + integrity sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ== + dependencies: + "@types/yargs-parser" "*" + +"@webassemblyjs/ast@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz" + integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + +"@webassemblyjs/floating-point-hex-parser@1.11.1": + 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== + +"@webassemblyjs/helper-api-error@1.11.1": + 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== + +"@webassemblyjs/helper-buffer@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz" + integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== + +"@webassemblyjs/helper-numbers@1.11.1": + 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== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.1": + 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== + +"@webassemblyjs/helper-wasm-section@1.11.1": + 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== + 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" + +"@webassemblyjs/ieee754@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz" + integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz" + integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz" + integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== + +"@webassemblyjs/wasm-edit@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz" + integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== + 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" + +"@webassemblyjs/wasm-gen@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz" + integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== + 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" + +"@webassemblyjs/wasm-opt@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz" + integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== + dependencies: + "@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@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz" + integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== + 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" + +"@webassemblyjs/wast-printer@1.11.1": + version "1.11.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz" + integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +"@yarnpkg/lockfile@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + +abab@^2.0.0, abab@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" + integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== + +abbrev@1: + version "1.1.1" + resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-globals@^4.1.0, acorn-globals@^4.3.0: + version "4.3.4" + resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-import-assertions@^1.7.6: + version "1.8.0" + resolved "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz" + integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== + +acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== + +acorn@^5.5.3: + version "5.7.4" + resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz" + integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== + +acorn@^6.0.1: + version "6.4.2" + resolved "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + +acorn@^6.0.4: + version "6.4.2" + resolved "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + +acorn@^8, acorn@^8.4.1, acorn@^8.5.0: + version "8.12.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== + +adjust-sourcemap-loader@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz" + integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A== + dependencies: + loader-utils "^2.0.0" + regex-parser "^2.2.11" + +adm-zip@^0.5.2: + version "0.5.10" + resolved "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz" + integrity sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ== + +agent-base@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz" + integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== + dependencies: + es6-promisify "^5.0.0" + +agent-base@^6.0.2, agent-base@6: + version "6.0.2" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +agentkeepalive@^4.1.3, agentkeepalive@^4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz" + integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== + dependencies: + debug "^4.1.0" + depd "^1.1.2" + humanize-ms "^1.2.1" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv-formats@^2.1.1, ajv-formats@2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + +ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv-keywords@^5.0.0: + version "5.1.0" + resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@^6.12.3, ajv@^6.9.1: + version "6.12.3" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz" + integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== + 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" + +ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + 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" + +ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + 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" + +ajv@^8.0.0: + version "8.12.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ajv@^8.8.0, ajv@^8.8.2: + version "8.12.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ajv@8.9.0: + version "8.9.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz" + integrity sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +angular-calendar@0.26.0: + version "0.26.0" + resolved "https://registry.npmjs.org/angular-calendar/-/angular-calendar-0.26.0.tgz" + integrity sha512-ZTf0u/uxBo8T0a4CzoBrU3/F0YmdpvoaNt99CbgUqwGQ17YPJM8N1G9dBSh2FWQfeO7aGslgb9TOQlhKHqTQQQ== + dependencies: + angular-draggable-droppable "^4.0.1" + angular-resizable-element "^3.2.2" + calendar-utils "^0.2.0" + positioning "^1.4.0" + tslib "^1.9.0" + +angular-draggable-droppable@^4.0.1: + version "4.6.0" + resolved "https://registry.npmjs.org/angular-draggable-droppable/-/angular-draggable-droppable-4.6.0.tgz" + integrity sha512-+8JhTDMKkc/NuFFqb8/H/QHpB+v4Z7YNrgvEbV+PQxXry19rkr89ofZgjNIXhZexTvJNb03BYlSQoknzXE9b3g== + dependencies: + "@mattlewis92/dom-autoscroller" "^2.4.2" + tslib "^1.9.0" + +angular-resizable-element@^3.2.2: + version "3.4.0" + resolved "https://registry.npmjs.org/angular-resizable-element/-/angular-resizable-element-3.4.0.tgz" + integrity sha512-xL5a8FmghzrZmHPy7uwWz98m91gRXgAcdeCRYcK/nD7psXMTYNk5EPmHA0qZTDCIYljhT4h0OKWLvx56NQGfDA== + dependencies: + tslib "^1.9.0" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-escapes@^3.0.0: + version "3.2.0" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-html-community@^0.0.8: + 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== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + 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== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +app-root-path@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz" + integrity sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA== + +"aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +are-we-there-yet@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz" + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +aria-query@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz" + integrity sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw== + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz" + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= + +array-flatten@^2.1.0: + version "2.1.2" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" + integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" + integrity sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== + dependencies: + array-uniq "^1.0.1" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array-union@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz" + integrity sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw== + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@^1.0.0, assert-plus@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +ast-types-flow@0.0.7: + version "0.0.7" + resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^2.6.4: + version "2.6.4" + resolved "https://registry.npmjs.org/async/-/async-2.6.4.tgz" + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +atoa@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/atoa/-/atoa-1.0.0.tgz" + integrity sha1-DMDpGkgOc4+SPrwQNnZHF3mzSkk= + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +autoprefixer@^10.4.2: + version "10.4.13" + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz" + integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== + dependencies: + browserslist "^4.21.4" + caniuse-lite "^1.0.30001426" + fraction.js "^4.2.0" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.11.0" + resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz" + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + +axobject-query@2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz" + integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww== + dependencies: + ast-types-flow "0.0.7" + +babel-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz" + integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== + dependencies: + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/babel__core" "^7.1.0" + babel-plugin-istanbul "^5.1.0" + babel-preset-jest "^24.9.0" + chalk "^2.4.2" + slash "^2.0.0" + +babel-loader@8.2.5: + version "8.2.5" + resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz" + integrity sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== + dependencies: + find-cache-dir "^3.3.1" + loader-utils "^2.0.0" + make-dir "^3.1.0" + schema-utils "^2.6.5" + +babel-plugin-istanbul@^5.1.0: + version "5.2.0" + resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz" + integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + find-up "^3.0.0" + istanbul-lib-instrument "^3.3.0" + test-exclude "^5.2.3" + +babel-plugin-istanbul@6.1.1: + version "6.1.1" + resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz" + integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== + dependencies: + "@types/babel__traverse" "^7.0.6" + +babel-plugin-polyfill-corejs2@^0.3.0: + version "0.3.3" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz" + integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== + dependencies: + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.3.3" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.5.0: + version "0.5.3" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz" + integrity sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.2" + core-js-compat "^3.21.0" + +babel-plugin-polyfill-regenerator@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz" + integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.1" + +babel-preset-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz" + integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== + dependencies: + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + babel-plugin-jest-hoist "^24.9.0" + +babel-runtime@^6.6.1: + version "6.26.0" + resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + 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" + +base64-js@^1.2.0, base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +blocking-proxy@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz" + integrity sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA== + dependencies: + minimist "^1.2.0" + +bluebird@^3.4.6: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz" + integrity sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg== + 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" + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +bootstrap@^5.1.3: + version "5.1.3" + resolved "https://registry.npmjs.org/bootstrap/-/bootstrap-5.1.3.tgz" + integrity sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^2.3.1: + version "2.3.2" + resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + 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" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + +browser-resolve@^1.11.3: + version "1.11.3" + resolved "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== + dependencies: + resolve "1.1.7" + +browserslist@^4.14.5, browserslist@^4.19.1, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.23.1, browserslist@^4.9.1, "browserslist@>= 4.21.0": + version "4.23.3" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz" + integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== + dependencies: + caniuse-lite "^1.0.30001646" + electron-to-chromium "^1.5.4" + node-releases "^2.0.18" + update-browserslist-db "^1.1.0" + +browserstack@^1.5.1: + version "1.6.1" + resolved "https://registry.npmjs.org/browserstack/-/browserstack-1.6.1.tgz" + integrity sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw== + dependencies: + https-proxy-agent "^2.2.1" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0, buffer-from@1.x: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-indexof@^1.0.0: + 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== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +builtin-modules@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" + integrity sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ== + +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz" + integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +cacache@^15.0.5, cacache@^15.2.0, cacache@15.3.0: + version "15.3.0" + resolved "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz" + integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== + 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" + +cacache@^16.1.0: + version "16.1.3" + resolved "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz" + integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== + dependencies: + "@npmcli/fs" "^2.1.0" + "@npmcli/move-file" "^2.0.0" + chownr "^2.0.0" + fs-minipass "^2.1.0" + glob "^8.0.1" + infer-owner "^1.0.4" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + mkdirp "^1.0.4" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^9.0.0" + tar "^6.1.11" + unique-filename "^2.0.0" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + 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" + +calendar-utils@^0.2.0: + version "0.2.3" + resolved "https://registry.npmjs.org/calendar-utils/-/calendar-utils-0.2.3.tgz" + integrity sha512-wXxvJX/fdVZqrHeyxEWq5kbwALXrjifbY2L3fXvuS815cCwoWv+Uuiu0jkfqZNTtOSKaTXHdMkIhmLRqcC0E5g== + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caniuse-lite@^1.0.30001299, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001646: + version "1.0.30001651" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz" + integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg== + +capture-exit@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== + dependencies: + rsvp "^4.8.4" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + 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" + +chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.1.1: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +chart.js@^2.9.3, chart.js@^4.0.1: + version "4.4.0" + resolved "https://registry.npmjs.org/chart.js/-/chart.js-4.4.0.tgz" + integrity sha512-vQEj6d+z0dcsKLlQvbKIMYFHd3t8W/7L2vfJIbYcfyPcRx92CsHqECpueN8qVGNlKyDcr5wBrYAYKnfu/9Q1hQ== + dependencies: + "@kurkle/color" "^0.3.0" + +chokidar@^3.0.0, chokidar@^3.5.2, "chokidar@>=3.0.0 <4.0.0": + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +chrome-trace-event@^1.0.2: + 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== + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +circular-dependency-plugin@5.2.2: + version "5.2.2" + resolved "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz" + integrity sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ== + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-spinners@^2.5.0: + version "2.7.0" + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz" + integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +clone@^2.1.1: + version "2.1.2" + resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" + integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + +codelyzer@^6.0.0: + version "6.0.2" + resolved "https://registry.npmjs.org/codelyzer/-/codelyzer-6.0.2.tgz" + integrity sha512-v3+E0Ucu2xWJMOJ2fA/q9pDT/hlxHftHGPUay1/1cTgyPV5JTHFdO9hqo837Sx2s9vKBMTt5gO+lhF95PO6J+g== + dependencies: + "@angular/compiler" "9.0.0" + "@angular/core" "9.0.0" + app-root-path "^3.0.0" + aria-query "^3.0.0" + axobject-query "2.0.2" + css-selector-tokenizer "^0.7.1" + cssauron "^1.4.0" + damerau-levenshtein "^1.0.4" + rxjs "^6.5.3" + semver-dsl "^1.0.1" + source-map "^0.5.7" + sprintf-js "^1.1.2" + tslib "^1.10.0" + zone.js "~0.10.3" + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +colorette@^2.0.10: + version "2.0.19" + resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz" + integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.11.0, commander@^2.12.1, commander@^2.20.0, commander@2: + 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== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + 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" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +connect-history-api-fallback@^1.6.0: + 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== + +console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +contra@1.9.4: + version "1.9.4" + resolved "https://registry.npmjs.org/contra/-/contra-1.9.4.tgz" + integrity sha1-9TveQtfltZhcrk2ZqNYQUm3o8o0= + dependencies: + atoa "1.0.0" + ticky "1.0.1" + +convert-source-map@^1.4.0, convert-source-map@^1.5.1, convert-source-map@^1.7.0: + 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== + dependencies: + safe-buffer "~5.1.1" + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +copy-anything@^2.0.1: + version "2.0.6" + resolved "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz" + integrity sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw== + dependencies: + is-what "^3.14.1" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +copy-webpack-plugin@10.2.1: + version "10.2.1" + resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.1.tgz" + integrity sha512-nr81NhCAIpAWXGCK5thrKmfCQ6GDY0L5RN0U+BnIn/7Us55+UCex5ANNsNKmIVtDRnk0Ecf+/kzp9SUVrrBMLg== + dependencies: + fast-glob "^3.2.7" + glob-parent "^6.0.1" + globby "^12.0.2" + normalize-path "^3.0.0" + schema-utils "^4.0.0" + serialize-javascript "^6.0.0" + +core-js-compat@^3.20.2, core-js-compat@^3.21.0: + version "3.28.0" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz" + integrity sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg== + dependencies: + browserslist "^4.21.5" + +core-js@^2.4.0, "core-js@>=2.0.0 < 4.0.0", core-js@2.5.7: + version "2.5.7" + resolved "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz" + integrity sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw== + +core-js@3.20.3: + version "3.20.3" + resolved "https://registry.npmjs.org/core-js/-/core-js-3.20.3.tgz" + integrity sha512-vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +critters@0.0.16: + version "0.0.16" + resolved "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz" + integrity sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A== + dependencies: + chalk "^4.1.0" + css-select "^4.2.0" + parse5 "^6.0.1" + parse5-htmlparser2-tree-adapter "^6.0.1" + postcss "^8.3.7" + pretty-bytes "^5.3.0" + +cross-spawn@^6.0.0: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crossvent@1.5.4: + version "1.5.4" + resolved "https://registry.npmjs.org/crossvent/-/crossvent-1.5.4.tgz" + integrity sha1-2ixPj0DJR4JRe/K+7BBEFIGUq5I= + dependencies: + custom-event "1.0.0" + +css-blank-pseudo@^3.0.2: + version "3.0.3" + resolved "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz" + integrity sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ== + dependencies: + postcss-selector-parser "^6.0.9" + +css-has-pseudo@^3.0.3: + version "3.0.4" + resolved "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz" + integrity sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw== + dependencies: + postcss-selector-parser "^6.0.9" + +css-loader@6.5.1: + version "6.5.1" + resolved "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz" + integrity sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ== + dependencies: + icss-utils "^5.1.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" + semver "^7.3.5" + +css-prefers-color-scheme@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz" + integrity sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA== + +css-select@^4.2.0: + version "4.3.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-selector-tokenizer@^0.7.1: + version "0.7.3" + resolved "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz" + integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg== + dependencies: + cssesc "^3.0.0" + fastparse "^1.1.2" + +css-what@^6.0.1: + version "6.1.0" + resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +css@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/css/-/css-3.0.0.tgz" + integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ== + dependencies: + inherits "^2.0.4" + source-map "^0.6.1" + source-map-resolve "^0.6.0" + +cssauron@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz" + integrity sha512-Ht70DcFBh+/ekjVrYS2PlDMdSQEl3OFNmjK6lcn49HptBgilXf/Zwg4uFh9Xn0pX3Q8YOkSjIFOfK2osvdqpBw== + dependencies: + through X.X.X + +cssdb@^5.0.0: + version "5.1.0" + resolved "https://registry.npmjs.org/cssdb/-/cssdb-5.1.0.tgz" + integrity sha512-/vqjXhv1x9eGkE/zO6o8ZOI7dgdZbLVLUGyVRbPgk6YipXbW87YzUCcO+Jrmi5bwJlAH6oD+MNeZyRgXea1GZw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssom@^0.3.4, "cssom@>= 0.3.2 < 0.4.0", cssom@0.3.x: + version "0.3.8" + resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + +cssstyle@^1.0.0, cssstyle@^1.1.1: + version "1.4.0" + resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz" + integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== + dependencies: + cssom "0.3.x" + +custom-event@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/custom-event/-/custom-event-1.0.0.tgz" + integrity sha1-LkYovhncSyFLXAJjDFlx6BFhgGI= + +d3-array@^1.1.1, d3-array@^1.2.0, d3-array@1: + version "1.2.4" + resolved "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz" + integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== + +d3-axis@1: + version "1.0.12" + resolved "https://registry.npmjs.org/d3-axis/-/d3-axis-1.0.12.tgz" + integrity sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ== + +d3-brush@1: + version "1.1.6" + resolved "https://registry.npmjs.org/d3-brush/-/d3-brush-1.1.6.tgz" + integrity sha512-7RW+w7HfMCPyZLifTz/UnJmI5kdkXtpCbombUSs8xniAyo0vIbrDzDwUJB6eJOgl9u5DQOt2TQlYumxzD1SvYA== + dependencies: + d3-dispatch "1" + d3-drag "1" + d3-interpolate "1" + d3-selection "1" + d3-transition "1" + +d3-chord@1: + version "1.0.6" + resolved "https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz" + integrity sha512-JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA== + dependencies: + d3-array "1" + d3-path "1" + +d3-collection@1: + version "1.0.7" + resolved "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz" + integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== + +d3-color@1: + version "1.4.1" + resolved "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz" + integrity sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q== + +d3-contour@1: + version "1.3.2" + resolved "https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz" + integrity sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg== + dependencies: + d3-array "^1.1.1" + +d3-dispatch@1: + version "1.0.6" + resolved "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz" + integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA== + +d3-drag@1: + version "1.2.5" + resolved "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.5.tgz" + integrity sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w== + dependencies: + d3-dispatch "1" + d3-selection "1" + +d3-dsv@1: + version "1.2.0" + resolved "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz" + integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== + dependencies: + commander "2" + iconv-lite "0.4" + rw "1" + +d3-ease@1: + version "1.0.7" + resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.7.tgz" + integrity sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ== + +d3-fetch@1: + version "1.2.0" + resolved "https://registry.npmjs.org/d3-fetch/-/d3-fetch-1.2.0.tgz" + integrity sha512-yC78NBVcd2zFAyR/HnUiBS7Lf6inSCoWcSxFfw8FYL7ydiqe80SazNwoffcqOfs95XaLo7yebsmQqDKSsXUtvA== + dependencies: + d3-dsv "1" + +d3-force@1: + version "1.2.1" + resolved "https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz" + integrity sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg== + dependencies: + d3-collection "1" + d3-dispatch "1" + d3-quadtree "1" + d3-timer "1" + +d3-format@1: + version "1.4.5" + resolved "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz" + integrity sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ== + +d3-geo@1: + version "1.12.1" + resolved "https://registry.npmjs.org/d3-geo/-/d3-geo-1.12.1.tgz" + integrity sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg== + dependencies: + d3-array "1" + +d3-hierarchy@1: + version "1.1.9" + resolved "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz" + integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ== + +d3-interpolate@1: + version "1.4.0" + resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz" + integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA== + dependencies: + d3-color "1" + +d3-path@1: + version "1.0.9" + resolved "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz" + integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== + +d3-polygon@1: + version "1.0.6" + resolved "https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.6.tgz" + integrity sha512-k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ== + +d3-quadtree@1: + version "1.0.7" + resolved "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.7.tgz" + integrity sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA== + +d3-random@1: + version "1.1.2" + resolved "https://registry.npmjs.org/d3-random/-/d3-random-1.1.2.tgz" + integrity sha512-6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ== + +d3-scale-chromatic@1: + version "1.5.0" + resolved "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz" + integrity sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg== + dependencies: + d3-color "1" + d3-interpolate "1" + +d3-scale@2: + version "2.2.2" + resolved "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz" + integrity sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw== + dependencies: + d3-array "^1.2.0" + d3-collection "1" + d3-format "1" + d3-interpolate "1" + d3-time "1" + d3-time-format "2" + +d3-selection@^1.1.0, d3-selection@1: + version "1.4.2" + resolved "https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.2.tgz" + integrity sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg== + +d3-shape@1: + version "1.3.7" + resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz" + integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== + dependencies: + d3-path "1" + +d3-time-format@2: + version "2.3.0" + resolved "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz" + integrity sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ== + dependencies: + d3-time "1" + +d3-time@1: + version "1.1.0" + resolved "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz" + integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA== + +d3-timer@1: + version "1.0.10" + resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz" + integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw== + +d3-transition@1: + version "1.3.2" + resolved "https://registry.npmjs.org/d3-transition/-/d3-transition-1.3.2.tgz" + integrity sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA== + dependencies: + d3-color "1" + d3-dispatch "1" + d3-ease "1" + d3-interpolate "1" + d3-selection "^1.1.0" + d3-timer "1" + +d3-voronoi@1: + version "1.1.4" + resolved "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz" + integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg== + +d3-zoom@1: + version "1.8.3" + resolved "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.8.3.tgz" + integrity sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ== + dependencies: + d3-dispatch "1" + d3-drag "1" + d3-interpolate "1" + d3-selection "1" + d3-transition "1" + +d3@5.7.0: + version "5.7.0" + resolved "https://registry.npmjs.org/d3/-/d3-5.7.0.tgz" + integrity sha512-8KEIfx+dFm8PlbJN9PI0suazrZ41QcaAufsKE9PRcqYPWLngHIyWJZX96n6IQKePGgeSu0l7rtlueSSNq8Zc3g== + dependencies: + d3-array "1" + d3-axis "1" + d3-brush "1" + d3-chord "1" + d3-collection "1" + d3-color "1" + d3-contour "1" + d3-dispatch "1" + d3-drag "1" + d3-dsv "1" + d3-ease "1" + d3-fetch "1" + d3-force "1" + d3-format "1" + d3-geo "1" + d3-hierarchy "1" + d3-interpolate "1" + d3-path "1" + d3-polygon "1" + d3-quadtree "1" + d3-random "1" + d3-scale "2" + d3-scale-chromatic "1" + d3-selection "1" + d3-shape "1" + d3-time "1" + d3-time-format "2" + d3-timer "1" + d3-transition "1" + d3-voronoi "1" + d3-zoom "1" + +damerau-levenshtein@^1.0.4: + version "1.0.8" + resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +data-urls@^1.0.0, data-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +date-fns@1.29.0: + version "1.29.0" + resolved "https://registry.npmjs.org/date-fns/-/date-fns-1.29.0.tgz" + integrity sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw== + +debug@^2.2.0: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^2.3.3: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^3.2.6: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@4: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +deep-equal@^1.0.1: + version "1.1.1" + resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + 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" + +deep-is@~0.1.3: + 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== + +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + dependencies: + execa "^5.0.0" + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +del@^2.2.0: + version "2.2.2" + resolved "https://registry.npmjs.org/del/-/del-2.2.2.tgz" + integrity sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ== + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +del@^6.0.0: + version "6.1.1" + resolved "https://registry.npmjs.org/del/-/del-6.1.1.tgz" + integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== + dependencies: + globby "^11.0.1" + graceful-fs "^4.2.4" + is-glob "^4.0.1" + is-path-cwd "^2.2.0" + is-path-inside "^3.0.2" + p-map "^4.0.0" + rimraf "^3.0.2" + slash "^3.0.0" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +depd@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +dependency-graph@^0.11.0: + version "0.11.0" + resolved "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz" + integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz" + integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" + integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== + +dns-packet@^1.3.1: + version "1.3.4" + resolved "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz" + integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA== + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz" + integrity sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ== + dependencies: + buffer-indexof "^1.0.0" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +dragula@^3.7.2, dragula@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/dragula/-/dragula-3.7.2.tgz" + integrity sha1-SjXJ05gf+sGpScKcpyhQWOhzk84= + dependencies: + contra "1.9.4" + crossvent "1.5.4" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.5.4: + version "1.5.13" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz" + integrity sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q== + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +encoding@^0.1.12, encoding@^0.1.13: + version "0.1.13" + resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + +end-of-stream@^1.1.0: + 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== + dependencies: + once "^1.4.0" + +enhanced-resolve@^5.9.2: + version "5.12.0" + resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz" + integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +env-paths@^2.2.0: + version "2.2.1" + resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +errno@^0.1.1: + version "0.1.8" + resolved "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== + dependencies: + prr "~1.0.1" + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.1: + version "1.19.1" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz" + integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== + 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" + +es-module-lexer@^0.9.0: + version "0.9.3" + resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz" + integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz" + integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= + dependencies: + es6-promise "^4.0.3" + +esbuild-darwin-arm64@0.14.22: + version "0.14.22" + resolved "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.22.tgz" + integrity sha512-YAt9Tj3SkIUkswuzHxkaNlT9+sg0xvzDvE75LlBo4DI++ogSgSmKNR6B4eUhU5EUUepVXcXdRIdqMq9ppeRqfw== + +esbuild-wasm@0.14.22: + version "0.14.22" + resolved "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.14.22.tgz" + integrity sha512-FOSAM29GN1fWusw0oLMv6JYhoheDIh5+atC72TkJKfIUMID6yISlicoQSd9gsNSFsNBvABvtE2jR4JB1j4FkFw== + +esbuild@0.14.22: + version "0.14.22" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.14.22.tgz" + integrity sha512-CjFCFGgYtbFOPrwZNJf7wsuzesx8kqwAffOlbYcFDLFuUtP8xloK1GH+Ai13Qr0RZQf9tE7LMTHJ2iVGJ1SKZA== + optionalDependencies: + esbuild-android-arm64 "0.14.22" + esbuild-darwin-64 "0.14.22" + esbuild-darwin-arm64 "0.14.22" + esbuild-freebsd-64 "0.14.22" + esbuild-freebsd-arm64 "0.14.22" + esbuild-linux-32 "0.14.22" + esbuild-linux-64 "0.14.22" + esbuild-linux-arm "0.14.22" + esbuild-linux-arm64 "0.14.22" + esbuild-linux-mips64le "0.14.22" + esbuild-linux-ppc64le "0.14.22" + esbuild-linux-riscv64 "0.14.22" + esbuild-linux-s390x "0.14.22" + esbuild-netbsd-64 "0.14.22" + esbuild-openbsd-64 "0.14.22" + esbuild-sunos-64 "0.14.22" + esbuild-windows-32 "0.14.22" + esbuild-windows-64 "0.14.22" + esbuild-windows-arm64 "0.14.22" + +escalade@^3.1.1, escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escodegen@^1.11.0, escodegen@^1.9.1: + version "1.14.3" + resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz" + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +esprima@^4.0.0, esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +eventemitter-asyncresource@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz" + integrity sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ== + +eventemitter3@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz" + integrity sha1-teEHm1n7XhuidxwKmTvgYKWMmbo= + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +exec-sh@^0.3.2: + version "0.3.6" + resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz" + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + 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" + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + 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" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + 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" + +expect@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz" + integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== + dependencies: + "@jest/types" "^24.9.0" + ansi-styles "^3.2.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.9.0" + +express@^4.17.1: + version "4.18.2" + resolved "https://registry.npmjs.org/express/-/express-4.18.2.tgz" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@^3.0.1, extend@^3.0.2, extend@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + 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" + +extsprintf@^1.2.0, extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + 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== + +fast-diff@1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz" + integrity sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig== + +fast-glob@^3.2.7, fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + 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" + +fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@2.x: + version "2.0.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + +fast-json-stable-stringify@2.1.0: + 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== + +fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +fastparse@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz" + integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +faye-websocket@^0.11.3: + version "0.11.4" + resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + dependencies: + bser "2.1.1" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-uri-to-path@1.0.0: + 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== + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^3.3.1: + 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== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +follow-redirects@^1.0.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fraction.js@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" + integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-minipass@^2.0.0, fs-minipass@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs-monkey@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz" + integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@^1.2.7: + version "1.2.13" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz" + integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== + dependencies: + bindings "^1.5.0" + nan "^2.12.1" + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +gauge@^4.0.3: + version "4.0.4" + resolved "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz" + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.3" + console-control-strings "^1.1.0" + has-unicode "^2.0.1" + signal-exit "^3.0.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.5" + +gensync@^1.0.0-beta.2: + 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== + +get-caller-file@^2.0.1, get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.4.1: + 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== + +glob@^7.0.3, glob@^7.0.6, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: + version "7.1.4" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz" + integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== + 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" + +glob@^7.1.6: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.1: + version "8.1.0" + resolved "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + 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" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globby@^11.0.1: + version "11.1.0" + resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^12.0.2: + version "12.2.0" + resolved "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz" + integrity sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA== + dependencies: + array-union "^3.0.1" + dir-glob "^3.0.1" + fast-glob "^3.2.7" + ignore "^5.1.9" + merge2 "^1.4.1" + slash "^4.0.0" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz" + integrity sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ== + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: + version "4.2.9" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz" + integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz" + integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= + +hammerjs@2.0.8: + version "2.0.8" + resolved "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz" + integrity sha1-BO93hiz/K7edMPdpIJWTAiK/YPE= + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.3: + version "5.1.5" + resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + +has-bigints@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" + integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.1, has-symbols@^1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hdr-histogram-js@^2.0.1: + version "2.0.3" + resolved "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz" + integrity sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g== + dependencies: + "@assemblyscript/loader" "^0.10.1" + base64-js "^1.2.0" + pako "^1.0.3" + +hdr-histogram-percentiles-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz" + integrity sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw== + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^4.0.1: + version "4.1.0" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz" + integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + dependencies: + lru-cache "^6.0.0" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +html-entities@^2.3.2: + version "2.3.3" + resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz" + integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +http-cache-semantics@^4.1.0: + version "4.1.1" + resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + +http-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" + integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== + dependencies: + "@tootallnate/once" "2" + agent-base "6" + debug "4" + +http-proxy-middleware@^2.0.0: + version "2.0.6" + resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz" + integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + dependencies: + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-proxy-agent@^2.2.1: + version "2.2.4" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz" + integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== + dependencies: + agent-base "^4.3.0" + debug "^3.1.0" + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +https-proxy-agent@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@0.4, iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore-walk@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz" + integrity sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw== + dependencies: + minimatch "^3.0.4" + +ignore@^5.1.9, ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +image-size@~0.5.0: + version "0.5.5" + resolved "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz" + integrity sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ== + +immediate@~3.0.5: + version "3.0.6" + resolved "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz" + integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== + +immutable@^4.0.0: + version "4.2.4" + resolved "https://registry.npmjs.org/immutable/-/immutable-4.2.4.tgz" + integrity sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w== + +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@2, inherits@2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@^1.3.4: + version "1.3.8" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +ini@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + +inquirer@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.0.tgz" + integrity sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.2.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +intl@1.2.5: + version "1.2.5" + resolved "https://registry.npmjs.org/intl/-/intl-1.2.5.tgz" + integrity sha1-giRKIZDE5Bn4Nx9ao02qNCDiq94= + +invariant@^2.2.4: + 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" + +ip@^1.1.0: + version "1.1.8" + resolved "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz" + integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== + +ip@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz" + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== + +ipaddr.js@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz" + integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== + +ipaddr.js@1.9.1: + 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== + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.4" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz" + integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== + +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-core-module@^2.8.1: + version "2.8.1" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz" + integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== + dependencies: + has "^1.0.3" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^2.0.0: + 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= + +is-fullwidth-code-point@^3.0.0: + 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== + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-lambda@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz" + integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== + +is-negative-zero@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + 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== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz" + integrity sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw== + +is-path-cwd@^2.2.0: + version "2.2.0" + resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-in-cwd@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz" + integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz" + integrity sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g== + dependencies: + path-is-inside "^1.0.1" + +is-path-inside@^3.0.2: + version "3.0.3" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + 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== + dependencies: + isobject "^3.0.1" + +is-regex@^1.0.4, is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.1: + 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== + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-what@^3.14.1: + version "3.14.1" + resolved "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz" + integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@~1.0.0, isarray@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz" + integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== + +istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^3.0.1: + version "3.3.0" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz" + integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== + dependencies: + "@babel/generator" "^7.4.0" + "@babel/parser" "^7.4.3" + "@babel/template" "^7.4.0" + "@babel/traverse" "^7.4.3" + "@babel/types" "^7.4.0" + istanbul-lib-coverage "^2.0.5" + semver "^6.0.0" + +istanbul-lib-instrument@^3.3.0: + version "3.3.0" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz" + integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== + dependencies: + "@babel/generator" "^7.4.0" + "@babel/parser" "^7.4.3" + "@babel/template" "^7.4.0" + "@babel/traverse" "^7.4.3" + "@babel/types" "^7.4.0" + istanbul-lib-coverage "^2.0.5" + semver "^6.0.0" + +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^2.0.4: + version "2.0.8" + resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz" + integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== + dependencies: + istanbul-lib-coverage "^2.0.5" + make-dir "^2.1.0" + supports-color "^6.1.0" + +istanbul-lib-source-maps@^3.0.1: + version "3.0.6" + resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz" + integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^2.0.5" + make-dir "^2.1.0" + rimraf "^2.6.3" + source-map "^0.6.1" + +istanbul-reports@^2.2.6: + version "2.2.7" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz" + integrity sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg== + dependencies: + html-escaper "^2.0.0" + +jasmine-core@~2.8.0: + version "2.8.0" + resolved "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz" + integrity sha512-SNkOkS+/jMZvLhuSx1fjhcNWUC/KG6oVyFUGkSBEr9n1axSNduWU8GlI7suaHXr4yxjet6KjrUZxUTE5WzzWwQ== + +jasmine@2.8.0: + version "2.8.0" + resolved "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz" + integrity sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw== + dependencies: + exit "^0.1.2" + glob "^7.0.6" + jasmine-core "~2.8.0" + +jasminewd2@^2.1.0: + version "2.2.0" + resolved "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz" + integrity sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg== + +jest-changed-files@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz" + integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== + dependencies: + "@jest/types" "^24.9.0" + execa "^1.0.0" + throat "^4.0.0" + +jest-cli@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz" + integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== + dependencies: + "@jest/core" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + exit "^0.1.2" + import-local "^2.0.0" + is-ci "^2.0.0" + jest-config "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + prompts "^2.0.1" + realpath-native "^1.1.0" + yargs "^13.3.0" + +jest-config@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz" + integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^24.9.0" + "@jest/types" "^24.9.0" + babel-jest "^24.9.0" + chalk "^2.0.1" + glob "^7.1.1" + jest-environment-jsdom "^24.9.0" + jest-environment-node "^24.9.0" + jest-get-type "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + micromatch "^3.1.10" + pretty-format "^24.9.0" + realpath-native "^1.1.0" + +jest-diff@^24.3.0, jest-diff@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== + dependencies: + chalk "^2.0.1" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-docblock@^24.3.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== + dependencies: + detect-newline "^2.1.0" + +jest-each@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz" + integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== + dependencies: + "@jest/types" "^24.9.0" + chalk "^2.0.1" + jest-get-type "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + +jest-environment-jsdom-thirteen@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/jest-environment-jsdom-thirteen/-/jest-environment-jsdom-thirteen-1.0.1.tgz" + integrity sha512-Zi7OuKF7HMLlBvomitd5eKp5Ykc4Wvw0d+i+cpbCaE+7kmvL24SO4ssDmKrT++aANXR4T8+pmoJIlav5gr2peQ== + dependencies: + jest-mock "^24.0.0" + jest-util "^24.0.0" + jsdom "^13.0.0" + +jest-environment-jsdom@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz" + integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" + jsdom "^11.5.1" + +jest-environment-node@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz" + integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" + +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== + +jest-haste-map@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== + dependencies: + "@jest/types" "^24.9.0" + anymatch "^2.0.0" + fb-watchman "^2.0.0" + graceful-fs "^4.1.15" + invariant "^2.2.4" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" + micromatch "^3.1.10" + sane "^4.0.3" + walker "^1.0.7" + optionalDependencies: + fsevents "^1.2.7" + +jest-jasmine2@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz" + integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + co "^4.6.0" + expect "^24.9.0" + is-generator-fn "^2.0.0" + jest-each "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + throat "^4.0.0" + +jest-leak-detector@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz" + integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== + dependencies: + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-matcher-utils@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz" + integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== + dependencies: + chalk "^2.0.1" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/stack-utils" "^1.0.1" + chalk "^2.0.1" + micromatch "^3.1.10" + slash "^2.0.0" + stack-utils "^1.0.1" + +jest-mock@^24.0.0, jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== + dependencies: + "@jest/types" "^24.9.0" + +jest-pnp-resolver@^1.2.1: + version "1.2.2" + resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== + +jest-preset-angular@^7.1.1: + version "7.1.1" + resolved "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-7.1.1.tgz" + integrity sha512-/uJUi9IHoCxtB6aH6I+llpHjyfGfP2q32lcBCUKKk16v1uYKXvj1Nfdlvfvu/eqjZVoKEDLP+Ejup4bbsc0gAA== + dependencies: + jest-environment-jsdom-thirteen "^1.0.0" + pretty-format "^24.0.0" + ts-jest "^24.0.0" + +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz" + integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== + +jest-resolve-dependencies@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz" + integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== + dependencies: + "@jest/types" "^24.9.0" + jest-regex-util "^24.3.0" + jest-snapshot "^24.9.0" + +jest-resolve@*, jest-resolve@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz" + integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== + dependencies: + "@jest/types" "^24.9.0" + browser-resolve "^1.11.3" + chalk "^2.0.1" + jest-pnp-resolver "^1.2.1" + realpath-native "^1.1.0" + +jest-runner@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz" + integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== + dependencies: + "@jest/console" "^24.7.1" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.4.2" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-config "^24.9.0" + jest-docblock "^24.3.0" + jest-haste-map "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-leak-detector "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.6.0" + source-map-support "^0.5.6" + throat "^4.0.0" + +jest-runtime@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz" + integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== + dependencies: + "@jest/console" "^24.7.1" + "@jest/environment" "^24.9.0" + "@jest/source-map" "^24.3.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.1.15" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + realpath-native "^1.1.0" + slash "^2.0.0" + strip-bom "^3.0.0" + yargs "^13.3.0" + +jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== + +jest-snapshot@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz" + integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + expect "^24.9.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^24.9.0" + semver "^6.2.0" + +jest-util@^24.0.0, jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== + dependencies: + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + callsites "^3.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.15" + is-ci "^2.0.0" + mkdirp "^0.5.1" + slash "^2.0.0" + source-map "^0.6.0" + +jest-validate@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== + dependencies: + "@jest/types" "^24.9.0" + camelcase "^5.3.1" + chalk "^2.0.1" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + +jest-watcher@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz" + integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== + dependencies: + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + jest-util "^24.9.0" + string-length "^2.0.0" + +jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== + dependencies: + merge-stream "^2.0.0" + supports-color "^6.1.0" + +jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^24.1.0, jest@^24.8.0, "jest@>=24 <25": + version "24.9.0" + resolved "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz" + integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== + dependencies: + import-local "^2.0.0" + jest-cli "^24.9.0" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsdom@^11.5.1: + version "11.12.0" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== + dependencies: + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" + +jsdom@^13.0.0: + version "13.2.0" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-13.2.0.tgz" + integrity sha512-cG1NtMWO9hWpqRNRR3dSvEQa8bFI6iLlqU2x4kwX51FQjp0qus8T9aBaAO6iGp3DeBrhdwuKxckknohkmfvsFw== + dependencies: + abab "^2.0.0" + acorn "^6.0.4" + acorn-globals "^4.3.0" + array-equal "^1.0.0" + cssom "^0.3.4" + cssstyle "^1.1.1" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.0" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.0.9" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.5" + saxes "^3.1.5" + symbol-tree "^3.2.2" + tough-cookie "^2.5.0" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^6.1.2" + xml-name-validator "^3.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: + 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== + +json-parse-even-better-errors@^2.3.0: + 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== + +json-schema-traverse@^0.4.1: + 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== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +json5@^2.1.2, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +json5@2.x: + version "2.2.1" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + +jsonc-parser@3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz" + integrity sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA== + +jsonparse@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +jsprim@^1.2.2: + version "1.4.2" + resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz" + integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + +jszip@^3.1.3: + version "3.10.1" + resolved "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz" + integrity sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g== + dependencies: + lie "~3.3.0" + pako "~1.0.2" + readable-stream "~2.3.6" + setimmediate "^1.0.5" + +karma-source-map-support@1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz" + integrity sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A== + dependencies: + source-map-support "^0.5.5" + +kind-of@^3.0.2: + version "3.2.2" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^3.0.3: + version "3.2.2" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +klona@^2.0.4, klona@^2.0.5: + version "2.0.6" + resolved "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz" + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== + +leaflet@1, leaflet@1.3.4: + version "1.3.4" + resolved "https://registry.npmjs.org/leaflet/-/leaflet-1.3.4.tgz" + integrity sha512-FYL1LGFdj6v+2Ifpw+AcFIuIOqjNggfoLUwuwQv6+3sS21Za7Wvapq+LhbSE4NDXrEj6eYnW3y7LsaBICpyXtw== + +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== + +less-loader@10.2.0: + version "10.2.0" + resolved "https://registry.npmjs.org/less-loader/-/less-loader-10.2.0.tgz" + integrity sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg== + dependencies: + klona "^2.0.4" + +"less@^3.5.0 || ^4.0.0", less@4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/less/-/less-4.1.2.tgz" + integrity sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA== + dependencies: + copy-anything "^2.0.1" + parse-node-version "^1.0.1" + tslib "^2.3.0" + optionalDependencies: + errno "^0.1.1" + graceful-fs "^4.1.2" + image-size "~0.5.0" + make-dir "^2.1.0" + mime "^1.4.1" + needle "^2.5.2" + source-map "~0.6.0" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +libphonenumber-js@^0.4.5: + version "0.4.52" + resolved "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-0.4.52.tgz" + integrity sha512-Ns5FcEp8W/lZd+lKu7OB46RYBKcncN/S3C51OFh7qXbu6kOFAd75A4M0jtasK3MUWMxKsKXII4WL+GbqaLa2DQ== + dependencies: + babel-runtime "^6.6.1" + bluebird "^3.4.6" + minimist "^1.2.0" + xml2js "^0.4.17" + +license-webpack-plugin@4.0.2: + version "4.0.2" + resolved "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz" + integrity sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw== + dependencies: + webpack-sources "^3.0.0" + +lie@~3.3.0: + version "3.3.0" + resolved "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz" + integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== + dependencies: + immediate "~3.0.5" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loader-utils@3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz" + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash-es@^4.17.15: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash@^4.17.14, lodash@^4.17.19, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +loose-envify@^1.0.0: + 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" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lru-cache@^7.7.1: + version "7.14.1" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz" + integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA== + +magic-string@^0.26.0: + version "0.26.7" + resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz" + integrity sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow== + dependencies: + sourcemap-codec "^1.4.8" + +magic-string@0.25.7: + version "0.25.7" + resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz" + integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== + dependencies: + sourcemap-codec "^1.4.4" + +make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^3.0.2, make-dir@^3.1.0: + 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== + dependencies: + semver "^6.0.0" + +make-error@^1.1.1, make-error@1.x: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +make-fetch-happen@^10.0.1: + version "10.2.1" + resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz" + integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== + dependencies: + agentkeepalive "^4.2.1" + cacache "^16.1.0" + http-cache-semantics "^4.1.0" + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.0" + is-lambda "^1.0.1" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-fetch "^2.0.3" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + promise-retry "^2.0.1" + socks-proxy-agent "^7.0.0" + ssri "^9.0.0" + +make-fetch-happen@^9.1.0: + version "9.1.0" + resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz" + integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg== + 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" + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memfs@^3.2.2: + version "3.4.13" + resolved "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz" + integrity sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg== + dependencies: + fs-monkey "^1.0.3" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + 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" + +micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + 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" + +micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +"mime-db@>= 1.43.0 < 2", mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@^1.4.1, mime@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mini-css-extract-plugin@2.5.3: + version "2.5.3" + resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.5.3.tgz" + integrity sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw== + dependencies: + schema-utils "^4.0.0" + +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + +minimatch@3.0.5: + version "3.0.5" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz" + integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-fetch@^1.3.2, minipass-fetch@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz" + integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== + dependencies: + minipass "^3.1.0" + minipass-sized "^1.0.3" + minizlib "^2.0.0" + optionalDependencies: + encoding "^0.1.12" + +minipass-fetch@^2.0.3: + version "2.1.2" + resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz" + integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== + dependencies: + minipass "^3.1.6" + minipass-sized "^1.0.3" + minizlib "^2.1.2" + optionalDependencies: + encoding "^0.1.13" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-json-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz" + integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== + dependencies: + jsonparse "^1.3.1" + minipass "^3.0.0" + +minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: + version "1.2.4" + resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass-sized@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz" + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3, minipass@^3.1.6: + version "3.3.6" + resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +minipass@^4.0.0: + version "4.0.3" + resolved "https://registry.npmjs.org/minipass/-/minipass-4.0.3.tgz" + integrity sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw== + +minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mixpanel-browser@^2.47.0: + version "2.47.0" + resolved "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.47.0.tgz" + integrity sha512-Ldrva0fRBEIFWmEibBQO1PulfpJVF3pf28Guk09lDirDaSQqqU/xs9zQLwN2rL5VwVtsP1aD3JaCgaa98EjojQ== + +mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.6, mkdirp@0.x: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +moment@^2.10.2, moment@^2.18.1, moment@^2.22.2: + version "2.29.1" + resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz" + integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== + +ms@^2.0.0, ms@^2.1.1, ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz" + integrity sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ== + +multicast-dns@^6.0.1: + version "6.2.3" + resolved "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz" + integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== + dependencies: + dns-packet "^1.3.1" + thunky "^1.0.2" + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nan@^2.12.1: + version "2.15.0" + resolved "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz" + integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== + +nanoid@^3.1.30: + version "3.3.4" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + 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" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +needle@^2.5.2: + version "2.9.1" + resolved "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz" + integrity sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ== + dependencies: + debug "^3.2.6" + iconv-lite "^0.4.4" + sax "^1.2.4" + +negotiator@^0.6.2, negotiator@^0.6.3, negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +ng2-charts@^2.2.4: + version "2.4.3" + resolved "https://registry.npmjs.org/ng2-charts/-/ng2-charts-2.4.3.tgz" + integrity sha512-tPrhHSS2DfVyipXQ0gykOPc8zFNnj2b7sAebUVty392vHnEGYCwsP6YbFfpr1iXu4yBSRm4Gt5lffR5w0uyYSw== + dependencies: + "@types/chart.js" "^2.9.24" + lodash-es "^4.17.15" + tslib "^2.0.0" + +ng2-dragula@2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/ng2-dragula/-/ng2-dragula-2.1.0.tgz" + integrity sha512-Xwvt8T8zF1IjvlDkCZvyVd3ovaiZwEtCixZZDSiz9uSpXC1euP4WPeqVCcvt4pJKQW12ZwXdOYbHNCdAyy2leQ== + dependencies: + "@types/dragula" "^2.1.33" + dragula "^3.7.2" + +ng2-file-upload@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/ng2-file-upload/-/ng2-file-upload-1.4.0.tgz" + integrity sha512-3J/KPU/tyh/ad6TFeUbrxX+SihUj0iOEt2Zsg4EX7mB3GFiQscXOfcUOxCkBtPWWWaqt3azrYbVGzsYa3/7NzQ== + dependencies: + tslib "^1.9.0" + +ng2-validation@4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/ng2-validation/-/ng2-validation-4.2.0.tgz" + integrity sha1-841EHT+36GIVUWZIAEWq/5rRHbs= + dependencies: + libphonenumber-js "^0.4.5" + +ngx-perfect-scrollbar@6.3.1: + version "6.3.1" + resolved "https://registry.npmjs.org/ngx-perfect-scrollbar/-/ngx-perfect-scrollbar-6.3.1.tgz" + integrity sha512-kgHT0A1pDnZO5CxB4TOwflHb1Q152wZ3Nec0Zf7d29bgA1kAFl6oK8wFmYtGWeaFNhSCExus6TOq3sWN3xRQig== + dependencies: + perfect-scrollbar "^1.4.0" + resize-observer-polyfill "^1.4.0" + +ngx-quill@3.4.0: + version "3.4.0" + resolved "https://registry.npmjs.org/ngx-quill/-/ngx-quill-3.4.0.tgz" + integrity sha512-PKzF1cLN6btxaR31ZeCpgOOdmnPQXU5WWarwLbTUxGueWHoR2nQRAXXDI5m6UF3FPv25R5xW1jbTM6uFq8xitw== + dependencies: + "@types/quill" "1.3.3" + quill "^1.3.6" + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +node-forge@^1: + version "1.3.1" + resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-gyp@^8.2.0: + version "8.4.1" + resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz" + integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w== + dependencies: + env-paths "^2.2.0" + glob "^7.1.4" + graceful-fs "^4.2.6" + make-fetch-happen "^9.1.0" + nopt "^5.0.0" + npmlog "^6.0.0" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.2" + which "^2.0.2" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + +node-notifier@^5.4.2: + version "5.4.5" + resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.5.tgz" + integrity sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ== + dependencies: + growly "^1.3.0" + is-wsl "^1.1.0" + semver "^5.5.0" + shellwords "^0.1.1" + which "^1.3.0" + +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + +nopt@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz" + integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + dependencies: + abbrev "1" + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +npm-bundled@^1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz" + integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-install-checks@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz" + integrity sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w== + dependencies: + semver "^7.1.1" + +npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + +npm-package-arg@^8.0.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5, npm-package-arg@8.1.5: + version "8.1.5" + resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz" + integrity sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q== + dependencies: + hosted-git-info "^4.0.1" + semver "^7.3.4" + validate-npm-package-name "^3.0.0" + +npm-packlist@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz" + integrity sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ== + dependencies: + glob "^7.1.6" + ignore-walk "^4.0.1" + npm-bundled "^1.1.1" + npm-normalize-package-bin "^1.0.1" + +npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.1, npm-pick-manifest@6.1.1: + version "6.1.1" + resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz" + integrity sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA== + dependencies: + npm-install-checks "^4.0.0" + npm-normalize-package-bin "^1.0.1" + npm-package-arg "^8.1.2" + semver "^7.3.4" + +npm-registry-fetch@^12.0.0: + version "12.0.2" + resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-12.0.2.tgz" + integrity sha512-Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA== + dependencies: + make-fetch-happen "^10.0.1" + minipass "^3.1.6" + minipass-fetch "^1.4.1" + minipass-json-stream "^1.0.1" + minizlib "^2.1.2" + npm-package-arg "^8.1.5" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npmlog@^6.0.0: + version "6.0.2" + resolved "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz" + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== + dependencies: + are-we-there-yet "^3.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.3" + set-blocking "^2.0.0" + +nth-check@^2.0.1: + 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== + dependencies: + boolbase "^1.0.0" + +nwsapi@^2.0.7, nwsapi@^2.0.9: + version "2.2.0" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-inspect@^1.11.0, object-inspect@^1.9.0: + version "1.12.0" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz" + integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" + integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + has-symbols "^1.0.1" + object-keys "^1.1.1" + +object.getownpropertydescriptors@^2.1.1: + version "2.1.3" + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz" + integrity sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + 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== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^8.0.9, open@8.4.0: + version "8.4.0" + resolved "https://registry.npmjs.org/open/-/open-8.4.0.tgz" + integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + +optionator@^0.8.1: + version "0.8.3" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +ora@^5.4.1, ora@5.4.1: + version "5.4.1" + resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +p-each-series@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz" + integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= + dependencies: + p-reduce "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^3.0.0: + 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== + dependencies: + p-limit "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-reduce@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz" + integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= + +p-retry@^4.5.0: + version "4.6.2" + resolved "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + dependencies: + "@types/retry" "0.12.0" + retry "^0.13.1" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pacote@12.0.3: + version "12.0.3" + resolved "https://registry.npmjs.org/pacote/-/pacote-12.0.3.tgz" + integrity sha512-CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow== + dependencies: + "@npmcli/git" "^2.1.0" + "@npmcli/installed-package-contents" "^1.0.6" + "@npmcli/promise-spawn" "^1.2.0" + "@npmcli/run-script" "^2.0.0" + 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 "^3.0.0" + npm-pick-manifest "^6.0.0" + npm-registry-fetch "^12.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" + +pako@^1.0.3, pako@~1.0.2: + version "1.0.11" + resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parchment@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz" + integrity sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg== + +parent-module@^1.0.0: + 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== + dependencies: + callsites "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + 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" + +parse-node-version@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz" + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== + +parse5-html-rewriting-stream@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz" + integrity sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg== + dependencies: + parse5 "^6.0.1" + parse5-sax-parser "^6.0.1" + +parse5-htmlparser2-tree-adapter@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== + dependencies: + parse5 "^6.0.1" + +parse5-sax-parser@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz" + integrity sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg== + dependencies: + parse5 "^6.0.1" + +parse5@^5.0.0: + version "5.1.1" + resolved "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz" + integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== + +parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== + +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + +parse5@5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz" + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +perfect-scrollbar@^1.4.0: + version "1.5.5" + resolved "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz" + integrity sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g== + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +picocolors@^1.0.0, picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +pirates@^4.0.1: + version "4.0.5" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + +piscina@3.2.0: + version "3.2.0" + resolved "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz" + integrity sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA== + dependencies: + eventemitter-asyncresource "^1.0.0" + hdr-histogram-js "^2.0.1" + hdr-histogram-percentiles-obj "^3.0.0" + optionalDependencies: + nice-napi "^1.0.2" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-dir@^4.1.0: + 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== + dependencies: + find-up "^4.0.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +portfinder@^1.0.28: + version "1.0.32" + resolved "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz" + integrity sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg== + dependencies: + async "^2.6.4" + debug "^3.2.7" + mkdirp "^0.5.6" + +positioning@^1.4.0: + version "1.5.1" + resolved "https://registry.npmjs.org/positioning/-/positioning-1.5.1.tgz" + integrity sha512-Al3inO/WAlq7Q986pghpdWC9fsSCCKxOAwRt8ZGpcQn58SP8RJX7bjC53I7xeq9ngN+odcyF4B+wMdpyyiF5wQ== + +posix-character-classes@^0.1.0: + 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= + +postcss-attribute-case-insensitive@^5.0.0: + version "5.0.2" + resolved "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz" + integrity sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-color-functional-notation@^4.2.1: + version "4.2.4" + resolved "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz" + integrity sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-color-hex-alpha@^8.0.2: + version "8.0.4" + resolved "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz" + integrity sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-color-rebeccapurple@^7.0.2: + version "7.1.1" + resolved "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz" + integrity sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-custom-media@^8.0.0: + version "8.0.2" + resolved "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz" + integrity sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-custom-properties@^12.1.2: + version "12.1.11" + resolved "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz" + integrity sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-custom-selectors@^6.0.0: + version "6.0.3" + resolved "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz" + integrity sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-dir-pseudo-class@^6.0.3: + version "6.0.5" + resolved "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz" + integrity sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-double-position-gradients@^3.0.4: + version "3.1.2" + resolved "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz" + integrity sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +postcss-env-function@^4.0.4: + version "4.0.6" + resolved "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz" + integrity sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-focus-visible@^6.0.3: + version "6.0.4" + resolved "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz" + integrity sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw== + dependencies: + postcss-selector-parser "^6.0.9" + +postcss-focus-within@^5.0.3: + version "5.0.4" + resolved "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz" + integrity sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ== + dependencies: + postcss-selector-parser "^6.0.9" + +postcss-font-variant@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz" + integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== + +postcss-gap-properties@^3.0.2: + version "3.0.5" + resolved "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz" + integrity sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg== + +postcss-image-set-function@^4.0.4: + version "4.0.7" + resolved "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz" + integrity sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-import@14.0.2: + version "14.0.2" + resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz" + integrity sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-initial@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz" + integrity sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ== + +postcss-lab-function@^4.0.3: + version "4.2.1" + resolved "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz" + integrity sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +postcss-loader@6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz" + integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== + dependencies: + cosmiconfig "^7.0.0" + klona "^2.0.5" + semver "^7.3.5" + +postcss-logical@^5.0.3: + version "5.0.4" + resolved "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz" + integrity sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g== + +postcss-media-minmax@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz" + integrity sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ== + +postcss-modules-extract-imports@^3.0.0: + 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== + +postcss-modules-local-by-default@^4.0.0: + 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== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-nesting@^10.1.2: + version "10.2.0" + resolved "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz" + integrity sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA== + dependencies: + "@csstools/selector-specificity" "^2.0.0" + postcss-selector-parser "^6.0.10" + +postcss-overflow-shorthand@^3.0.2: + version "3.0.4" + resolved "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz" + integrity sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-page-break@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz" + integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== + +postcss-place@^7.0.3: + version "7.0.5" + resolved "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz" + integrity sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-preset-env@7.2.3: + version "7.2.3" + resolved "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.2.3.tgz" + integrity sha512-Ok0DhLfwrcNGrBn8sNdy1uZqWRk/9FId0GiQ39W4ILop5GHtjJs8bu1MY9isPwHInpVEPWjb4CEcEaSbBLpfwA== + dependencies: + autoprefixer "^10.4.2" + browserslist "^4.19.1" + caniuse-lite "^1.0.30001299" + css-blank-pseudo "^3.0.2" + css-has-pseudo "^3.0.3" + css-prefers-color-scheme "^6.0.2" + cssdb "^5.0.0" + postcss-attribute-case-insensitive "^5.0.0" + postcss-color-functional-notation "^4.2.1" + postcss-color-hex-alpha "^8.0.2" + postcss-color-rebeccapurple "^7.0.2" + postcss-custom-media "^8.0.0" + postcss-custom-properties "^12.1.2" + postcss-custom-selectors "^6.0.0" + postcss-dir-pseudo-class "^6.0.3" + postcss-double-position-gradients "^3.0.4" + postcss-env-function "^4.0.4" + postcss-focus-visible "^6.0.3" + postcss-focus-within "^5.0.3" + postcss-font-variant "^5.0.0" + postcss-gap-properties "^3.0.2" + postcss-image-set-function "^4.0.4" + postcss-initial "^4.0.1" + postcss-lab-function "^4.0.3" + postcss-logical "^5.0.3" + postcss-media-minmax "^5.0.0" + postcss-nesting "^10.1.2" + postcss-overflow-shorthand "^3.0.2" + postcss-page-break "^3.0.4" + postcss-place "^7.0.3" + postcss-pseudo-class-any-link "^7.0.2" + postcss-replace-overflow-wrap "^4.0.0" + postcss-selector-not "^5.0.0" + +postcss-pseudo-class-any-link@^7.0.2: + version "7.1.6" + resolved "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz" + integrity sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-replace-overflow-wrap@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz" + integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw== + +postcss-selector-not@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-5.0.0.tgz" + integrity sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ== + dependencies: + balanced-match "^1.0.0" + +postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.9: + version "6.0.11" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz" + integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +"postcss@^7.0.0 || ^8.0.1", postcss@^8, postcss@^8.0.0, postcss@^8.0.3, postcss@^8.1.0, postcss@^8.2, postcss@^8.2.14, postcss@^8.2.15, postcss@^8.3, postcss@^8.3.7, postcss@^8.4, postcss@8.4.5: + version "8.4.5" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz" + integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== + dependencies: + nanoid "^3.1.30" + picocolors "^1.0.0" + source-map-js "^1.0.1" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +pretty-bytes@^5.3.0: + version "5.6.0" + resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== + +pretty-format@^24.0.0, pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== + dependencies: + "@jest/types" "^24.9.0" + ansi-regex "^4.0.0" + ansi-styles "^3.2.0" + react-is "^16.8.4" + +process-nextick-args@~2.0.0: + 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== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +protractor@^7.0.0, protractor@~7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/protractor/-/protractor-7.0.0.tgz" + integrity sha512-UqkFjivi4GcvUQYzqGYNe0mLzfn5jiLmO8w9nMhQoJRLhy2grJonpga2IWhI6yJO30LibWXJJtA4MOIZD2GgZw== + dependencies: + "@types/q" "^0.0.32" + "@types/selenium-webdriver" "^3.0.0" + blocking-proxy "^1.0.0" + browserstack "^1.5.1" + chalk "^1.1.3" + glob "^7.0.3" + jasmine "2.8.0" + jasminewd2 "^2.1.0" + q "1.4.1" + saucelabs "^1.5.0" + selenium-webdriver "3.6.0" + source-map-support "~0.4.0" + webdriver-js-extender "2.1.0" + webdriver-manager "^12.1.7" + yargs "^15.3.1" + +proxy-addr@~2.0.7: + 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== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" + integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== + +psl@^1.1.28: + version "1.8.0" + resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +q@^1.4.1, q@1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/q/-/q-1.4.1.tgz" + integrity sha1-VXBbzZPF82c1MMLCy8DCs63cKG4= + +qs@~6.5.2: + version "6.5.3" + resolved "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz" + integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quill-delta@^3.6.2: + version "3.6.3" + resolved "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz" + integrity sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg== + dependencies: + deep-equal "^1.0.1" + extend "^3.0.2" + fast-diff "1.1.2" + +quill@^1.3.6, quill@1.3.6: + version "1.3.6" + resolved "https://registry.npmjs.org/quill/-/quill-1.3.6.tgz" + integrity sha512-K0mvhimWZN6s+9OQ249CH2IEPZ9JmkFuCQeHAOQax3EZ2nDJ3wfGh59mnlQaZV2i7u8eFarx6wAtvQKgShojug== + dependencies: + clone "^2.1.1" + deep-equal "^1.0.1" + eventemitter3 "^2.0.3" + extend "^3.0.1" + parchment "^1.1.4" + quill-delta "^3.6.2" + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +react-is@^16.8.4: + version "16.13.1" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +read-package-json-fast@^2.0.1: + version "2.0.3" + resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz" + integrity sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ== + dependencies: + json-parse-even-better-errors "^2.3.0" + npm-normalize-package-bin "^1.0.1" + +read-pkg-up@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz" + integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== + dependencies: + find-up "^3.0.0" + read-pkg "^3.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^2.0.1, readable-stream@~2.3.6: + version "2.3.7" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + 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" + +readable-stream@^3.0.6: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readable-stream@^3.4.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +realpath-native@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz" + integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== + dependencies: + util.promisify "^1.0.0" + +reflect-metadata@^0.1.2: + version "0.1.13" + resolved "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz" + integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== + +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-runtime@^0.13.4: + version "0.13.11" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-runtime@0.13.9: + 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@^0.15.1: + version "0.15.1" + resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== + dependencies: + "@babel/runtime" "^7.8.4" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regex-parser@^2.2.11: + version "2.2.11" + resolved "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz" + integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== + +regexp.prototype.flags@^1.2.0: + version "1.4.1" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz" + integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +regexpu-core@^5.2.1: + version "5.3.0" + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz" + integrity sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +repeat-element@^1.1.2: + 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== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +request-promise-core@1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz" + integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== + dependencies: + lodash "^4.17.19" + +request-promise-native@^1.0.5: + version "1.0.9" + resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz" + integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== + dependencies: + request-promise-core "1.1.4" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@^2.34, request@^2.87.0, request@^2.88.0: + version "2.88.2" + resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + 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" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-from-string@^2.0.2: + 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== + +require-main-filename@^2.0.0: + 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== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resize-observer-polyfill@^1.4.0: + version "1.5.1" + resolved "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz" + integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + dependencies: + resolve-from "^3.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-url-loader@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz" + integrity sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg== + dependencies: + adjust-sourcemap-loader "^4.0.0" + convert-source-map "^1.7.0" + loader-utils "^2.0.0" + postcss "^8.2.14" + source-map "0.6.1" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.3.2, resolve@1.22.0, resolve@1.x: + version "1.22.0" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" + integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== + dependencies: + is-core-module "^2.8.1" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz" + integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rsvp@^4.8.4: + version "4.8.5" + resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rw@1: + version "1.3.3" + resolved "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz" + integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= + +"rxjs@^5.5.2 || ^6.1.0", "rxjs@^5.6.0-forward-compat.0 || ^6.0.0-beta.0", rxjs@^6.0.0, rxjs@^6.3.3, rxjs@^6.5.3, "rxjs@^6.5.3 || ^7.4.0", rxjs@>=6.0.0, rxjs@6.6.7: + version "6.6.7" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + +rxjs@^7.2.0: + version "7.8.0" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz" + integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@>=5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1, safe-buffer@5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sane@^4.0.3: + version "4.1.0" + resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== + dependencies: + "@cnakazawa/watch" "^1.0.3" + anymatch "^2.0.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + +sass-loader@12.4.0: + version "12.4.0" + resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-12.4.0.tgz" + integrity sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg== + dependencies: + klona "^2.0.4" + neo-async "^2.6.2" + +sass@^1.3.0, sass@1.49.9: + version "1.49.9" + resolved "https://registry.npmjs.org/sass/-/sass-1.49.9.tgz" + integrity sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A== + dependencies: + chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" + +saucelabs@^1.5.0: + version "1.5.0" + resolved "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz" + integrity sha512-jlX3FGdWvYf4Q3LFfFWS1QvPg3IGCGWxIc8QBFdPTbpTJnt/v17FHXYVAn7C8sHf1yUXo2c7yIM0isDryfYtHQ== + dependencies: + https-proxy-agent "^2.2.1" + +sax@^1.2.4, sax@>=0.6.0, sax@~1.2.4: + version "1.2.4" + resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +saxes@^3.1.5: + version "3.1.11" + resolved "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== + dependencies: + xmlchars "^2.1.1" + +schema-utils@^2.6.5: + version "2.7.1" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + dependencies: + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" + +schema-utils@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz" + integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.8.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.0.0" + +screenfull@3.3.3: + version "3.3.3" + resolved "https://registry.npmjs.org/screenfull/-/screenfull-3.3.3.tgz" + integrity sha512-DzYUuXr+OV2BDvYXaYzlYgJd4WXZZ2CW5NFC7Kw6TUCpzXJAx4MwlVD6CH+Mu6fi8rfAQIQfqdFZ4jtDsEkWig== + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selenium-webdriver@^3.0.1, selenium-webdriver@3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz" + integrity sha512-WH7Aldse+2P5bbFBO4Gle/nuQOdVwpHMTL6raL3uuBj/vPG07k6uzt3aiahu352ONBr5xXh0hDlM3LhtXPOC4Q== + dependencies: + jszip "^3.1.3" + rimraf "^2.5.4" + tmp "0.0.30" + xml2js "^0.4.17" + +selfsigned@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz" + integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== + dependencies: + node-forge "^1" + +semver-dsl@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz" + integrity sha512-e8BOaTo007E3dMuQQTnPdalbKTABKNS7UxoBIDnwOqRa+QwMrCPjynB8zAlPF6xlqUfdLPPLIJ13hJNmhtq8Ng== + dependencies: + semver "^5.3.0" + +semver@^5.3.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^5.5: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^5.6.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.0.0: + version "7.3.8" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +semver@^7.1.1: + version "7.3.8" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +semver@^7.3.4: + version "7.3.8" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +semver@^7.3.5: + version "7.3.8" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +"semver@2 || 3 || 4 || 5": + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@7.3.5: + version "7.3.5" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-javascript@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz" + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + 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" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz" + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + 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" + +sockjs@^0.3.21: + version "0.3.24" + resolved "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + dependencies: + faye-websocket "^0.11.3" + uuid "^8.3.2" + websocket-driver "^0.7.4" + +socks-proxy-agent@^6.0.0: + version "6.2.1" + resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz" + integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ== + dependencies: + agent-base "^6.0.2" + debug "^4.3.3" + socks "^2.6.2" + +socks-proxy-agent@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz" + integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== + dependencies: + agent-base "^6.0.2" + debug "^4.3.3" + socks "^2.6.2" + +socks@^2.6.2: + version "2.7.1" + resolved "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz" + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + dependencies: + ip "^2.0.0" + smart-buffer "^4.2.0" + +source-map-js@^1.0.1, "source-map-js@>=0.6.2 <2.0.0": + version "1.0.2" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map-loader@3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz" + integrity sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA== + dependencies: + abab "^2.0.5" + iconv-lite "^0.6.3" + source-map-js "^1.0.1" + +source-map-resolve@^0.5.0: + 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== + 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" + +source-map-resolve@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz" + integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + +source-map-support@^0.5.3, source-map-support@^0.5.5, source-map-support@^0.5.6: + version "0.5.13" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-support@~0.4.0: + version "0.4.18" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz" + integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== + dependencies: + source-map "^0.5.6" + +source-map-support@~0.5.20: + 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== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-support@0.5.21: + 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== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.1" + resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + +source-map@^0.5.0: + version "0.5.7" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.7.3, source-map@0.7.3: + version "0.7.3" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" + integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== + +source-map@~0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sourcemap-codec@^1.4.4, sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.11" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz" + integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + 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" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + 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" + +split-string@^3.0.1, split-string@^3.0.2: + 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== + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz" + integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +sshpk@^1.7.0: + version "1.17.0" + resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + 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" + +ssri@^8.0.0, ssri@^8.0.1: + version "8.0.1" + resolved "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz" + integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== + dependencies: + minipass "^3.1.1" + +ssri@^9.0.0: + version "9.0.1" + resolved "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz" + integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== + dependencies: + minipass "^3.1.1" + +stack-utils@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz" + integrity sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ== + dependencies: + escape-string-regexp "^2.0.0" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +"statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + +string_decoder@^1.1.1, string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +string-length@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz" + integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= + dependencies: + astral-regex "^1.0.0" + strip-ansi "^4.0.0" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string.prototype.trimend@^1.0.4: + 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== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +string.prototype.trimstart@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" + integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +strip-ansi@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0: + version "5.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^5.1.0: + version "5.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.0: + version "7.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz" + integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== + dependencies: + ansi-regex "^6.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +stylus-loader@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/stylus-loader/-/stylus-loader-6.2.0.tgz" + integrity sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg== + dependencies: + fast-glob "^3.2.7" + klona "^2.0.4" + normalize-path "^3.0.0" + +stylus@>=0.52.4, stylus@0.56.0: + version "0.56.0" + resolved "https://registry.npmjs.org/stylus/-/stylus-0.56.0.tgz" + integrity sha512-Ev3fOb4bUElwWu4F9P9WjnnaSpc8XB9OFHSFZSKMFL1CE1oM+oFXWEgAqPmmZIyhBihuqIQlFsVTypiiS9RxeA== + dependencies: + css "^3.0.0" + debug "^4.3.2" + glob "^7.1.6" + safer-buffer "^2.1.2" + sax "~1.2.4" + source-map "^0.7.3" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +symbol-observable@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz" + integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== + +symbol-tree@^3.2.2: + version "3.2.4" + resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + +tapable@^2.1.1, tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +tar@^6.0.2, tar@^6.1.0, tar@^6.1.11, tar@^6.1.2: + version "6.1.13" + resolved "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz" + integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^4.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +terser-webpack-plugin@^5.1.3: + version "5.3.6" + resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz" + integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ== + dependencies: + "@jridgewell/trace-mapping" "^0.3.14" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.0" + terser "^5.14.1" + +terser@^5.14.1, terser@5.14.2: + version "5.14.2" + resolved "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz" + integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA== + dependencies: + "@jridgewell/source-map" "^0.3.2" + acorn "^8.5.0" + commander "^2.20.0" + source-map-support "~0.5.20" + +test-exclude@^5.2.3: + version "5.2.3" + resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz" + integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== + dependencies: + glob "^7.1.3" + minimatch "^3.0.4" + read-pkg-up "^4.0.0" + require-main-filename "^2.0.0" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + +text-table@0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +throat@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz" + integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= + +through@^2.3.6, through@X.X.X: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +ticky@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/ticky/-/ticky-1.0.1.tgz" + integrity sha1-t8+nHnaPHJAAxJe5FRswlHxQ5G0= + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@0.0.30: + version "0.0.30" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.30.tgz" + integrity sha512-HXdTB7lvMwcb55XFfrTM8CPr/IYREk4hVBFaQ4b/6nInrluSL86hfHm7vu0luYKCfyBZp2trCjpc8caC3vVM3w== + dependencies: + os-tmpdir "~1.0.1" + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + 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== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0, tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + +tree-kill@1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + +ts-jest@^24.0.0: + version "24.3.0" + resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-24.3.0.tgz" + integrity sha512-Hb94C/+QRIgjVZlJyiWwouYUF+siNJHJHknyspaOcZ+OQAIdFG/UrdQVXw/0B8Z3No34xkUXZJpOTy9alOWdVQ== + dependencies: + bs-logger "0.x" + buffer-from "1.x" + fast-json-stable-stringify "2.x" + json5 "2.x" + lodash.memoize "4.x" + make-error "1.x" + mkdirp "0.x" + resolve "1.x" + semver "^5.5" + yargs-parser "10.x" + +ts-node@~5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-5.0.1.tgz" + integrity sha512-XK7QmDcNHVmZkVtkiwNDWiERRHPyU8nBqZB1+iv2UhOG0q3RQ9HsZ2CMqISlFbxjrYFGfG2mX7bW4dAyxBVzUw== + dependencies: + arrify "^1.0.0" + chalk "^2.3.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.3" + yn "^2.0.0" + +tslib@^1.10.0: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^1.13.0: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^1.7.1: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^1.9.0, tslib@^2.0.0, tslib@^2.1.0, tslib@^2.3.0: + version "2.5.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + +tslib@2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +"tslint@^5.0.0 || ^6.0.0", tslint@~6.1.0: + version "6.1.3" + resolved "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz" + integrity sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg== + dependencies: + "@babel/code-frame" "^7.0.0" + builtin-modules "^1.1.1" + chalk "^2.3.0" + commander "^2.12.1" + diff "^4.0.1" + glob "^7.1.1" + js-yaml "^3.13.1" + minimatch "^3.0.4" + mkdirp "^0.5.3" + resolve "^1.3.2" + semver "^5.3.0" + tslib "^1.13.0" + tsutils "^2.29.0" + +tsutils@^2.29.0: + version "2.29.0" + resolved "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz" + integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + dependencies: + tslib "^1.8.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typed-assert@^1.0.8: + version "1.0.9" + resolved "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz" + integrity sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg== + +"typescript@>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev", "typescript@>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 4.0.0-dev", "typescript@>=4.4.2 <4.7", "typescript@>=4.4.3 <4.7", typescript@~4.6.4: + version "4.6.4" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz" + integrity sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg== + +unbox-primitive@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz" + integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== + dependencies: + function-bind "^1.1.1" + has-bigints "^1.0.1" + has-symbols "^1.0.2" + which-boxed-primitive "^1.0.2" + +unicode-canonical-property-names-ecmascript@^2.0.0: + 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== + +unicode-match-property-ecmascript@^2.0.0: + 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== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +union-value@^1.0.0: + 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== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-filename@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz" + integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== + dependencies: + unique-slug "^3.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +unique-slug@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz" + integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== + dependencies: + imurmurhash "^0.1.4" + +unpipe@~1.0.0, unpipe@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util.promisify@^1.0.0: + version "1.1.1" + resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz" + integrity sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + for-each "^0.3.3" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.1" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +uuid@8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz" + integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== + dependencies: + builtins "^1.0.3" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +w3c-hr-time@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== + dependencies: + browser-process-hrtime "^1.0.0" + +w3c-xmlserializer@^1.0.1: + version "1.1.2" + resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz" + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== + dependencies: + domexception "^1.0.1" + webidl-conversions "^4.0.2" + xml-name-validator "^3.0.0" + +walker@^1.0.7, walker@~1.0.5: + version "1.0.8" + resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +watchpack@^2.3.1: + version "2.4.0" + resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +webdriver-js-extender@2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/webdriver-js-extender/-/webdriver-js-extender-2.1.0.tgz" + integrity sha512-lcUKrjbBfCK6MNsh7xaY2UAUmZwe+/ib03AjVOpFobX4O7+83BUveSrLfU0Qsyb1DaKJdQRbuU+kM9aZ6QUhiQ== + dependencies: + "@types/selenium-webdriver" "^3.0.0" + selenium-webdriver "^3.0.1" + +webdriver-manager@^12.1.7: + version "12.1.9" + resolved "https://registry.npmjs.org/webdriver-manager/-/webdriver-manager-12.1.9.tgz" + integrity sha512-Yl113uKm8z4m/KMUVWHq1Sjtla2uxEBtx2Ue3AmIlnlPAKloDn/Lvmy6pqWCUersVISpdMeVpAaGbNnvMuT2LQ== + dependencies: + adm-zip "^0.5.2" + chalk "^1.1.1" + del "^2.2.0" + glob "^7.0.3" + ini "^1.3.4" + minimist "^1.2.0" + q "^1.4.1" + request "^2.87.0" + rimraf "^2.5.2" + semver "^5.3.0" + xml2js "^0.4.17" + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +webpack-dev-middleware@^5.3.0, webpack-dev-middleware@5.3.0: + version "5.3.0" + resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.0.tgz" + integrity sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg== + dependencies: + colorette "^2.0.10" + memfs "^3.2.2" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@^4.0.0, webpack-dev-server@4.7.3: + version "4.7.3" + resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.3.tgz" + integrity sha512-mlxq2AsIw2ag016nixkzUkdyOE8ST2GTy34uKSABp1c4nhjZvH90D5ZRR+UOLSsG4Z3TFahAi72a3ymRtfRm+Q== + dependencies: + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/serve-index" "^1.9.1" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.2.2" + ansi-html-community "^0.0.8" + bonjour "^3.5.0" + chokidar "^3.5.2" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^1.6.0" + default-gateway "^6.0.3" + del "^6.0.0" + express "^4.17.1" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.0" + ipaddr.js "^2.0.1" + open "^8.0.9" + p-retry "^4.5.0" + portfinder "^1.0.28" + schema-utils "^4.0.0" + selfsigned "^2.0.0" + serve-index "^1.9.1" + sockjs "^0.3.21" + spdy "^4.0.2" + strip-ansi "^7.0.0" + webpack-dev-middleware "^5.3.0" + ws "^8.1.0" + +webpack-merge@5.8.0: + version "5.8.0" + resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz" + integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== + dependencies: + clone-deep "^4.0.1" + wildcard "^2.0.0" + +webpack-sources@^3.0.0, webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack-subresource-integrity@5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz" + integrity sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q== + dependencies: + typed-assert "^1.0.8" + +"webpack@^4.0.0 || ^5.0.0", "webpack@^4.37.0 || ^5.0.0", webpack@^5.0.0, webpack@^5.1.0, webpack@^5.12.0, webpack@^5.30.0, webpack@>=2, webpack@>=4.0.1, webpack@5.70.0: + version "5.70.0" + resolved "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz" + integrity sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^0.0.51" + "@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.9.2" + 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.9" + 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.1" + webpack-sources "^3.2.3" + +websocket-driver@^0.7.4, websocket-driver@>=0.5.1: + version "0.7.4" + resolved "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz" + integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + 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" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.9, which@^1.3.0: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +wildcard@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" + integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== + +word-wrap@~1.2.3: + 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== + +wrap-ansi@^5.1.0: + 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== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@2.4.1: + version "2.4.1" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz" + integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +ws@^5.2.0: + version "5.2.3" + resolved "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz" + integrity sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA== + dependencies: + async-limiter "~1.0.0" + +ws@^6.1.2: + version "6.2.2" + resolved "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz" + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + dependencies: + async-limiter "~1.0.0" + +ws@^8.1.0: + version "8.12.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.12.1.tgz" + integrity sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew== + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xml2js@^0.4.17: + version "0.4.23" + resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz" + integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== + dependencies: + sax ">=0.6.0" + xmlbuilder "~11.0.0" + +xmlbuilder@~11.0.0: + version "11.0.1" + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz" + integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== + +xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-parser@10.x: + version "10.1.0" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz" + integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== + dependencies: + camelcase "^4.1.0" + +yargs@^13.3.0: + version "13.3.2" + resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + 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" + +yargs@^15.3.1: + version "15.4.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.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 "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yargs@^17.2.1: + version "17.6.2" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz" + integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz" + integrity sha1-5a2ryKz0CPY4X8dklWhMiOavaJo= + +zone.js@~0.10.2, zone.js@~0.10.3: + version "0.10.3" + resolved "https://registry.npmjs.org/zone.js/-/zone.js-0.10.3.tgz" + integrity sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg== + +zone.js@~0.11.4: + version "0.11.8" + resolved "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz" + integrity sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA== + dependencies: + tslib "^2.3.0"