├── .vscode └── settings.json ├── .gitignore ├── .prettierrc ├── tsconfig.json ├── .eslintrc ├── abis ├── ERC20NameBytes.json ├── ERC20SymbolBytes.json ├── factory.json ├── ERC20.json └── pair.json ├── schema.graphql ├── .github └── workflows │ └── CI.yml ├── README.md ├── package.json ├── subgraph.yaml ├── src └── mappings │ └── swaps.ts ├── LICENSE └── yarn.lock /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "black" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | src/types/ 4 | .DS_STORE 5 | yarn-error.log -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true, 4 | "printWidth": 120 5 | } 6 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/@graphprotocol/graph-ts/tsconfig.json", 3 | "compilerOptions": { 4 | "types": ["@graphprotocol/graph-ts"] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "@typescript-eslint/parser", 3 | "plugins": ["@typescript-eslint"], 4 | "extends": ["plugin:@typescript-eslint/recommended", "prettier", "prettier/@typescript-eslint"] 5 | } 6 | -------------------------------------------------------------------------------- /abis/ERC20NameBytes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "constant": true, 4 | "inputs": [], 5 | "name": "name", 6 | "outputs": [ 7 | { 8 | "internalType": "bytes32", 9 | "name": "", 10 | "type": "bytes32" 11 | } 12 | ], 13 | "payable": false, 14 | "stateMutability": "view", 15 | "type": "function" 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /abis/ERC20SymbolBytes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "constant": true, 4 | "inputs": [], 5 | "name": "symbol", 6 | "outputs": [ 7 | { 8 | "internalType": "bytes32", 9 | "name": "", 10 | "type": "bytes32" 11 | } 12 | ], 13 | "payable": false, 14 | "stateMutability": "view", 15 | "type": "function" 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- 1 | type Pair @entity { 2 | id: ID! # address 3 | token0: Bytes! 4 | token1: Bytes! 5 | } 6 | 7 | type Candle @entity { 8 | id: ID! # time + period + srcToken + dstToken 9 | time: Int! 10 | period: Int! 11 | lastBlock: Int! 12 | token0: Bytes! 13 | token1: Bytes! 14 | 15 | token0TotalAmount: BigInt! 16 | token1TotalAmount: BigInt! 17 | open: BigDecimal! 18 | close: BigDecimal! 19 | low: BigDecimal! 20 | high: BigDecimal! 21 | } 22 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | 9 | jobs: 10 | test: 11 | strategy: 12 | matrix: 13 | node: ['10.x', '12.x'] 14 | os: [ubuntu-latest] 15 | 16 | runs-on: ${{ matrix.os }} 17 | 18 | steps: 19 | - uses: actions/checkout@v1 20 | - uses: actions/setup-node@v1 21 | with: 22 | node-version: ${{ matrix.node }} 23 | 24 | - run: npm install -g yarn 25 | 26 | - id: yarn-cache 27 | run: echo "::set-output name=dir::$(yarn cache dir)" 28 | - uses: actions/cache@v1 29 | with: 30 | path: ${{ steps.yarn-cache.outputs.dir }} 31 | key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }} 32 | restore-keys: | 33 | ${{ matrix.os }}-yarn- 34 | 35 | - run: yarn 36 | 37 | - run: yarn codegen 38 | - run: yarn build 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DEX Candles Subgraph 2 | 3 | This subgraph tracks all the DEX trades with 5m/15m/1h/4h/1d/1w candles. 4 | 5 | ## Protocols 6 | 7 | - [x] Uniswap V2 8 | - [ ] Uniswap V1 9 | - [ ] Mooniswap 10 | - [ ] 1inch Liquidity Protocol 1.0 11 | - [ ] 1inch Liquidity Protocol 1.1 12 | - [ ] Kyber Network 13 | - [ ] Bancor Network 14 | - [ ] 0x Protocol (excluding private orders) 15 | - [ ] Oasis 16 | 17 | ## Example 18 | 19 | Query 1h candles (3600 seconds) for first week of 2021: `2020-01-01` (1609459200) - `2020-01-07` (1609977600): 20 | 21 | ```graphql 22 | { 23 | candles(where: {period: 3600, time_in: [1609459200, 1609977600]}) { 24 | id 25 | time 26 | open 27 | close 28 | low 29 | high 30 | token0TotalAmount 31 | token1TotalAmount 32 | } 33 | } 34 | ``` 35 | 36 | ## Schema 37 | 38 | ```graphql 39 | type Candle @entity { 40 | id: ID! # time + period + srcToken + dstToken 41 | time: Int! 42 | period: Int! 43 | token0TotalAmount: BigInt! 44 | token1TotalAmount: BigInt! 45 | open: BigDecimal! 46 | close: BigDecimal! 47 | low: BigDecimal! 48 | high: BigDecimal! 49 | } 50 | ``` 51 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uniswap-v2-subgraph", 3 | "version": "1.0.0", 4 | "repository": "https://github.com/graphprotocol/uniswap-v2-subgraph", 5 | "license": "GPL-3.0-or-later", 6 | "scripts": { 7 | "codegen": "graph codegen --output-dir src/types/", 8 | "build": "graph build", 9 | "create-local": "graph create 1inch-exchange/dexcandles --node http://127.0.0.1:8020", 10 | "deploy-local": "graph deploy 1inch-exchange/dexcandles --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020", 11 | "deploy": "graph deploy 1inch-exchange/dexcandles --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/", 12 | "deploy-staging": "graph deploy 1inch-exchange/dexcandles --ipfs https://api.staging.thegraph.com/ipfs/ --node https://api.staging.thegraph.com/deploy/", 13 | "watch-local": "graph deploy 1inch-exchange/dexcandles --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001" 14 | }, 15 | "devDependencies": { 16 | "@graphprotocol/graph-cli": "^0.16.0", 17 | "@graphprotocol/graph-ts": "^0.16.0", 18 | "@typescript-eslint/eslint-plugin": "^2.0.0", 19 | "@typescript-eslint/parser": "^2.0.0", 20 | "eslint": "^6.2.2", 21 | "eslint-config-prettier": "^6.1.0", 22 | "prettier": "^1.18.2", 23 | "typescript": "^3.5.2" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /subgraph.yaml: -------------------------------------------------------------------------------- 1 | specVersion: 0.0.2 2 | description: DEX trades candles (5m/15m/1h/4h/1d/1w) 3 | repository: https://github.com/1inch-exchange 4 | schema: 5 | file: ./schema.graphql 6 | dataSources: 7 | - kind: ethereum/contract 8 | name: Factory 9 | network: mainnet 10 | source: 11 | address: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f' 12 | abi: Factory 13 | startBlock: 10000834 14 | mapping: 15 | kind: ethereum/events 16 | apiVersion: 0.0.3 17 | language: wasm/assemblyscript 18 | file: ./src/mappings/swaps.ts 19 | entities: 20 | - Pair 21 | abis: 22 | - name: Factory 23 | file: ./abis/factory.json 24 | eventHandlers: 25 | - event: PairCreated(indexed address,indexed address,address,uint256) 26 | handler: handleNewPair 27 | templates: 28 | - kind: ethereum/contract 29 | name: Pair 30 | network: mainnet 31 | source: 32 | abi: Pair 33 | mapping: 34 | kind: ethereum/events 35 | apiVersion: 0.0.3 36 | language: wasm/assemblyscript 37 | file: ./src/mappings/swaps.ts 38 | entities: 39 | - Pair 40 | abis: 41 | - name: Pair 42 | file: ./abis/pair.json 43 | eventHandlers: 44 | - event: Swap(indexed address,uint256,uint256,uint256,uint256,indexed address) 45 | handler: handleSwap 46 | 47 | -------------------------------------------------------------------------------- /src/mappings/swaps.ts: -------------------------------------------------------------------------------- 1 | import { log, BigInt, BigDecimal, Value, Bytes, Address } from '@graphprotocol/graph-ts' 2 | import { concat } from '@graphprotocol/graph-ts/helper-functions' 3 | import { Swap } from '../types/templates/Pair/Pair' 4 | import { PairCreated } from '../types/Factory/Factory' 5 | import { Pair as PairTemplate } from '../types/templates' 6 | import { Pair, Candle } from '../types/schema' 7 | 8 | export function handleNewPair(event: PairCreated): void { 9 | let pair = new Pair(event.params.pair.toHex()); 10 | pair.token0 = event.params.token0; 11 | pair.token1 = event.params.token1; 12 | pair.save(); 13 | 14 | PairTemplate.create(event.params.pair) 15 | } 16 | 17 | export function handleSwap(event: Swap): void { 18 | let token0Amount: BigInt = event.params.amount0In.minus(event.params.amount0Out).abs(); 19 | let token1Amount: BigInt = event.params.amount1Out.minus(event.params.amount1In).abs(); 20 | if (token0Amount.isZero() || token1Amount.isZero()) { 21 | return; 22 | } 23 | 24 | let pair = Pair.load(event.address.toHex()); 25 | let price = token0Amount.divDecimal(token1Amount.toBigDecimal()); 26 | let tokens = concat(pair.token0, pair.token1); 27 | let timestamp = event.block.timestamp.toI32(); 28 | 29 | let periods: i32[] = [5*60, 15*60, 60*60, 4*60*60, 24*60*60, 7*24*60*60]; 30 | for (let i = 0; i < periods.length; i++) { 31 | let time_id = timestamp / periods[i]; 32 | let candle_id = concat(concat(Bytes.fromI32(time_id), Bytes.fromI32(periods[i])), tokens).toHex(); 33 | let candle = Candle.load(candle_id); 34 | if (candle === null) { 35 | candle = new Candle(candle_id); 36 | candle.time = timestamp; 37 | candle.period = periods[i]; 38 | candle.token0 = pair.token0; 39 | candle.token1 = pair.token1; 40 | candle.open = price; 41 | candle.low = price; 42 | candle.high = price; 43 | candle.token0TotalAmount = BigInt.fromI32(0); 44 | candle.token1TotalAmount = BigInt.fromI32(0); 45 | } 46 | else { 47 | if (price < candle.low) { 48 | candle.low = price; 49 | } 50 | if (price > candle.high) { 51 | candle.high = price; 52 | } 53 | } 54 | 55 | candle.close = price; 56 | candle.lastBlock = event.block.number.toI32(); 57 | candle.token0TotalAmount = candle.token0TotalAmount.plus(token0Amount); 58 | candle.token1TotalAmount = candle.token1TotalAmount.plus(token1Amount); 59 | candle.save(); 60 | } 61 | } -------------------------------------------------------------------------------- /abis/factory.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "inputs": [ 4 | { 5 | "internalType": "address", 6 | "name": "_feeToSetter", 7 | "type": "address" 8 | } 9 | ], 10 | "payable": false, 11 | "stateMutability": "nonpayable", 12 | "type": "constructor" 13 | }, 14 | { 15 | "anonymous": false, 16 | "inputs": [ 17 | { 18 | "indexed": true, 19 | "internalType": "address", 20 | "name": "token0", 21 | "type": "address" 22 | }, 23 | { 24 | "indexed": true, 25 | "internalType": "address", 26 | "name": "token1", 27 | "type": "address" 28 | }, 29 | { 30 | "indexed": false, 31 | "internalType": "address", 32 | "name": "pair", 33 | "type": "address" 34 | }, 35 | { 36 | "indexed": false, 37 | "internalType": "uint256", 38 | "name": "", 39 | "type": "uint256" 40 | } 41 | ], 42 | "name": "PairCreated", 43 | "type": "event" 44 | }, 45 | { 46 | "constant": true, 47 | "inputs": [ 48 | { 49 | "internalType": "uint256", 50 | "name": "", 51 | "type": "uint256" 52 | } 53 | ], 54 | "name": "allPairs", 55 | "outputs": [ 56 | { 57 | "internalType": "address", 58 | "name": "", 59 | "type": "address" 60 | } 61 | ], 62 | "payable": false, 63 | "stateMutability": "view", 64 | "type": "function" 65 | }, 66 | { 67 | "constant": true, 68 | "inputs": [], 69 | "name": "allPairsLength", 70 | "outputs": [ 71 | { 72 | "internalType": "uint256", 73 | "name": "", 74 | "type": "uint256" 75 | } 76 | ], 77 | "payable": false, 78 | "stateMutability": "view", 79 | "type": "function" 80 | }, 81 | { 82 | "constant": false, 83 | "inputs": [ 84 | { 85 | "internalType": "address", 86 | "name": "tokenA", 87 | "type": "address" 88 | }, 89 | { 90 | "internalType": "address", 91 | "name": "tokenB", 92 | "type": "address" 93 | } 94 | ], 95 | "name": "createPair", 96 | "outputs": [ 97 | { 98 | "internalType": "address", 99 | "name": "pair", 100 | "type": "address" 101 | } 102 | ], 103 | "payable": false, 104 | "stateMutability": "nonpayable", 105 | "type": "function" 106 | }, 107 | { 108 | "constant": true, 109 | "inputs": [], 110 | "name": "feeTo", 111 | "outputs": [ 112 | { 113 | "internalType": "address", 114 | "name": "", 115 | "type": "address" 116 | } 117 | ], 118 | "payable": false, 119 | "stateMutability": "view", 120 | "type": "function" 121 | }, 122 | { 123 | "constant": true, 124 | "inputs": [], 125 | "name": "feeToSetter", 126 | "outputs": [ 127 | { 128 | "internalType": "address", 129 | "name": "", 130 | "type": "address" 131 | } 132 | ], 133 | "payable": false, 134 | "stateMutability": "view", 135 | "type": "function" 136 | }, 137 | { 138 | "constant": true, 139 | "inputs": [ 140 | { 141 | "internalType": "address", 142 | "name": "", 143 | "type": "address" 144 | }, 145 | { 146 | "internalType": "address", 147 | "name": "", 148 | "type": "address" 149 | } 150 | ], 151 | "name": "getPair", 152 | "outputs": [ 153 | { 154 | "internalType": "address", 155 | "name": "", 156 | "type": "address" 157 | } 158 | ], 159 | "payable": false, 160 | "stateMutability": "view", 161 | "type": "function" 162 | }, 163 | { 164 | "constant": false, 165 | "inputs": [ 166 | { 167 | "internalType": "address", 168 | "name": "_feeTo", 169 | "type": "address" 170 | } 171 | ], 172 | "name": "setFeeTo", 173 | "outputs": [], 174 | "payable": false, 175 | "stateMutability": "nonpayable", 176 | "type": "function" 177 | }, 178 | { 179 | "constant": false, 180 | "inputs": [ 181 | { 182 | "internalType": "address", 183 | "name": "_feeToSetter", 184 | "type": "address" 185 | } 186 | ], 187 | "name": "setFeeToSetter", 188 | "outputs": [], 189 | "payable": false, 190 | "stateMutability": "nonpayable", 191 | "type": "function" 192 | } 193 | ] 194 | -------------------------------------------------------------------------------- /abis/ERC20.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "constant": true, 4 | "inputs": [], 5 | "name": "name", 6 | "outputs": [ 7 | { 8 | "name": "", 9 | "type": "string" 10 | } 11 | ], 12 | "payable": false, 13 | "stateMutability": "view", 14 | "type": "function" 15 | }, 16 | { 17 | "constant": false, 18 | "inputs": [ 19 | { 20 | "name": "_spender", 21 | "type": "address" 22 | }, 23 | { 24 | "name": "_value", 25 | "type": "uint256" 26 | } 27 | ], 28 | "name": "approve", 29 | "outputs": [ 30 | { 31 | "name": "", 32 | "type": "bool" 33 | } 34 | ], 35 | "payable": false, 36 | "stateMutability": "nonpayable", 37 | "type": "function" 38 | }, 39 | { 40 | "constant": true, 41 | "inputs": [], 42 | "name": "totalSupply", 43 | "outputs": [ 44 | { 45 | "name": "", 46 | "type": "uint256" 47 | } 48 | ], 49 | "payable": false, 50 | "stateMutability": "view", 51 | "type": "function" 52 | }, 53 | { 54 | "constant": false, 55 | "inputs": [ 56 | { 57 | "name": "_from", 58 | "type": "address" 59 | }, 60 | { 61 | "name": "_to", 62 | "type": "address" 63 | }, 64 | { 65 | "name": "_value", 66 | "type": "uint256" 67 | } 68 | ], 69 | "name": "transferFrom", 70 | "outputs": [ 71 | { 72 | "name": "", 73 | "type": "bool" 74 | } 75 | ], 76 | "payable": false, 77 | "stateMutability": "nonpayable", 78 | "type": "function" 79 | }, 80 | { 81 | "constant": true, 82 | "inputs": [], 83 | "name": "decimals", 84 | "outputs": [ 85 | { 86 | "name": "", 87 | "type": "uint8" 88 | } 89 | ], 90 | "payable": false, 91 | "stateMutability": "view", 92 | "type": "function" 93 | }, 94 | { 95 | "constant": true, 96 | "inputs": [ 97 | { 98 | "name": "_owner", 99 | "type": "address" 100 | } 101 | ], 102 | "name": "balanceOf", 103 | "outputs": [ 104 | { 105 | "name": "balance", 106 | "type": "uint256" 107 | } 108 | ], 109 | "payable": false, 110 | "stateMutability": "view", 111 | "type": "function" 112 | }, 113 | { 114 | "constant": true, 115 | "inputs": [], 116 | "name": "symbol", 117 | "outputs": [ 118 | { 119 | "name": "", 120 | "type": "string" 121 | } 122 | ], 123 | "payable": false, 124 | "stateMutability": "view", 125 | "type": "function" 126 | }, 127 | { 128 | "constant": false, 129 | "inputs": [ 130 | { 131 | "name": "_to", 132 | "type": "address" 133 | }, 134 | { 135 | "name": "_value", 136 | "type": "uint256" 137 | } 138 | ], 139 | "name": "transfer", 140 | "outputs": [ 141 | { 142 | "name": "", 143 | "type": "bool" 144 | } 145 | ], 146 | "payable": false, 147 | "stateMutability": "nonpayable", 148 | "type": "function" 149 | }, 150 | { 151 | "constant": true, 152 | "inputs": [ 153 | { 154 | "name": "_owner", 155 | "type": "address" 156 | }, 157 | { 158 | "name": "_spender", 159 | "type": "address" 160 | } 161 | ], 162 | "name": "allowance", 163 | "outputs": [ 164 | { 165 | "name": "", 166 | "type": "uint256" 167 | } 168 | ], 169 | "payable": false, 170 | "stateMutability": "view", 171 | "type": "function" 172 | }, 173 | { 174 | "payable": true, 175 | "stateMutability": "payable", 176 | "type": "fallback" 177 | }, 178 | { 179 | "anonymous": false, 180 | "inputs": [ 181 | { 182 | "indexed": true, 183 | "name": "owner", 184 | "type": "address" 185 | }, 186 | { 187 | "indexed": true, 188 | "name": "spender", 189 | "type": "address" 190 | }, 191 | { 192 | "indexed": false, 193 | "name": "value", 194 | "type": "uint256" 195 | } 196 | ], 197 | "name": "Approval", 198 | "type": "event" 199 | }, 200 | { 201 | "anonymous": false, 202 | "inputs": [ 203 | { 204 | "indexed": true, 205 | "name": "from", 206 | "type": "address" 207 | }, 208 | { 209 | "indexed": true, 210 | "name": "to", 211 | "type": "address" 212 | }, 213 | { 214 | "indexed": false, 215 | "name": "value", 216 | "type": "uint256" 217 | } 218 | ], 219 | "name": "Transfer", 220 | "type": "event" 221 | } 222 | ] 223 | -------------------------------------------------------------------------------- /abis/pair.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "inputs": [], 4 | "payable": false, 5 | "stateMutability": "nonpayable", 6 | "type": "constructor" 7 | }, 8 | { 9 | "anonymous": false, 10 | "inputs": [ 11 | { 12 | "indexed": true, 13 | "internalType": "address", 14 | "name": "owner", 15 | "type": "address" 16 | }, 17 | { 18 | "indexed": true, 19 | "internalType": "address", 20 | "name": "spender", 21 | "type": "address" 22 | }, 23 | { 24 | "indexed": false, 25 | "internalType": "uint256", 26 | "name": "value", 27 | "type": "uint256" 28 | } 29 | ], 30 | "name": "Approval", 31 | "type": "event" 32 | }, 33 | { 34 | "anonymous": false, 35 | "inputs": [ 36 | { 37 | "indexed": true, 38 | "internalType": "address", 39 | "name": "sender", 40 | "type": "address" 41 | }, 42 | { 43 | "indexed": false, 44 | "internalType": "uint256", 45 | "name": "amount0", 46 | "type": "uint256" 47 | }, 48 | { 49 | "indexed": false, 50 | "internalType": "uint256", 51 | "name": "amount1", 52 | "type": "uint256" 53 | }, 54 | { 55 | "indexed": true, 56 | "internalType": "address", 57 | "name": "to", 58 | "type": "address" 59 | } 60 | ], 61 | "name": "Burn", 62 | "type": "event" 63 | }, 64 | { 65 | "anonymous": false, 66 | "inputs": [ 67 | { 68 | "indexed": true, 69 | "internalType": "address", 70 | "name": "sender", 71 | "type": "address" 72 | }, 73 | { 74 | "indexed": false, 75 | "internalType": "uint256", 76 | "name": "amount0", 77 | "type": "uint256" 78 | }, 79 | { 80 | "indexed": false, 81 | "internalType": "uint256", 82 | "name": "amount1", 83 | "type": "uint256" 84 | } 85 | ], 86 | "name": "Mint", 87 | "type": "event" 88 | }, 89 | { 90 | "anonymous": false, 91 | "inputs": [ 92 | { 93 | "indexed": true, 94 | "internalType": "address", 95 | "name": "sender", 96 | "type": "address" 97 | }, 98 | { 99 | "indexed": false, 100 | "internalType": "uint256", 101 | "name": "amount0In", 102 | "type": "uint256" 103 | }, 104 | { 105 | "indexed": false, 106 | "internalType": "uint256", 107 | "name": "amount1In", 108 | "type": "uint256" 109 | }, 110 | { 111 | "indexed": false, 112 | "internalType": "uint256", 113 | "name": "amount0Out", 114 | "type": "uint256" 115 | }, 116 | { 117 | "indexed": false, 118 | "internalType": "uint256", 119 | "name": "amount1Out", 120 | "type": "uint256" 121 | }, 122 | { 123 | "indexed": true, 124 | "internalType": "address", 125 | "name": "to", 126 | "type": "address" 127 | } 128 | ], 129 | "name": "Swap", 130 | "type": "event" 131 | }, 132 | { 133 | "anonymous": false, 134 | "inputs": [ 135 | { 136 | "indexed": false, 137 | "internalType": "uint112", 138 | "name": "reserve0", 139 | "type": "uint112" 140 | }, 141 | { 142 | "indexed": false, 143 | "internalType": "uint112", 144 | "name": "reserve1", 145 | "type": "uint112" 146 | } 147 | ], 148 | "name": "Sync", 149 | "type": "event" 150 | }, 151 | { 152 | "anonymous": false, 153 | "inputs": [ 154 | { 155 | "indexed": true, 156 | "internalType": "address", 157 | "name": "from", 158 | "type": "address" 159 | }, 160 | { 161 | "indexed": true, 162 | "internalType": "address", 163 | "name": "to", 164 | "type": "address" 165 | }, 166 | { 167 | "indexed": false, 168 | "internalType": "uint256", 169 | "name": "value", 170 | "type": "uint256" 171 | } 172 | ], 173 | "name": "Transfer", 174 | "type": "event" 175 | }, 176 | { 177 | "constant": true, 178 | "inputs": [], 179 | "name": "DOMAIN_SEPARATOR", 180 | "outputs": [ 181 | { 182 | "internalType": "bytes32", 183 | "name": "", 184 | "type": "bytes32" 185 | } 186 | ], 187 | "payable": false, 188 | "stateMutability": "view", 189 | "type": "function" 190 | }, 191 | { 192 | "constant": true, 193 | "inputs": [], 194 | "name": "MINIMUM_LIQUIDITY", 195 | "outputs": [ 196 | { 197 | "internalType": "uint256", 198 | "name": "", 199 | "type": "uint256" 200 | } 201 | ], 202 | "payable": false, 203 | "stateMutability": "view", 204 | "type": "function" 205 | }, 206 | { 207 | "constant": true, 208 | "inputs": [], 209 | "name": "PERMIT_TYPEHASH", 210 | "outputs": [ 211 | { 212 | "internalType": "bytes32", 213 | "name": "", 214 | "type": "bytes32" 215 | } 216 | ], 217 | "payable": false, 218 | "stateMutability": "view", 219 | "type": "function" 220 | }, 221 | { 222 | "constant": true, 223 | "inputs": [ 224 | { 225 | "internalType": "address", 226 | "name": "", 227 | "type": "address" 228 | }, 229 | { 230 | "internalType": "address", 231 | "name": "", 232 | "type": "address" 233 | } 234 | ], 235 | "name": "allowance", 236 | "outputs": [ 237 | { 238 | "internalType": "uint256", 239 | "name": "", 240 | "type": "uint256" 241 | } 242 | ], 243 | "payable": false, 244 | "stateMutability": "view", 245 | "type": "function" 246 | }, 247 | { 248 | "constant": false, 249 | "inputs": [ 250 | { 251 | "internalType": "address", 252 | "name": "spender", 253 | "type": "address" 254 | }, 255 | { 256 | "internalType": "uint256", 257 | "name": "value", 258 | "type": "uint256" 259 | } 260 | ], 261 | "name": "approve", 262 | "outputs": [ 263 | { 264 | "internalType": "bool", 265 | "name": "", 266 | "type": "bool" 267 | } 268 | ], 269 | "payable": false, 270 | "stateMutability": "nonpayable", 271 | "type": "function" 272 | }, 273 | { 274 | "constant": true, 275 | "inputs": [ 276 | { 277 | "internalType": "address", 278 | "name": "", 279 | "type": "address" 280 | } 281 | ], 282 | "name": "balanceOf", 283 | "outputs": [ 284 | { 285 | "internalType": "uint256", 286 | "name": "", 287 | "type": "uint256" 288 | } 289 | ], 290 | "payable": false, 291 | "stateMutability": "view", 292 | "type": "function" 293 | }, 294 | { 295 | "constant": false, 296 | "inputs": [ 297 | { 298 | "internalType": "address", 299 | "name": "to", 300 | "type": "address" 301 | } 302 | ], 303 | "name": "burn", 304 | "outputs": [ 305 | { 306 | "internalType": "uint256", 307 | "name": "amount0", 308 | "type": "uint256" 309 | }, 310 | { 311 | "internalType": "uint256", 312 | "name": "amount1", 313 | "type": "uint256" 314 | } 315 | ], 316 | "payable": false, 317 | "stateMutability": "nonpayable", 318 | "type": "function" 319 | }, 320 | { 321 | "constant": true, 322 | "inputs": [], 323 | "name": "decimals", 324 | "outputs": [ 325 | { 326 | "internalType": "uint8", 327 | "name": "", 328 | "type": "uint8" 329 | } 330 | ], 331 | "payable": false, 332 | "stateMutability": "view", 333 | "type": "function" 334 | }, 335 | { 336 | "constant": true, 337 | "inputs": [], 338 | "name": "factory", 339 | "outputs": [ 340 | { 341 | "internalType": "address", 342 | "name": "", 343 | "type": "address" 344 | } 345 | ], 346 | "payable": false, 347 | "stateMutability": "view", 348 | "type": "function" 349 | }, 350 | { 351 | "constant": true, 352 | "inputs": [], 353 | "name": "getReserves", 354 | "outputs": [ 355 | { 356 | "internalType": "uint112", 357 | "name": "_reserve0", 358 | "type": "uint112" 359 | }, 360 | { 361 | "internalType": "uint112", 362 | "name": "_reserve1", 363 | "type": "uint112" 364 | }, 365 | { 366 | "internalType": "uint32", 367 | "name": "_blockTimestampLast", 368 | "type": "uint32" 369 | } 370 | ], 371 | "payable": false, 372 | "stateMutability": "view", 373 | "type": "function" 374 | }, 375 | { 376 | "constant": false, 377 | "inputs": [ 378 | { 379 | "internalType": "address", 380 | "name": "_token0", 381 | "type": "address" 382 | }, 383 | { 384 | "internalType": "address", 385 | "name": "_token1", 386 | "type": "address" 387 | } 388 | ], 389 | "name": "initialize", 390 | "outputs": [], 391 | "payable": false, 392 | "stateMutability": "nonpayable", 393 | "type": "function" 394 | }, 395 | { 396 | "constant": true, 397 | "inputs": [], 398 | "name": "kLast", 399 | "outputs": [ 400 | { 401 | "internalType": "uint256", 402 | "name": "", 403 | "type": "uint256" 404 | } 405 | ], 406 | "payable": false, 407 | "stateMutability": "view", 408 | "type": "function" 409 | }, 410 | { 411 | "constant": false, 412 | "inputs": [ 413 | { 414 | "internalType": "address", 415 | "name": "to", 416 | "type": "address" 417 | } 418 | ], 419 | "name": "mint", 420 | "outputs": [ 421 | { 422 | "internalType": "uint256", 423 | "name": "liquidity", 424 | "type": "uint256" 425 | } 426 | ], 427 | "payable": false, 428 | "stateMutability": "nonpayable", 429 | "type": "function" 430 | }, 431 | { 432 | "constant": true, 433 | "inputs": [], 434 | "name": "name", 435 | "outputs": [ 436 | { 437 | "internalType": "string", 438 | "name": "", 439 | "type": "string" 440 | } 441 | ], 442 | "payable": false, 443 | "stateMutability": "view", 444 | "type": "function" 445 | }, 446 | { 447 | "constant": true, 448 | "inputs": [ 449 | { 450 | "internalType": "address", 451 | "name": "", 452 | "type": "address" 453 | } 454 | ], 455 | "name": "nonces", 456 | "outputs": [ 457 | { 458 | "internalType": "uint256", 459 | "name": "", 460 | "type": "uint256" 461 | } 462 | ], 463 | "payable": false, 464 | "stateMutability": "view", 465 | "type": "function" 466 | }, 467 | { 468 | "constant": false, 469 | "inputs": [ 470 | { 471 | "internalType": "address", 472 | "name": "owner", 473 | "type": "address" 474 | }, 475 | { 476 | "internalType": "address", 477 | "name": "spender", 478 | "type": "address" 479 | }, 480 | { 481 | "internalType": "uint256", 482 | "name": "value", 483 | "type": "uint256" 484 | }, 485 | { 486 | "internalType": "uint256", 487 | "name": "deadline", 488 | "type": "uint256" 489 | }, 490 | { 491 | "internalType": "uint8", 492 | "name": "v", 493 | "type": "uint8" 494 | }, 495 | { 496 | "internalType": "bytes32", 497 | "name": "r", 498 | "type": "bytes32" 499 | }, 500 | { 501 | "internalType": "bytes32", 502 | "name": "s", 503 | "type": "bytes32" 504 | } 505 | ], 506 | "name": "permit", 507 | "outputs": [], 508 | "payable": false, 509 | "stateMutability": "nonpayable", 510 | "type": "function" 511 | }, 512 | { 513 | "constant": true, 514 | "inputs": [], 515 | "name": "price0CumulativeLast", 516 | "outputs": [ 517 | { 518 | "internalType": "uint256", 519 | "name": "", 520 | "type": "uint256" 521 | } 522 | ], 523 | "payable": false, 524 | "stateMutability": "view", 525 | "type": "function" 526 | }, 527 | { 528 | "constant": true, 529 | "inputs": [], 530 | "name": "price1CumulativeLast", 531 | "outputs": [ 532 | { 533 | "internalType": "uint256", 534 | "name": "", 535 | "type": "uint256" 536 | } 537 | ], 538 | "payable": false, 539 | "stateMutability": "view", 540 | "type": "function" 541 | }, 542 | { 543 | "constant": false, 544 | "inputs": [ 545 | { 546 | "internalType": "address", 547 | "name": "to", 548 | "type": "address" 549 | } 550 | ], 551 | "name": "skim", 552 | "outputs": [], 553 | "payable": false, 554 | "stateMutability": "nonpayable", 555 | "type": "function" 556 | }, 557 | { 558 | "constant": false, 559 | "inputs": [ 560 | { 561 | "internalType": "uint256", 562 | "name": "amount0Out", 563 | "type": "uint256" 564 | }, 565 | { 566 | "internalType": "uint256", 567 | "name": "amount1Out", 568 | "type": "uint256" 569 | }, 570 | { 571 | "internalType": "address", 572 | "name": "to", 573 | "type": "address" 574 | }, 575 | { 576 | "internalType": "bytes", 577 | "name": "data", 578 | "type": "bytes" 579 | } 580 | ], 581 | "name": "swap", 582 | "outputs": [], 583 | "payable": false, 584 | "stateMutability": "nonpayable", 585 | "type": "function" 586 | }, 587 | { 588 | "constant": true, 589 | "inputs": [], 590 | "name": "symbol", 591 | "outputs": [ 592 | { 593 | "internalType": "string", 594 | "name": "", 595 | "type": "string" 596 | } 597 | ], 598 | "payable": false, 599 | "stateMutability": "view", 600 | "type": "function" 601 | }, 602 | { 603 | "constant": false, 604 | "inputs": [], 605 | "name": "sync", 606 | "outputs": [], 607 | "payable": false, 608 | "stateMutability": "nonpayable", 609 | "type": "function" 610 | }, 611 | { 612 | "constant": true, 613 | "inputs": [], 614 | "name": "token0", 615 | "outputs": [ 616 | { 617 | "internalType": "address", 618 | "name": "", 619 | "type": "address" 620 | } 621 | ], 622 | "payable": false, 623 | "stateMutability": "view", 624 | "type": "function" 625 | }, 626 | { 627 | "constant": true, 628 | "inputs": [], 629 | "name": "token1", 630 | "outputs": [ 631 | { 632 | "internalType": "address", 633 | "name": "", 634 | "type": "address" 635 | } 636 | ], 637 | "payable": false, 638 | "stateMutability": "view", 639 | "type": "function" 640 | }, 641 | { 642 | "constant": true, 643 | "inputs": [], 644 | "name": "totalSupply", 645 | "outputs": [ 646 | { 647 | "internalType": "uint256", 648 | "name": "", 649 | "type": "uint256" 650 | } 651 | ], 652 | "payable": false, 653 | "stateMutability": "view", 654 | "type": "function" 655 | }, 656 | { 657 | "constant": false, 658 | "inputs": [ 659 | { 660 | "internalType": "address", 661 | "name": "to", 662 | "type": "address" 663 | }, 664 | { 665 | "internalType": "uint256", 666 | "name": "value", 667 | "type": "uint256" 668 | } 669 | ], 670 | "name": "transfer", 671 | "outputs": [ 672 | { 673 | "internalType": "bool", 674 | "name": "", 675 | "type": "bool" 676 | } 677 | ], 678 | "payable": false, 679 | "stateMutability": "nonpayable", 680 | "type": "function" 681 | }, 682 | { 683 | "constant": false, 684 | "inputs": [ 685 | { 686 | "internalType": "address", 687 | "name": "from", 688 | "type": "address" 689 | }, 690 | { 691 | "internalType": "address", 692 | "name": "to", 693 | "type": "address" 694 | }, 695 | { 696 | "internalType": "uint256", 697 | "name": "value", 698 | "type": "uint256" 699 | } 700 | ], 701 | "name": "transferFrom", 702 | "outputs": [ 703 | { 704 | "internalType": "bool", 705 | "name": "", 706 | "type": "bool" 707 | } 708 | ], 709 | "payable": false, 710 | "stateMutability": "nonpayable", 711 | "type": "function" 712 | } 713 | ] 714 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.5.5" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" 8 | integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== 9 | dependencies: 10 | "@babel/highlight" "^7.0.0" 11 | 12 | "@babel/highlight@^7.0.0": 13 | version "7.5.0" 14 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" 15 | integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== 16 | dependencies: 17 | chalk "^2.0.0" 18 | esutils "^2.0.2" 19 | js-tokens "^4.0.0" 20 | 21 | "@babel/runtime@^7.6.3": 22 | version "7.6.3" 23 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.3.tgz#935122c74c73d2240cafd32ddb5fc2a6cd35cf1f" 24 | integrity sha512-kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bbu6rYvLOpPh/RusSJXuKPEAoZ7L7gybZkchE8+NV5g9vKF4AGAtsA== 25 | dependencies: 26 | regenerator-runtime "^0.13.2" 27 | 28 | "@graphprotocol/graph-cli@^0.16.0": 29 | version "0.16.0" 30 | resolved "https://registry.yarnpkg.com/@graphprotocol/graph-cli/-/graph-cli-0.16.0.tgz#0829a42a2ec4c122fbdb8bfb482b74e0d27db935" 31 | integrity sha512-tTpJc9waeRPzhF/aeWxu4jGW7GonVTQBeubTGVC6B2oFHpADXrQdthPgpmtThexXGHk46q14bHLuiSEm6ZBpkw== 32 | dependencies: 33 | assemblyscript "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" 34 | chalk "^2.4.1" 35 | chokidar "^3.0.2" 36 | debug "^4.1.1" 37 | fs-extra "^8.1.0" 38 | glob "^7.1.2" 39 | gluegun "^3.0.0" 40 | graphql "^14.0.2" 41 | immutable "^3.8.2" 42 | ipfs-http-client "^34.0.0" 43 | jayson "^3.0.2" 44 | js-yaml "^3.13.1" 45 | node-fetch "^2.3.0" 46 | pkginfo "^0.4.1" 47 | prettier "^1.13.5" 48 | request "^2.88.0" 49 | yaml "^1.5.1" 50 | optionalDependencies: 51 | keytar "^4.6.0" 52 | 53 | "@graphprotocol/graph-ts@^0.16.0": 54 | version "0.16.0" 55 | resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.16.0.tgz#a6f5e8a39b7d651887c80bb2422cfb3a0fbf55d7" 56 | integrity sha512-zDhlIYlzE0xq5cJkF6fGwshfPR2z6rRZetNCgEclAtDv1uPSQaPQJuiIWL2hpTMjYHLX2OSNxy8F1G69jC708A== 57 | dependencies: 58 | assemblyscript "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" 59 | 60 | "@protobufjs/utf8@^1.1.0": 61 | version "1.1.0" 62 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 63 | integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= 64 | 65 | "@types/connect@^3.4.32": 66 | version "3.4.32" 67 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.32.tgz#aa0e9616b9435ccad02bc52b5b454ffc2c70ba28" 68 | integrity sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg== 69 | dependencies: 70 | "@types/node" "*" 71 | 72 | "@types/eslint-visitor-keys@^1.0.0": 73 | version "1.0.0" 74 | resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 75 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 76 | 77 | "@types/express-serve-static-core@^4.16.9": 78 | version "4.16.10" 79 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.16.10.tgz#3c1313c6e6b75594561b473a286f016a9abf2132" 80 | integrity sha512-gM6evDj0OvTILTRKilh9T5dTaGpv1oYiFcJAfgSejuMJgGJUsD9hKEU2lB4aiTNy4WwChxRnjfYFuBQsULzsJw== 81 | dependencies: 82 | "@types/node" "*" 83 | "@types/range-parser" "*" 84 | 85 | "@types/json-schema@^7.0.3": 86 | version "7.0.3" 87 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636" 88 | integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A== 89 | 90 | "@types/lodash@^4.14.139": 91 | version "4.14.144" 92 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.144.tgz#12e57fc99064bce45e5ab3c8bc4783feb75eab8e" 93 | integrity sha512-ogI4g9W5qIQQUhXAclq6zhqgqNUr7UlFaqDHbch7WLSLeeM/7d3CRaw7GLajxvyFvhJqw4Rpcz5bhoaYtIx6Tg== 94 | 95 | "@types/node@*", "@types/node@^12.7.7": 96 | version "12.11.2" 97 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.2.tgz#75ba3beda30d690b89a5089ca1c6e8e386150b76" 98 | integrity sha512-dsfE4BHJkLQW+reOS6b17xhZ/6FB1rB8eRRvO08nn5o+voxf3i74tuyFWNH6djdfgX7Sm5s6LD8t6mJug4dpDw== 99 | 100 | "@types/range-parser@*": 101 | version "1.2.3" 102 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" 103 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== 104 | 105 | "@typescript-eslint/eslint-plugin@^2.0.0": 106 | version "2.0.0" 107 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.0.0.tgz#609a5d7b00ce21a6f94d7ef282eba9da57ca1e42" 108 | integrity sha512-Mo45nxTTELODdl7CgpZKJISvLb+Fu64OOO2ZFc2x8sYSnUpFrBUW3H+H/ZGYmEkfnL6VkdtOSxgdt+Av79j0sA== 109 | dependencies: 110 | "@typescript-eslint/experimental-utils" "2.0.0" 111 | eslint-utils "^1.4.0" 112 | functional-red-black-tree "^1.0.1" 113 | regexpp "^2.0.1" 114 | tsutils "^3.14.0" 115 | 116 | "@typescript-eslint/experimental-utils@2.0.0": 117 | version "2.0.0" 118 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.0.0.tgz#f3d298bb411357f35c4184e24280b256b6321949" 119 | integrity sha512-XGJG6GNBXIEx/mN4eTRypN/EUmsd0VhVGQ1AG+WTgdvjHl0G8vHhVBHrd/5oI6RRYBRnedNymSYWW1HAdivtmg== 120 | dependencies: 121 | "@types/json-schema" "^7.0.3" 122 | "@typescript-eslint/typescript-estree" "2.0.0" 123 | eslint-scope "^4.0.0" 124 | 125 | "@typescript-eslint/parser@^2.0.0": 126 | version "2.0.0" 127 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.0.0.tgz#4273bb19d03489daf8372cdaccbc8042e098178f" 128 | integrity sha512-ibyMBMr0383ZKserIsp67+WnNVoM402HKkxqXGlxEZsXtnGGurbnY90pBO3e0nBUM7chEEOcxUhgw9aPq7fEBA== 129 | dependencies: 130 | "@types/eslint-visitor-keys" "^1.0.0" 131 | "@typescript-eslint/experimental-utils" "2.0.0" 132 | "@typescript-eslint/typescript-estree" "2.0.0" 133 | eslint-visitor-keys "^1.0.0" 134 | 135 | "@typescript-eslint/typescript-estree@2.0.0": 136 | version "2.0.0" 137 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.0.0.tgz#c9f6c0efd1b11475540d6a55dc973cc5b9a67e77" 138 | integrity sha512-NXbmzA3vWrSgavymlzMWNecgNOuiMMp62MO3kI7awZRLRcsA1QrYWo6q08m++uuAGVbXH/prZi2y1AWuhSu63w== 139 | dependencies: 140 | lodash.unescape "4.0.1" 141 | semver "^6.2.0" 142 | 143 | JSONStream@^1.3.1: 144 | version "1.3.5" 145 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 146 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 147 | dependencies: 148 | jsonparse "^1.2.0" 149 | through ">=2.2.7 <3" 150 | 151 | abort-controller@^3.0.0: 152 | version "3.0.0" 153 | resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" 154 | integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== 155 | dependencies: 156 | event-target-shim "^5.0.0" 157 | 158 | acorn-jsx@^5.0.2: 159 | version "5.0.2" 160 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f" 161 | integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw== 162 | 163 | acorn@^7.0.0: 164 | version "7.1.1" 165 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" 166 | integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== 167 | 168 | ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: 169 | version "6.10.2" 170 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" 171 | integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== 172 | dependencies: 173 | fast-deep-equal "^2.0.1" 174 | fast-json-stable-stringify "^2.0.0" 175 | json-schema-traverse "^0.4.1" 176 | uri-js "^4.2.2" 177 | 178 | ansi-colors@^3.2.1: 179 | version "3.2.4" 180 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 181 | integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 182 | 183 | ansi-escapes@^3.2.0: 184 | version "3.2.0" 185 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 186 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 187 | 188 | ansi-regex@^2.0.0: 189 | version "2.1.1" 190 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 191 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 192 | 193 | ansi-regex@^3.0.0: 194 | version "3.0.0" 195 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 196 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 197 | 198 | ansi-regex@^4.1.0: 199 | version "4.1.0" 200 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 201 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 202 | 203 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 204 | version "3.2.1" 205 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 206 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 207 | dependencies: 208 | color-convert "^1.9.0" 209 | 210 | anymatch@~3.1.1: 211 | version "3.1.1" 212 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 213 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 214 | dependencies: 215 | normalize-path "^3.0.0" 216 | picomatch "^2.0.4" 217 | 218 | apisauce@^1.0.1: 219 | version "1.0.5" 220 | resolved "https://registry.yarnpkg.com/apisauce/-/apisauce-1.0.5.tgz#bae76c41719821108552984e746c56d1863be048" 221 | integrity sha512-iXqkqCph/yp1AmmGm/SBN2lWAhX8F++etLBb40MLM+cb/2gF490bVhb7kl6wmM6VoSSDsirLalOziITVBMXdnA== 222 | dependencies: 223 | axios "^0.19.0" 224 | ramda "^0.25.0" 225 | 226 | app-module-path@^2.2.0: 227 | version "2.2.0" 228 | resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" 229 | integrity sha1-ZBqlXft9am8KgUHEucCqULbCTdU= 230 | 231 | aproba@^1.0.3: 232 | version "1.2.0" 233 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 234 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 235 | 236 | are-we-there-yet@~1.1.2: 237 | version "1.1.5" 238 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 239 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 240 | dependencies: 241 | delegates "^1.0.0" 242 | readable-stream "^2.0.6" 243 | 244 | argparse@^1.0.7: 245 | version "1.0.10" 246 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 247 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 248 | dependencies: 249 | sprintf-js "~1.0.2" 250 | 251 | asmcrypto.js@^2.3.2: 252 | version "2.3.2" 253 | resolved "https://registry.yarnpkg.com/asmcrypto.js/-/asmcrypto.js-2.3.2.tgz#b9f84bd0a1fb82f21f8c29cc284a707ad17bba2e" 254 | integrity sha512-3FgFARf7RupsZETQ1nHnhLUUvpcttcCq1iZCaVAbJZbCZ5VNRrNyvpDyHTOb0KC3llFcsyOT/a99NZcCbeiEsA== 255 | 256 | asn1.js@^5.0.1: 257 | version "5.2.0" 258 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.2.0.tgz#292c0357f26a47802ac9727e8772c09c7fc9bd85" 259 | integrity sha512-Q7hnYGGNYbcmGrCPulXfkEw7oW7qjWeM4ZTALmgpuIcZLxyqqKYWxCZg2UBm8bklrnB4m2mGyJPWfoktdORD8A== 260 | dependencies: 261 | bn.js "^4.0.0" 262 | inherits "^2.0.1" 263 | minimalistic-assert "^1.0.0" 264 | 265 | asn1@~0.2.3: 266 | version "0.2.4" 267 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 268 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 269 | dependencies: 270 | safer-buffer "~2.1.0" 271 | 272 | "assemblyscript@https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3": 273 | version "0.6.0" 274 | resolved "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" 275 | dependencies: 276 | "@protobufjs/utf8" "^1.1.0" 277 | binaryen "77.0.0-nightly.20190407" 278 | glob "^7.1.3" 279 | long "^4.0.0" 280 | opencollective-postinstall "^2.0.0" 281 | source-map-support "^0.5.11" 282 | 283 | assert-plus@1.0.0, assert-plus@^1.0.0: 284 | version "1.0.0" 285 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 286 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 287 | 288 | astral-regex@^1.0.0: 289 | version "1.0.0" 290 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 291 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 292 | 293 | async@^2.6.1, async@^2.6.2, async@^2.6.3: 294 | version "2.6.3" 295 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" 296 | integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== 297 | dependencies: 298 | lodash "^4.17.14" 299 | 300 | asynckit@^0.4.0: 301 | version "0.4.0" 302 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 303 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 304 | 305 | aws-sign2@~0.7.0: 306 | version "0.7.0" 307 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 308 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 309 | 310 | aws4@^1.8.0: 311 | version "1.8.0" 312 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 313 | integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== 314 | 315 | axios@^0.19.0: 316 | version "0.19.0" 317 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" 318 | integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ== 319 | dependencies: 320 | follow-redirects "1.5.10" 321 | is-buffer "^2.0.2" 322 | 323 | balanced-match@^1.0.0: 324 | version "1.0.0" 325 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 326 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 327 | 328 | base-x@3.0.4: 329 | version "3.0.4" 330 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.4.tgz#94c1788736da065edb1d68808869e357c977fa77" 331 | integrity sha512-UYOadoSIkEI/VrRGSG6qp93rp2WdokiAiNYDfGW5qURAY8GiAQkvMbwNNSDYiVJopqv4gCna7xqf4rrNGp+5AA== 332 | dependencies: 333 | safe-buffer "^5.0.1" 334 | 335 | base-x@^3.0.2: 336 | version "3.0.6" 337 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.6.tgz#de047ec95f5f7b99ae63d830a2a894c96538b2cd" 338 | integrity sha512-4PaF8u2+AlViJxRVjurkLTxpp7CaFRD/jo5rPT9ONnKxyhQ8f59yzamEvq7EkriG56yn5On4ONyaG75HLqr46w== 339 | dependencies: 340 | safe-buffer "^5.0.1" 341 | 342 | base64-js@^1.0.2: 343 | version "1.3.1" 344 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" 345 | integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== 346 | 347 | bcrypt-pbkdf@^1.0.0: 348 | version "1.0.2" 349 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 350 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 351 | dependencies: 352 | tweetnacl "^0.14.3" 353 | 354 | bignumber.js@^9.0.0: 355 | version "9.0.0" 356 | resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.0.tgz#805880f84a329b5eac6e7cb6f8274b6d82bdf075" 357 | integrity sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A== 358 | 359 | binary-extensions@^2.0.0: 360 | version "2.0.0" 361 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" 362 | integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== 363 | 364 | binaryen@77.0.0-nightly.20190407: 365 | version "77.0.0-nightly.20190407" 366 | resolved "https://registry.yarnpkg.com/binaryen/-/binaryen-77.0.0-nightly.20190407.tgz#fbe4f8ba0d6bd0809a84eb519d2d5b5ddff3a7d1" 367 | integrity sha512-1mxYNvQ0xywMe582K7V6Vo2zzhZZxMTeGHH8aE/+/AND8f64D8Q1GThVY3RVRwGY/4p+p95ccw9Xbw2ovFXRIg== 368 | 369 | bindings@^1.3.0, bindings@^1.5.0: 370 | version "1.5.0" 371 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" 372 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 373 | dependencies: 374 | file-uri-to-path "1.0.0" 375 | 376 | bip66@^1.1.5: 377 | version "1.1.5" 378 | resolved "https://registry.yarnpkg.com/bip66/-/bip66-1.1.5.tgz#01fa8748785ca70955d5011217d1b3139969ca22" 379 | integrity sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI= 380 | dependencies: 381 | safe-buffer "^5.0.1" 382 | 383 | bl@^1.0.0: 384 | version "1.2.3" 385 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" 386 | integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww== 387 | dependencies: 388 | readable-stream "^2.3.5" 389 | safe-buffer "^5.1.1" 390 | 391 | bl@^3.0.0: 392 | version "3.0.0" 393 | resolved "https://registry.yarnpkg.com/bl/-/bl-3.0.0.tgz#3611ec00579fd18561754360b21e9f784500ff88" 394 | integrity sha512-EUAyP5UHU5hxF8BPT0LKW8gjYLhq1DQIcneOX/pL/m2Alo+OYDQAJlHq+yseMP50Os2nHXOSic6Ss3vSQeyf4A== 395 | dependencies: 396 | readable-stream "^3.0.1" 397 | 398 | blakejs@^1.1.0: 399 | version "1.1.0" 400 | resolved "https://registry.yarnpkg.com/blakejs/-/blakejs-1.1.0.tgz#69df92ef953aa88ca51a32df6ab1c54a155fc7a5" 401 | integrity sha1-ad+S75U6qIylGjLfarHFShVfx6U= 402 | 403 | bn.js@^4.0.0, bn.js@^4.11.8, bn.js@^4.4.0: 404 | version "4.11.9" 405 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 406 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== 407 | 408 | borc@^2.1.0: 409 | version "2.1.1" 410 | resolved "https://registry.yarnpkg.com/borc/-/borc-2.1.1.tgz#df1a4ec063b9913f2fff5e07c9377eeeff47914a" 411 | integrity sha512-vPLLC2/gS0QN4O3cnPh+8jLshkMMD4qIfs+B1TPGPh30WrtcfItaO6j4k9alsqu/hIgKi8dVdmMvTcbq4tIF7A== 412 | dependencies: 413 | bignumber.js "^9.0.0" 414 | commander "^2.15.0" 415 | ieee754 "^1.1.8" 416 | iso-url "~0.4.4" 417 | json-text-sequence "~0.1.0" 418 | 419 | brace-expansion@^1.1.7: 420 | version "1.1.11" 421 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 422 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 423 | dependencies: 424 | balanced-match "^1.0.0" 425 | concat-map "0.0.1" 426 | 427 | braces@~3.0.2: 428 | version "3.0.2" 429 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 430 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 431 | dependencies: 432 | fill-range "^7.0.1" 433 | 434 | brorand@^1.0.1: 435 | version "1.1.0" 436 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 437 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 438 | 439 | browserify-aes@^1.0.6, browserify-aes@^1.2.0: 440 | version "1.2.0" 441 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 442 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== 443 | dependencies: 444 | buffer-xor "^1.0.3" 445 | cipher-base "^1.0.0" 446 | create-hash "^1.1.0" 447 | evp_bytestokey "^1.0.3" 448 | inherits "^2.0.1" 449 | safe-buffer "^5.0.1" 450 | 451 | bs58@^4.0.1: 452 | version "4.0.1" 453 | resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" 454 | integrity sha1-vhYedsNU9veIrkBx9j806MTwpCo= 455 | dependencies: 456 | base-x "^3.0.2" 457 | 458 | buffer-alloc-unsafe@^1.1.0: 459 | version "1.1.0" 460 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 461 | integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 462 | 463 | buffer-alloc@^1.2.0: 464 | version "1.2.0" 465 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 466 | integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 467 | dependencies: 468 | buffer-alloc-unsafe "^1.1.0" 469 | buffer-fill "^1.0.0" 470 | 471 | buffer-fill@^1.0.0: 472 | version "1.0.0" 473 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 474 | integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= 475 | 476 | buffer-from@^1.0.0: 477 | version "1.1.1" 478 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 479 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 480 | 481 | buffer-xor@^1.0.3: 482 | version "1.0.3" 483 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 484 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 485 | 486 | buffer@^5.2.1, buffer@^5.4.2: 487 | version "5.4.3" 488 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.4.3.tgz#3fbc9c69eb713d323e3fc1a895eee0710c072115" 489 | integrity sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A== 490 | dependencies: 491 | base64-js "^1.0.2" 492 | ieee754 "^1.1.4" 493 | 494 | builtin-status-codes@^3.0.0: 495 | version "3.0.0" 496 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 497 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 498 | 499 | caller-callsite@^2.0.0: 500 | version "2.0.0" 501 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 502 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 503 | dependencies: 504 | callsites "^2.0.0" 505 | 506 | caller-path@^2.0.0: 507 | version "2.0.0" 508 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 509 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 510 | dependencies: 511 | caller-callsite "^2.0.0" 512 | 513 | callsites@^2.0.0: 514 | version "2.0.0" 515 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 516 | integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 517 | 518 | callsites@^3.0.0: 519 | version "3.1.0" 520 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 521 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 522 | 523 | camelcase@^5.0.0: 524 | version "5.3.1" 525 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 526 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 527 | 528 | caseless@~0.12.0: 529 | version "0.12.0" 530 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 531 | integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 532 | 533 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: 534 | version "2.4.2" 535 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 536 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 537 | dependencies: 538 | ansi-styles "^3.2.1" 539 | escape-string-regexp "^1.0.5" 540 | supports-color "^5.3.0" 541 | 542 | chardet@^0.7.0: 543 | version "0.7.0" 544 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 545 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 546 | 547 | chokidar@^3.0.2: 548 | version "3.2.2" 549 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.2.2.tgz#a433973350021e09f2b853a2287781022c0dc935" 550 | integrity sha512-bw3pm7kZ2Wa6+jQWYP/c7bAZy3i4GwiIiMO2EeRjrE48l8vBqC/WvFhSF0xyM8fQiPEGvwMY/5bqDG7sSEOuhg== 551 | dependencies: 552 | anymatch "~3.1.1" 553 | braces "~3.0.2" 554 | glob-parent "~5.1.0" 555 | is-binary-path "~2.1.0" 556 | is-glob "~4.0.1" 557 | normalize-path "~3.0.0" 558 | readdirp "~3.2.0" 559 | optionalDependencies: 560 | fsevents "~2.1.1" 561 | 562 | chownr@^1.0.1: 563 | version "1.1.2" 564 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6" 565 | integrity sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A== 566 | 567 | cids@~0.7.0, cids@~0.7.1: 568 | version "0.7.1" 569 | resolved "https://registry.yarnpkg.com/cids/-/cids-0.7.1.tgz#d8bba49a35a0e82110879b5001abf1039c62347f" 570 | integrity sha512-qEM4j2GKE/BiT6WdUi6cfW8dairhSLTUE8tIdxJG6SvY33Mp/UPjw+xcO0n1zsllgo72BupzKF/44v+Bg8YPPg== 571 | dependencies: 572 | class-is "^1.1.0" 573 | multibase "~0.6.0" 574 | multicodec "~0.5.1" 575 | multihashes "~0.4.14" 576 | 577 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 578 | version "1.0.4" 579 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 580 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== 581 | dependencies: 582 | inherits "^2.0.1" 583 | safe-buffer "^5.0.1" 584 | 585 | class-is@^1.1.0: 586 | version "1.1.0" 587 | resolved "https://registry.yarnpkg.com/class-is/-/class-is-1.1.0.tgz#9d3c0fba0440d211d843cec3dedfa48055005825" 588 | integrity sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw== 589 | 590 | cli-cursor@^2.1.0: 591 | version "2.1.0" 592 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 593 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 594 | dependencies: 595 | restore-cursor "^2.0.0" 596 | 597 | cli-spinners@^2.0.0: 598 | version "2.2.0" 599 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77" 600 | integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ== 601 | 602 | cli-table3@~0.5.0: 603 | version "0.5.1" 604 | resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" 605 | integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw== 606 | dependencies: 607 | object-assign "^4.1.0" 608 | string-width "^2.1.1" 609 | optionalDependencies: 610 | colors "^1.1.2" 611 | 612 | cli-width@^2.0.0: 613 | version "2.2.0" 614 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 615 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 616 | 617 | clone@^1.0.2: 618 | version "1.0.4" 619 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 620 | integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= 621 | 622 | code-point-at@^1.0.0: 623 | version "1.1.0" 624 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 625 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 626 | 627 | color-convert@^1.9.0: 628 | version "1.9.3" 629 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 630 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 631 | dependencies: 632 | color-name "1.1.3" 633 | 634 | color-name@1.1.3: 635 | version "1.1.3" 636 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 637 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 638 | 639 | colors@^1.1.2, colors@^1.3.3: 640 | version "1.3.3" 641 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" 642 | integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== 643 | 644 | combined-stream@^1.0.6, combined-stream@~1.0.6: 645 | version "1.0.8" 646 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 647 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 648 | dependencies: 649 | delayed-stream "~1.0.0" 650 | 651 | commander@^2.12.2, commander@^2.15.0: 652 | version "2.20.0" 653 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 654 | integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== 655 | 656 | concat-map@0.0.1: 657 | version "0.0.1" 658 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 659 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 660 | 661 | "concat-stream@github:hugomrdias/concat-stream#feat/smaller": 662 | version "2.0.0" 663 | resolved "https://codeload.github.com/hugomrdias/concat-stream/tar.gz/057bc7b5d6d8df26c8cf00a3f151b6721a0a8034" 664 | dependencies: 665 | inherits "^2.0.3" 666 | readable-stream "^3.0.2" 667 | 668 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 669 | version "1.1.0" 670 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 671 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 672 | 673 | core-util-is@1.0.2, core-util-is@~1.0.0: 674 | version "1.0.2" 675 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 676 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 677 | 678 | cosmiconfig@5.1.0: 679 | version "5.1.0" 680 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.1.0.tgz#6c5c35e97f37f985061cdf653f114784231185cf" 681 | integrity sha512-kCNPvthka8gvLtzAxQXvWo4FxqRB+ftRZyPZNuab5ngvM9Y7yw7hbEysglptLgpkGX9nAOKTBVkHUAe8xtYR6Q== 682 | dependencies: 683 | import-fresh "^2.0.0" 684 | is-directory "^0.3.1" 685 | js-yaml "^3.9.0" 686 | lodash.get "^4.4.2" 687 | parse-json "^4.0.0" 688 | 689 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: 690 | version "1.2.0" 691 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 692 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== 693 | dependencies: 694 | cipher-base "^1.0.1" 695 | inherits "^2.0.1" 696 | md5.js "^1.3.4" 697 | ripemd160 "^2.0.1" 698 | sha.js "^2.4.0" 699 | 700 | create-hmac@^1.1.4: 701 | version "1.1.7" 702 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 703 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== 704 | dependencies: 705 | cipher-base "^1.0.3" 706 | create-hash "^1.1.0" 707 | inherits "^2.0.1" 708 | ripemd160 "^2.0.0" 709 | safe-buffer "^5.0.1" 710 | sha.js "^2.4.8" 711 | 712 | cross-spawn@^6.0.0, cross-spawn@^6.0.5: 713 | version "6.0.5" 714 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 715 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 716 | dependencies: 717 | nice-try "^1.0.4" 718 | path-key "^2.0.1" 719 | semver "^5.5.0" 720 | shebang-command "^1.2.0" 721 | which "^1.2.9" 722 | 723 | dashdash@^1.12.0: 724 | version "1.14.1" 725 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 726 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 727 | dependencies: 728 | assert-plus "^1.0.0" 729 | 730 | debug@=3.1.0: 731 | version "3.1.0" 732 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 733 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 734 | dependencies: 735 | ms "2.0.0" 736 | 737 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 738 | version "4.1.1" 739 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 740 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 741 | dependencies: 742 | ms "^2.1.1" 743 | 744 | decamelize@^1.2.0: 745 | version "1.2.0" 746 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 747 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 748 | 749 | decompress-response@^3.3.0: 750 | version "3.3.0" 751 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 752 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 753 | dependencies: 754 | mimic-response "^1.0.0" 755 | 756 | deep-extend@^0.6.0: 757 | version "0.6.0" 758 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 759 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 760 | 761 | deep-is@~0.1.3: 762 | version "0.1.3" 763 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 764 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 765 | 766 | defaults@^1.0.3: 767 | version "1.0.3" 768 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 769 | integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= 770 | dependencies: 771 | clone "^1.0.2" 772 | 773 | delayed-stream@~1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 776 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 777 | 778 | delegates@^1.0.0: 779 | version "1.0.0" 780 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 781 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 782 | 783 | delimit-stream@0.1.0: 784 | version "0.1.0" 785 | resolved "https://registry.yarnpkg.com/delimit-stream/-/delimit-stream-0.1.0.tgz#9b8319477c0e5f8aeb3ce357ae305fc25ea1cd2b" 786 | integrity sha1-m4MZR3wOX4rrPONXrjBfwl6hzSs= 787 | 788 | detect-libc@^1.0.3: 789 | version "1.0.3" 790 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 791 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 792 | 793 | detect-node@^2.0.4: 794 | version "2.0.4" 795 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" 796 | integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== 797 | 798 | doctrine@^3.0.0: 799 | version "3.0.0" 800 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 801 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 802 | dependencies: 803 | esutils "^2.0.2" 804 | 805 | drbg.js@^1.0.1: 806 | version "1.0.1" 807 | resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" 808 | integrity sha1-Pja2xCs3BDgjzbwzLVjzHiRFSAs= 809 | dependencies: 810 | browserify-aes "^1.0.6" 811 | create-hash "^1.1.2" 812 | create-hmac "^1.1.4" 813 | 814 | ecc-jsbn@~0.1.1: 815 | version "0.1.2" 816 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 817 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 818 | dependencies: 819 | jsbn "~0.1.0" 820 | safer-buffer "^2.1.0" 821 | 822 | ejs@^2.6.1: 823 | version "2.6.2" 824 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.2.tgz#3a32c63d1cd16d11266cd4703b14fec4e74ab4f6" 825 | integrity sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q== 826 | 827 | elliptic@^6.4.1: 828 | version "6.5.3" 829 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" 830 | integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== 831 | dependencies: 832 | bn.js "^4.4.0" 833 | brorand "^1.0.1" 834 | hash.js "^1.0.0" 835 | hmac-drbg "^1.0.0" 836 | inherits "^2.0.1" 837 | minimalistic-assert "^1.0.0" 838 | minimalistic-crypto-utils "^1.0.0" 839 | 840 | emoji-regex@^7.0.1: 841 | version "7.0.3" 842 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 843 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 844 | 845 | end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: 846 | version "1.4.1" 847 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 848 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 849 | dependencies: 850 | once "^1.4.0" 851 | 852 | enquirer@2.3.1: 853 | version "2.3.1" 854 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.1.tgz#f1bf52ea38470525f41412d723a62ba6868559c6" 855 | integrity sha512-7slmHsJY+mvnIrzD0Z0FfTFLmVJuIzRNCW72X9s35BshOoC+MI4jLJ8aPyAC/BelAirXBZB+Mu1wSqP0wpW4Kg== 856 | dependencies: 857 | ansi-colors "^3.2.1" 858 | 859 | err-code@^1.1.2: 860 | version "1.1.2" 861 | resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" 862 | integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= 863 | 864 | err-code@^2.0.0: 865 | version "2.0.0" 866 | resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.0.tgz#452dadddde12356b1dd5a85f33b28ddda377ef2a" 867 | integrity sha512-MsMOijQ4v0xlmrz1fc7lyPEy7jFhoNF7EVaRSP7mPzs20LaFOwG6qNjGRy3Ie85n9DARlcUnB1zbsBv5sJrIvw== 868 | 869 | error-ex@^1.3.1: 870 | version "1.3.2" 871 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 872 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 873 | dependencies: 874 | is-arrayish "^0.2.1" 875 | 876 | es6-promise@^4.0.3: 877 | version "4.2.8" 878 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" 879 | integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== 880 | 881 | es6-promisify@^5.0.0: 882 | version "5.0.0" 883 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 884 | integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= 885 | dependencies: 886 | es6-promise "^4.0.3" 887 | 888 | escape-string-regexp@^1.0.5: 889 | version "1.0.5" 890 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 891 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 892 | 893 | eslint-config-prettier@^6.1.0: 894 | version "6.1.0" 895 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.1.0.tgz#e6f678ba367fbd1273998d5510f76f004e9dce7b" 896 | integrity sha512-k9fny9sPjIBQ2ftFTesJV21Rg4R/7a7t7LCtZVrYQiHEp8Nnuk3EGaDmsKSAnsPj0BYcgB2zxzHa2NTkIxcOLg== 897 | dependencies: 898 | get-stdin "^6.0.0" 899 | 900 | eslint-scope@^4.0.0: 901 | version "4.0.3" 902 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" 903 | integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== 904 | dependencies: 905 | esrecurse "^4.1.0" 906 | estraverse "^4.1.1" 907 | 908 | eslint-scope@^5.0.0: 909 | version "5.0.0" 910 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" 911 | integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== 912 | dependencies: 913 | esrecurse "^4.1.0" 914 | estraverse "^4.1.1" 915 | 916 | eslint-utils@^1.4.0, eslint-utils@^1.4.2: 917 | version "1.4.2" 918 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" 919 | integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q== 920 | dependencies: 921 | eslint-visitor-keys "^1.0.0" 922 | 923 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: 924 | version "1.1.0" 925 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" 926 | integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== 927 | 928 | eslint@^6.2.2: 929 | version "6.2.2" 930 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.2.2.tgz#03298280e7750d81fcd31431f3d333e43d93f24f" 931 | integrity sha512-mf0elOkxHbdyGX1IJEUsNBzCDdyoUgljF3rRlgfyYh0pwGnreLc0jjD6ZuleOibjmnUWZLY2eXwSooeOgGJ2jw== 932 | dependencies: 933 | "@babel/code-frame" "^7.0.0" 934 | ajv "^6.10.0" 935 | chalk "^2.1.0" 936 | cross-spawn "^6.0.5" 937 | debug "^4.0.1" 938 | doctrine "^3.0.0" 939 | eslint-scope "^5.0.0" 940 | eslint-utils "^1.4.2" 941 | eslint-visitor-keys "^1.1.0" 942 | espree "^6.1.1" 943 | esquery "^1.0.1" 944 | esutils "^2.0.2" 945 | file-entry-cache "^5.0.1" 946 | functional-red-black-tree "^1.0.1" 947 | glob-parent "^5.0.0" 948 | globals "^11.7.0" 949 | ignore "^4.0.6" 950 | import-fresh "^3.0.0" 951 | imurmurhash "^0.1.4" 952 | inquirer "^6.4.1" 953 | is-glob "^4.0.0" 954 | js-yaml "^3.13.1" 955 | json-stable-stringify-without-jsonify "^1.0.1" 956 | levn "^0.3.0" 957 | lodash "^4.17.14" 958 | minimatch "^3.0.4" 959 | mkdirp "^0.5.1" 960 | natural-compare "^1.4.0" 961 | optionator "^0.8.2" 962 | progress "^2.0.0" 963 | regexpp "^2.0.1" 964 | semver "^6.1.2" 965 | strip-ansi "^5.2.0" 966 | strip-json-comments "^3.0.1" 967 | table "^5.2.3" 968 | text-table "^0.2.0" 969 | v8-compile-cache "^2.0.3" 970 | 971 | espree@^6.1.1: 972 | version "6.1.1" 973 | resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de" 974 | integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ== 975 | dependencies: 976 | acorn "^7.0.0" 977 | acorn-jsx "^5.0.2" 978 | eslint-visitor-keys "^1.1.0" 979 | 980 | esprima@^4.0.0: 981 | version "4.0.1" 982 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 983 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 984 | 985 | esquery@^1.0.1: 986 | version "1.0.1" 987 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 988 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== 989 | dependencies: 990 | estraverse "^4.0.0" 991 | 992 | esrecurse@^4.1.0: 993 | version "4.2.1" 994 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 995 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 996 | dependencies: 997 | estraverse "^4.1.0" 998 | 999 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1000 | version "4.3.0" 1001 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1002 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1003 | 1004 | esutils@^2.0.2: 1005 | version "2.0.3" 1006 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1007 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1008 | 1009 | event-target-shim@^5.0.0: 1010 | version "5.0.1" 1011 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" 1012 | integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== 1013 | 1014 | evp_bytestokey@^1.0.3: 1015 | version "1.0.3" 1016 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1017 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== 1018 | dependencies: 1019 | md5.js "^1.3.4" 1020 | safe-buffer "^5.1.1" 1021 | 1022 | execa@^1.0.0: 1023 | version "1.0.0" 1024 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1025 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 1026 | dependencies: 1027 | cross-spawn "^6.0.0" 1028 | get-stream "^4.0.0" 1029 | is-stream "^1.1.0" 1030 | npm-run-path "^2.0.0" 1031 | p-finally "^1.0.0" 1032 | signal-exit "^3.0.0" 1033 | strip-eof "^1.0.0" 1034 | 1035 | expand-template@^2.0.3: 1036 | version "2.0.3" 1037 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 1038 | integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 1039 | 1040 | explain-error@^1.0.4: 1041 | version "1.0.4" 1042 | resolved "https://registry.yarnpkg.com/explain-error/-/explain-error-1.0.4.tgz#a793d3ac0cad4c6ab571e9968fbbab6cb2532929" 1043 | integrity sha1-p5PTrAytTGq1cemWj7urbLJTKSk= 1044 | 1045 | extend@~3.0.2: 1046 | version "3.0.2" 1047 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1048 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1049 | 1050 | external-editor@^3.0.3: 1051 | version "3.1.0" 1052 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 1053 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 1054 | dependencies: 1055 | chardet "^0.7.0" 1056 | iconv-lite "^0.4.24" 1057 | tmp "^0.0.33" 1058 | 1059 | extsprintf@1.3.0: 1060 | version "1.3.0" 1061 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1062 | integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 1063 | 1064 | extsprintf@^1.2.0: 1065 | version "1.4.0" 1066 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1067 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 1068 | 1069 | eyes@^0.1.8: 1070 | version "0.1.8" 1071 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 1072 | integrity sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A= 1073 | 1074 | fast-deep-equal@^2.0.1: 1075 | version "2.0.1" 1076 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1077 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 1078 | 1079 | fast-json-stable-stringify@^2.0.0: 1080 | version "2.0.0" 1081 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1082 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1083 | 1084 | fast-levenshtein@~2.0.4: 1085 | version "2.0.6" 1086 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1087 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1088 | 1089 | figures@^2.0.0: 1090 | version "2.0.0" 1091 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1092 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1093 | dependencies: 1094 | escape-string-regexp "^1.0.5" 1095 | 1096 | file-entry-cache@^5.0.1: 1097 | version "5.0.1" 1098 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 1099 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 1100 | dependencies: 1101 | flat-cache "^2.0.1" 1102 | 1103 | file-uri-to-path@1.0.0: 1104 | version "1.0.0" 1105 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1106 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 1107 | 1108 | fill-range@^7.0.1: 1109 | version "7.0.1" 1110 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1111 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1112 | dependencies: 1113 | to-regex-range "^5.0.1" 1114 | 1115 | flat-cache@^2.0.1: 1116 | version "2.0.1" 1117 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 1118 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 1119 | dependencies: 1120 | flatted "^2.0.0" 1121 | rimraf "2.6.3" 1122 | write "1.0.3" 1123 | 1124 | flatmap@0.0.3: 1125 | version "0.0.3" 1126 | resolved "https://registry.yarnpkg.com/flatmap/-/flatmap-0.0.3.tgz#1f18a4d938152d495965f9c958d923ab2dd669b4" 1127 | integrity sha1-Hxik2TgVLUlZZfnJWNkjqy3WabQ= 1128 | 1129 | flatted@^2.0.0: 1130 | version "2.0.1" 1131 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" 1132 | integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== 1133 | 1134 | follow-redirects@1.5.10: 1135 | version "1.5.10" 1136 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" 1137 | integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== 1138 | dependencies: 1139 | debug "=3.1.0" 1140 | 1141 | forever-agent@~0.6.1: 1142 | version "0.6.1" 1143 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1144 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 1145 | 1146 | form-data@~2.3.2: 1147 | version "2.3.3" 1148 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 1149 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 1150 | dependencies: 1151 | asynckit "^0.4.0" 1152 | combined-stream "^1.0.6" 1153 | mime-types "^2.1.12" 1154 | 1155 | fs-constants@^1.0.0: 1156 | version "1.0.0" 1157 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1158 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1159 | 1160 | fs-extra@^8.1.0: 1161 | version "8.1.0" 1162 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 1163 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 1164 | dependencies: 1165 | graceful-fs "^4.2.0" 1166 | jsonfile "^4.0.0" 1167 | universalify "^0.1.0" 1168 | 1169 | fs-jetpack@^2.2.2: 1170 | version "2.2.2" 1171 | resolved "https://registry.yarnpkg.com/fs-jetpack/-/fs-jetpack-2.2.2.tgz#c3737c585a618d8d636f76165c881b985493d6fd" 1172 | integrity sha512-USJrUxck7SIXSvYPzU5fuR5iqLHRDSzb0kHvCJlQhUGEVai3P9yZDu/2b+bAzprbWLCc2YcslxBLBUInDmYkYA== 1173 | dependencies: 1174 | minimatch "^3.0.2" 1175 | rimraf "^2.6.3" 1176 | 1177 | fs.realpath@^1.0.0: 1178 | version "1.0.0" 1179 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1180 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1181 | 1182 | fsevents@~2.1.1: 1183 | version "2.1.1" 1184 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.1.tgz#74c64e21df71721845d0c44fe54b7f56b82995a9" 1185 | integrity sha512-4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw== 1186 | 1187 | functional-red-black-tree@^1.0.1: 1188 | version "1.0.1" 1189 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1190 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1191 | 1192 | gauge@~2.7.3: 1193 | version "2.7.4" 1194 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1195 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1196 | dependencies: 1197 | aproba "^1.0.3" 1198 | console-control-strings "^1.0.0" 1199 | has-unicode "^2.0.0" 1200 | object-assign "^4.1.0" 1201 | signal-exit "^3.0.0" 1202 | string-width "^1.0.1" 1203 | strip-ansi "^3.0.1" 1204 | wide-align "^1.1.0" 1205 | 1206 | get-stdin@^6.0.0: 1207 | version "6.0.0" 1208 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1209 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 1210 | 1211 | get-stream@^4.0.0: 1212 | version "4.1.0" 1213 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1214 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1215 | dependencies: 1216 | pump "^3.0.0" 1217 | 1218 | getpass@^0.1.1: 1219 | version "0.1.7" 1220 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1221 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1222 | dependencies: 1223 | assert-plus "^1.0.0" 1224 | 1225 | github-from-package@0.0.0: 1226 | version "0.0.0" 1227 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 1228 | integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= 1229 | 1230 | glob-parent@^5.0.0: 1231 | version "5.0.0" 1232 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.0.0.tgz#1dc99f0f39b006d3e92c2c284068382f0c20e954" 1233 | integrity sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg== 1234 | dependencies: 1235 | is-glob "^4.0.1" 1236 | 1237 | glob-parent@~5.1.0: 1238 | version "5.1.0" 1239 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" 1240 | integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== 1241 | dependencies: 1242 | is-glob "^4.0.1" 1243 | 1244 | glob@^7.1.2, glob@^7.1.3: 1245 | version "7.1.4" 1246 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1247 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 1248 | dependencies: 1249 | fs.realpath "^1.0.0" 1250 | inflight "^1.0.4" 1251 | inherits "2" 1252 | minimatch "^3.0.4" 1253 | once "^1.3.0" 1254 | path-is-absolute "^1.0.0" 1255 | 1256 | globals@^11.7.0: 1257 | version "11.12.0" 1258 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1259 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1260 | 1261 | gluegun@^3.0.0: 1262 | version "3.3.3" 1263 | resolved "https://registry.yarnpkg.com/gluegun/-/gluegun-3.3.3.tgz#ddedf1db9c91cd4e52104f6184eb3003a35e3148" 1264 | integrity sha512-1Iq8Mjh58MxhArMqmfsoO9thgK8tiDLDMQCnCS8LTNg176bTOAqRn3PIxW+wh9Z6KtofVXbyKI5COzDAFtzuzw== 1265 | dependencies: 1266 | apisauce "^1.0.1" 1267 | app-module-path "^2.2.0" 1268 | cli-table3 "~0.5.0" 1269 | colors "^1.3.3" 1270 | cosmiconfig "5.1.0" 1271 | cross-spawn "^6.0.5" 1272 | ejs "^2.6.1" 1273 | enquirer "2.3.1" 1274 | execa "^1.0.0" 1275 | fs-jetpack "^2.2.2" 1276 | lodash.camelcase "^4.3.0" 1277 | lodash.kebabcase "^4.1.1" 1278 | lodash.lowercase "^4.3.0" 1279 | lodash.lowerfirst "^4.3.1" 1280 | lodash.pad "^4.5.1" 1281 | lodash.padend "^4.6.1" 1282 | lodash.padstart "^4.6.1" 1283 | lodash.repeat "^4.1.0" 1284 | lodash.snakecase "^4.1.1" 1285 | lodash.startcase "^4.4.0" 1286 | lodash.trim "^4.5.1" 1287 | lodash.trimend "^4.5.1" 1288 | lodash.trimstart "^4.5.1" 1289 | lodash.uppercase "^4.3.0" 1290 | lodash.upperfirst "^4.3.1" 1291 | ora "^3.4.0" 1292 | pluralize "^8.0.0" 1293 | ramdasauce "^2.1.0" 1294 | semver "^6.1.1" 1295 | which "^1.2.14" 1296 | yargs-parser "^12.0.0" 1297 | 1298 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1299 | version "4.2.2" 1300 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" 1301 | integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== 1302 | 1303 | graphql@^14.0.2: 1304 | version "14.5.4" 1305 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.5.4.tgz#b33fe957854e90c10d4c07c7d26b6c8e9f159a13" 1306 | integrity sha512-dPLvHoxy5m9FrkqWczPPRnH0X80CyvRE6e7Fa5AWEqEAzg9LpxHvKh24po/482E6VWHigOkAmb4xCp6P9yT9gw== 1307 | dependencies: 1308 | iterall "^1.2.2" 1309 | 1310 | har-schema@^2.0.0: 1311 | version "2.0.0" 1312 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1313 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 1314 | 1315 | har-validator@~5.1.0: 1316 | version "5.1.3" 1317 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1318 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== 1319 | dependencies: 1320 | ajv "^6.5.5" 1321 | har-schema "^2.0.0" 1322 | 1323 | has-flag@^3.0.0: 1324 | version "3.0.0" 1325 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1326 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1327 | 1328 | has-unicode@^2.0.0: 1329 | version "2.0.1" 1330 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1331 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1332 | 1333 | hash-base@^3.0.0: 1334 | version "3.0.4" 1335 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1336 | integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= 1337 | dependencies: 1338 | inherits "^2.0.1" 1339 | safe-buffer "^5.0.1" 1340 | 1341 | hash.js@^1.0.0, hash.js@^1.0.3: 1342 | version "1.1.7" 1343 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1344 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1345 | dependencies: 1346 | inherits "^2.0.3" 1347 | minimalistic-assert "^1.0.1" 1348 | 1349 | hi-base32@~0.5.0: 1350 | version "0.5.0" 1351 | resolved "https://registry.yarnpkg.com/hi-base32/-/hi-base32-0.5.0.tgz#61329f76a31f31008533f1c36f2473e259d64571" 1352 | integrity sha512-DDRmxSyoYuvjUb9EnXdoiMChBZ7ZcUVJsK5Frd3kqMhuBxvmZdnBeynAVfj7/ECbn++CekcoprvC/rprHPAtow== 1353 | 1354 | hmac-drbg@^1.0.0: 1355 | version "1.0.1" 1356 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1357 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 1358 | dependencies: 1359 | hash.js "^1.0.3" 1360 | minimalistic-assert "^1.0.0" 1361 | minimalistic-crypto-utils "^1.0.1" 1362 | 1363 | http-signature@~1.2.0: 1364 | version "1.2.0" 1365 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1366 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 1367 | dependencies: 1368 | assert-plus "^1.0.0" 1369 | jsprim "^1.2.2" 1370 | sshpk "^1.7.0" 1371 | 1372 | iconv-lite@^0.4.24: 1373 | version "0.4.24" 1374 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1375 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1376 | dependencies: 1377 | safer-buffer ">= 2.1.2 < 3" 1378 | 1379 | ieee754@^1.1.4, ieee754@^1.1.8: 1380 | version "1.1.13" 1381 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 1382 | integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 1383 | 1384 | ignore@^4.0.6: 1385 | version "4.0.6" 1386 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1387 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1388 | 1389 | immutable@^3.8.2: 1390 | version "3.8.2" 1391 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" 1392 | integrity sha1-wkOZUUVbs5kT2vKBN28VMOEErfM= 1393 | 1394 | import-fresh@^2.0.0: 1395 | version "2.0.0" 1396 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 1397 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 1398 | dependencies: 1399 | caller-path "^2.0.0" 1400 | resolve-from "^3.0.0" 1401 | 1402 | import-fresh@^3.0.0: 1403 | version "3.1.0" 1404 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118" 1405 | integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ== 1406 | dependencies: 1407 | parent-module "^1.0.0" 1408 | resolve-from "^4.0.0" 1409 | 1410 | imurmurhash@^0.1.4: 1411 | version "0.1.4" 1412 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1413 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1414 | 1415 | inflight@^1.0.4: 1416 | version "1.0.6" 1417 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1418 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1419 | dependencies: 1420 | once "^1.3.0" 1421 | wrappy "1" 1422 | 1423 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 1424 | version "2.0.4" 1425 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1426 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1427 | 1428 | ini@~1.3.0: 1429 | version "1.3.5" 1430 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1431 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1432 | 1433 | inquirer@^6.4.1: 1434 | version "6.5.2" 1435 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" 1436 | integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== 1437 | dependencies: 1438 | ansi-escapes "^3.2.0" 1439 | chalk "^2.4.2" 1440 | cli-cursor "^2.1.0" 1441 | cli-width "^2.0.0" 1442 | external-editor "^3.0.3" 1443 | figures "^2.0.0" 1444 | lodash "^4.17.12" 1445 | mute-stream "0.0.7" 1446 | run-async "^2.2.0" 1447 | rxjs "^6.4.0" 1448 | string-width "^2.1.0" 1449 | strip-ansi "^5.1.0" 1450 | through "^2.3.6" 1451 | 1452 | ip-regex@^2.0.0: 1453 | version "2.1.0" 1454 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" 1455 | integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= 1456 | 1457 | ip@^1.1.5: 1458 | version "1.1.5" 1459 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 1460 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= 1461 | 1462 | ipfs-block@~0.8.1: 1463 | version "0.8.1" 1464 | resolved "https://registry.yarnpkg.com/ipfs-block/-/ipfs-block-0.8.1.tgz#05e1068832775e8f1c2da5b64106cc837fd2acb9" 1465 | integrity sha512-0FaCpmij+jZBoUYhjoB5ptjdl9QzvrdRIoBmUU5JiBnK2GA+4YM/ifklaB8ePRhA/rRzhd+KYBjvMFMAL4NrVQ== 1466 | dependencies: 1467 | cids "~0.7.0" 1468 | class-is "^1.1.0" 1469 | 1470 | ipfs-http-client@^34.0.0: 1471 | version "34.0.0" 1472 | resolved "https://registry.yarnpkg.com/ipfs-http-client/-/ipfs-http-client-34.0.0.tgz#8804d06a11c22306332a8ffa0949b6f672a0c9c8" 1473 | integrity sha512-4RCkk8ix4Dqn6sxqFVwuXWCZ1eLFPsVaj6Ijvu1fs9VYgxgVudsW9PWwarlr4mw1xUCmPWYyXnEbGgzBrfMy0Q== 1474 | dependencies: 1475 | abort-controller "^3.0.0" 1476 | async "^2.6.1" 1477 | bignumber.js "^9.0.0" 1478 | bl "^3.0.0" 1479 | bs58 "^4.0.1" 1480 | buffer "^5.4.2" 1481 | cids "~0.7.1" 1482 | concat-stream "github:hugomrdias/concat-stream#feat/smaller" 1483 | debug "^4.1.0" 1484 | detect-node "^2.0.4" 1485 | end-of-stream "^1.4.1" 1486 | err-code "^2.0.0" 1487 | explain-error "^1.0.4" 1488 | flatmap "0.0.3" 1489 | glob "^7.1.3" 1490 | ipfs-block "~0.8.1" 1491 | ipfs-utils "~0.0.3" 1492 | ipld-dag-cbor "~0.15.0" 1493 | ipld-dag-pb "~0.17.3" 1494 | ipld-raw "^4.0.0" 1495 | is-ipfs "~0.6.1" 1496 | is-pull-stream "0.0.0" 1497 | is-stream "^2.0.0" 1498 | iso-stream-http "~0.1.2" 1499 | iso-url "~0.4.6" 1500 | iterable-ndjson "^1.1.0" 1501 | just-kebab-case "^1.1.0" 1502 | just-map-keys "^1.1.0" 1503 | kind-of "^6.0.2" 1504 | ky "^0.11.2" 1505 | ky-universal "^0.2.2" 1506 | lru-cache "^5.1.1" 1507 | multiaddr "^6.0.6" 1508 | multibase "~0.6.0" 1509 | multicodec "~0.5.1" 1510 | multihashes "~0.4.14" 1511 | ndjson "github:hugomrdias/ndjson#feat/readable-stream3" 1512 | once "^1.4.0" 1513 | peer-id "~0.12.3" 1514 | peer-info "~0.15.1" 1515 | promise-nodeify "^3.0.1" 1516 | promisify-es6 "^1.0.3" 1517 | pull-defer "~0.2.3" 1518 | pull-stream "^3.6.9" 1519 | pull-to-stream "~0.1.1" 1520 | pump "^3.0.0" 1521 | qs "^6.5.2" 1522 | readable-stream "^3.1.1" 1523 | stream-to-pull-stream "^1.7.2" 1524 | tar-stream "^2.0.1" 1525 | through2 "^3.0.1" 1526 | 1527 | ipfs-utils@~0.0.3: 1528 | version "0.0.4" 1529 | resolved "https://registry.yarnpkg.com/ipfs-utils/-/ipfs-utils-0.0.4.tgz#946114cfeb6afb4454b4ccb10d2327cd323b0cce" 1530 | integrity sha512-7cZf6aGj2FG3XJWhCNwn4mS93Q0GEWjtBZvEHqzgI43U2qzNDCyzfS1pei1Y5F+tw/zDJ5U4XG0G9reJxR53Ig== 1531 | dependencies: 1532 | buffer "^5.2.1" 1533 | is-buffer "^2.0.3" 1534 | is-electron "^2.2.0" 1535 | is-pull-stream "0.0.0" 1536 | is-stream "^2.0.0" 1537 | kind-of "^6.0.2" 1538 | readable-stream "^3.4.0" 1539 | 1540 | ipld-dag-cbor@~0.15.0: 1541 | version "0.15.0" 1542 | resolved "https://registry.yarnpkg.com/ipld-dag-cbor/-/ipld-dag-cbor-0.15.0.tgz#1fbebef1c2d8b980fb18b94f96ec3c1f1d32f860" 1543 | integrity sha512-wc9nrDtV4Le76UUhG4LXX57NVi5d7JS2kLid2nOYZAcr0SFhiXZL2ZyV3bfmNohO50KvgPEessSaBBSm9bflGA== 1544 | dependencies: 1545 | borc "^2.1.0" 1546 | cids "~0.7.0" 1547 | is-circular "^1.0.2" 1548 | multicodec "~0.5.0" 1549 | multihashing-async "~0.7.0" 1550 | 1551 | ipld-dag-pb@~0.17.3: 1552 | version "0.17.4" 1553 | resolved "https://registry.yarnpkg.com/ipld-dag-pb/-/ipld-dag-pb-0.17.4.tgz#080841cfdd014d996f8da7f3a522ec8b1f6b6494" 1554 | integrity sha512-YwCxETEMuXVspOKOhjIOHJvKvB/OZfCDkpSFiYBQN2/JQjM9y/RFCYzIQGm0wg7dCFLrhvfjAZLTSaKs65jzWA== 1555 | dependencies: 1556 | cids "~0.7.0" 1557 | class-is "^1.1.0" 1558 | multicodec "~0.5.1" 1559 | multihashing-async "~0.7.0" 1560 | protons "^1.0.1" 1561 | stable "~0.1.8" 1562 | 1563 | ipld-raw@^4.0.0: 1564 | version "4.0.0" 1565 | resolved "https://registry.yarnpkg.com/ipld-raw/-/ipld-raw-4.0.0.tgz#dd31f75dba2fad9cc8bb084d07ce1ea74fd47734" 1566 | integrity sha512-yNQG5zQqm/RH8aNQxcvcsAdHJW4q+LJ3cPfFzHOtujEa/PRlT5YCOVpAFh61HfpsWFm2GJrb2G+HHgtDDlFSMw== 1567 | dependencies: 1568 | cids "~0.7.0" 1569 | multicodec "~0.5.0" 1570 | multihashing-async "~0.7.0" 1571 | 1572 | is-arrayish@^0.2.1: 1573 | version "0.2.1" 1574 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1575 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1576 | 1577 | is-binary-path@~2.1.0: 1578 | version "2.1.0" 1579 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1580 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1581 | dependencies: 1582 | binary-extensions "^2.0.0" 1583 | 1584 | is-buffer@^2.0.2: 1585 | version "2.0.3" 1586 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" 1587 | integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== 1588 | 1589 | is-buffer@^2.0.3: 1590 | version "2.0.4" 1591 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" 1592 | integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== 1593 | 1594 | is-circular@^1.0.2: 1595 | version "1.0.2" 1596 | resolved "https://registry.yarnpkg.com/is-circular/-/is-circular-1.0.2.tgz#2e0ab4e9835f4c6b0ea2b9855a84acd501b8366c" 1597 | integrity sha512-YttjnrswnUYRVJvxCvu8z+PGMUSzC2JttP0OEXezlAEdp3EXzhf7IZ3j0gRAybJBQupedIZFhY61Tga6E0qASA== 1598 | 1599 | is-directory@^0.3.1: 1600 | version "0.3.1" 1601 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1602 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 1603 | 1604 | is-electron@^2.2.0: 1605 | version "2.2.0" 1606 | resolved "https://registry.yarnpkg.com/is-electron/-/is-electron-2.2.0.tgz#8943084f09e8b731b3a7a0298a7b5d56f6b7eef0" 1607 | integrity sha512-SpMppC2XR3YdxSzczXReBjqs2zGscWQpBIKqwXYBFic0ERaxNVgwLCHwOLZeESfdJQjX0RDvrJ1lBXX2ij+G1Q== 1608 | 1609 | is-extglob@^2.1.1: 1610 | version "2.1.1" 1611 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1612 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1613 | 1614 | is-fullwidth-code-point@^1.0.0: 1615 | version "1.0.0" 1616 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1617 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1618 | dependencies: 1619 | number-is-nan "^1.0.0" 1620 | 1621 | is-fullwidth-code-point@^2.0.0: 1622 | version "2.0.0" 1623 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1624 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1625 | 1626 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 1627 | version "4.0.1" 1628 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1629 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1630 | dependencies: 1631 | is-extglob "^2.1.1" 1632 | 1633 | is-ip@^2.0.0: 1634 | version "2.0.0" 1635 | resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-2.0.0.tgz#68eea07e8a0a0a94c2d080dd674c731ab2a461ab" 1636 | integrity sha1-aO6gfooKCpTC0IDdZ0xzGrKkYas= 1637 | dependencies: 1638 | ip-regex "^2.0.0" 1639 | 1640 | is-ipfs@~0.6.1: 1641 | version "0.6.1" 1642 | resolved "https://registry.yarnpkg.com/is-ipfs/-/is-ipfs-0.6.1.tgz#c85069c73275dc6a60673c791a9be731e2b4bfc4" 1643 | integrity sha512-WhqQylam6pODS2RyqT/u0PR5KWtBZNCgPjgargFOVQjzw/3+6d0midXenzU65klM4LH13IUiCC6ObhDUdXZ7Nw== 1644 | dependencies: 1645 | bs58 "^4.0.1" 1646 | cids "~0.7.0" 1647 | mafmt "^6.0.7" 1648 | multiaddr "^6.0.4" 1649 | multibase "~0.6.0" 1650 | multihashes "~0.4.13" 1651 | 1652 | is-number@^7.0.0: 1653 | version "7.0.0" 1654 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1655 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1656 | 1657 | is-promise@^2.1.0: 1658 | version "2.1.0" 1659 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1660 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1661 | 1662 | is-promise@~1, is-promise@~1.0.0: 1663 | version "1.0.1" 1664 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-1.0.1.tgz#31573761c057e33c2e91aab9e96da08cefbe76e5" 1665 | integrity sha1-MVc3YcBX4zwukaq56W2gjO++duU= 1666 | 1667 | is-pull-stream@0.0.0: 1668 | version "0.0.0" 1669 | resolved "https://registry.yarnpkg.com/is-pull-stream/-/is-pull-stream-0.0.0.tgz#a3bc3d1c6d3055151c46bde6f399efed21440ca9" 1670 | integrity sha1-o7w9HG0wVRUcRr3m85nv7SFEDKk= 1671 | 1672 | is-stream@^1.1.0: 1673 | version "1.1.0" 1674 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1675 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1676 | 1677 | is-stream@^2.0.0: 1678 | version "2.0.0" 1679 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1680 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1681 | 1682 | is-typedarray@~1.0.0: 1683 | version "1.0.0" 1684 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1685 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1686 | 1687 | isarray@~1.0.0: 1688 | version "1.0.0" 1689 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1690 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1691 | 1692 | isexe@^2.0.0: 1693 | version "2.0.0" 1694 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1695 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1696 | 1697 | iso-random-stream@^1.1.0: 1698 | version "1.1.0" 1699 | resolved "https://registry.yarnpkg.com/iso-random-stream/-/iso-random-stream-1.1.0.tgz#c1dc1bb43dd8da6524df9cbc6253b010806585c8" 1700 | integrity sha512-ywSWt0KrWcsaK0jVoVJIR30rLyjg9Rw3k2Sm/qp+3tdtSV0SNH7L7KilKnENcENOSoJxDFvpt2idvuMMQohdCQ== 1701 | 1702 | iso-stream-http@~0.1.2: 1703 | version "0.1.2" 1704 | resolved "https://registry.yarnpkg.com/iso-stream-http/-/iso-stream-http-0.1.2.tgz#b3dfea4c9f23ff26d078d40c539cfc0dfebacd37" 1705 | integrity sha512-oHEDNOysIMTNypbg2f1SlydqRBvjl4ZbSE9+0awVxnkx3K2stGTFwB/kpVqnB6UEfF8QD36kAjDwZvqyXBLMnQ== 1706 | dependencies: 1707 | builtin-status-codes "^3.0.0" 1708 | inherits "^2.0.1" 1709 | readable-stream "^3.1.1" 1710 | 1711 | iso-url@~0.4.4, iso-url@~0.4.6: 1712 | version "0.4.6" 1713 | resolved "https://registry.yarnpkg.com/iso-url/-/iso-url-0.4.6.tgz#45005c4af4984cad4f8753da411b41b74cf0a8a6" 1714 | integrity sha512-YQO7+aIe6l1aSJUKOx+Vrv08DlhZeLFIVfehG2L29KLSEb9RszqPXilxJRVpp57px36BddKR5ZsebacO5qG0tg== 1715 | 1716 | isstream@~0.1.2: 1717 | version "0.1.2" 1718 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1719 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 1720 | 1721 | iterable-ndjson@^1.1.0: 1722 | version "1.1.0" 1723 | resolved "https://registry.yarnpkg.com/iterable-ndjson/-/iterable-ndjson-1.1.0.tgz#36f7e8a5bb04fd087d384f29e44fc4280fc014fc" 1724 | integrity sha512-OOp1Lb0o3k5MkXHx1YaIY5Z0ELosZfTnBaas9f8opJVcZGBIONA2zY/6CYE+LKkqrSDooIneZbrBGgOZnHPkrg== 1725 | dependencies: 1726 | string_decoder "^1.2.0" 1727 | 1728 | iterall@^1.2.2: 1729 | version "1.2.2" 1730 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" 1731 | integrity sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA== 1732 | 1733 | jayson@^3.0.2: 1734 | version "3.1.1" 1735 | resolved "https://registry.yarnpkg.com/jayson/-/jayson-3.1.1.tgz#2faedb6e8c8df266c7ef3d9d6a6cc2d2655e226d" 1736 | integrity sha512-w+RKdtrRNlqFlyDxcALzTrcKSwETYcU+P9/cqWn8RogXkcV9RSmdL1tUb6E8hglFh8r3I62vVP8xrXkaaKyQdQ== 1737 | dependencies: 1738 | "@types/connect" "^3.4.32" 1739 | "@types/express-serve-static-core" "^4.16.9" 1740 | "@types/lodash" "^4.14.139" 1741 | "@types/node" "^12.7.7" 1742 | JSONStream "^1.3.1" 1743 | commander "^2.12.2" 1744 | es6-promisify "^5.0.0" 1745 | eyes "^0.1.8" 1746 | json-stringify-safe "^5.0.1" 1747 | lodash "^4.17.15" 1748 | uuid "^3.2.1" 1749 | 1750 | js-sha3@~0.8.0: 1751 | version "0.8.0" 1752 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 1753 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 1754 | 1755 | js-tokens@^4.0.0: 1756 | version "4.0.0" 1757 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1758 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1759 | 1760 | js-yaml@^3.13.1, js-yaml@^3.9.0: 1761 | version "3.13.1" 1762 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1763 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1764 | dependencies: 1765 | argparse "^1.0.7" 1766 | esprima "^4.0.0" 1767 | 1768 | jsbn@~0.1.0: 1769 | version "0.1.1" 1770 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1771 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 1772 | 1773 | json-parse-better-errors@^1.0.1: 1774 | version "1.0.2" 1775 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1776 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1777 | 1778 | json-schema-traverse@^0.4.1: 1779 | version "0.4.1" 1780 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1781 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1782 | 1783 | json-schema@0.2.3: 1784 | version "0.2.3" 1785 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1786 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 1787 | 1788 | json-stable-stringify-without-jsonify@^1.0.1: 1789 | version "1.0.1" 1790 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1791 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1792 | 1793 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1794 | version "5.0.1" 1795 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1796 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1797 | 1798 | json-text-sequence@~0.1.0: 1799 | version "0.1.1" 1800 | resolved "https://registry.yarnpkg.com/json-text-sequence/-/json-text-sequence-0.1.1.tgz#a72f217dc4afc4629fff5feb304dc1bd51a2f3d2" 1801 | integrity sha1-py8hfcSvxGKf/1/rME3BvVGi89I= 1802 | dependencies: 1803 | delimit-stream "0.1.0" 1804 | 1805 | jsonfile@^4.0.0: 1806 | version "4.0.0" 1807 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1808 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1809 | optionalDependencies: 1810 | graceful-fs "^4.1.6" 1811 | 1812 | jsonparse@^1.2.0: 1813 | version "1.3.1" 1814 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1815 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 1816 | 1817 | jsprim@^1.2.2: 1818 | version "1.4.1" 1819 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1820 | integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 1821 | dependencies: 1822 | assert-plus "1.0.0" 1823 | extsprintf "1.3.0" 1824 | json-schema "0.2.3" 1825 | verror "1.10.0" 1826 | 1827 | just-kebab-case@^1.1.0: 1828 | version "1.1.0" 1829 | resolved "https://registry.yarnpkg.com/just-kebab-case/-/just-kebab-case-1.1.0.tgz#ebe854fde84b0afa4e597fcd870b12eb3c026755" 1830 | integrity sha512-QkuwuBMQ9BQHMUEkAtIA4INLrkmnnveqlFB1oFi09gbU0wBdZo6tTnyxNWMR84zHxBuwK7GLAwqN8nrvVxOLTA== 1831 | 1832 | just-map-keys@^1.1.0: 1833 | version "1.1.0" 1834 | resolved "https://registry.yarnpkg.com/just-map-keys/-/just-map-keys-1.1.0.tgz#9663c9f971ba46e17f2b05e66fec81149375f230" 1835 | integrity sha512-oNKi+4y7fr8lXnhKYpBbCkiwHRVkAnx0VDkCeTDtKKMzGr1Lz1Yym+RSieKUTKim68emC5Yxrb4YmiF9STDO+g== 1836 | 1837 | keypair@^1.0.1: 1838 | version "1.0.1" 1839 | resolved "https://registry.yarnpkg.com/keypair/-/keypair-1.0.1.tgz#7603719270afb6564ed38a22087a06fc9aa4ea1b" 1840 | integrity sha1-dgNxknCvtlZO04oiCHoG/Jqk6hs= 1841 | 1842 | keytar@^4.6.0: 1843 | version "4.13.0" 1844 | resolved "https://registry.yarnpkg.com/keytar/-/keytar-4.13.0.tgz#f3484988e87e692958ce901a36c850422093def0" 1845 | integrity sha512-qdyZ3XDuv11ANDXJ+shsmc+j/h5BHPDSn33MwkUMDg2EA++xEBleNkghr3Jg95cqVx5WgDYD8V/m3Q0y7kwQ2w== 1846 | dependencies: 1847 | nan "2.14.0" 1848 | prebuild-install "5.3.0" 1849 | 1850 | kind-of@^6.0.2: 1851 | version "6.0.3" 1852 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1853 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1854 | 1855 | ky-universal@^0.2.2: 1856 | version "0.2.2" 1857 | resolved "https://registry.yarnpkg.com/ky-universal/-/ky-universal-0.2.2.tgz#7a36e1a75641a98f878157463513965f799f5bfe" 1858 | integrity sha512-fb32o/fKy/ux2ALWa9HU2hvGtfOq7/vn2nH0FpVE+jwNzyTeORlAbj3Fiw+WLMbUlmVqZIWupnLZ2USHvqwZHw== 1859 | dependencies: 1860 | abort-controller "^3.0.0" 1861 | node-fetch "^2.3.0" 1862 | 1863 | ky@^0.11.2: 1864 | version "0.11.2" 1865 | resolved "https://registry.yarnpkg.com/ky/-/ky-0.11.2.tgz#4ffe6621d9d9ab61bf0f5500542e3a96d1ba0815" 1866 | integrity sha512-5Aou5BWue5/mkPqIRqzSWW+0Hkl403pr/2AIrCKYw7cVl/Xoe8Xe4KLBO0PRjbz7GnRe1/8wW1KhqQNFFE7/GQ== 1867 | 1868 | levn@^0.3.0, levn@~0.3.0: 1869 | version "0.3.0" 1870 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1871 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1872 | dependencies: 1873 | prelude-ls "~1.1.2" 1874 | type-check "~0.3.2" 1875 | 1876 | libp2p-crypto-secp256k1@~0.3.0: 1877 | version "0.3.1" 1878 | resolved "https://registry.yarnpkg.com/libp2p-crypto-secp256k1/-/libp2p-crypto-secp256k1-0.3.1.tgz#4cbeb857f5cfe5fefb1253e6b2994420c0ca166e" 1879 | integrity sha512-evrfK/CeUSd/lcELUdDruyPBvxDmLairth75S32OLl3H+++2m2fV24JEtxzdFS9JH3xEFw0h6JFO8DBa1bP9dA== 1880 | dependencies: 1881 | async "^2.6.2" 1882 | bs58 "^4.0.1" 1883 | multihashing-async "~0.6.0" 1884 | nodeify "^1.0.1" 1885 | safe-buffer "^5.1.2" 1886 | secp256k1 "^3.6.2" 1887 | 1888 | libp2p-crypto@~0.16.1: 1889 | version "0.16.1" 1890 | resolved "https://registry.yarnpkg.com/libp2p-crypto/-/libp2p-crypto-0.16.1.tgz#40aa07e95a0a7fe6887ea3868625e74c81c34d75" 1891 | integrity sha512-+fxqy+cDjwOKK4KTj44WQmjPE5ep2eR5uAIQWHl/+RKvRSor3+RAY53VWkAecgAEvjX2AswxBsoCIJK1Qk5aIQ== 1892 | dependencies: 1893 | asmcrypto.js "^2.3.2" 1894 | asn1.js "^5.0.1" 1895 | async "^2.6.1" 1896 | bn.js "^4.11.8" 1897 | browserify-aes "^1.2.0" 1898 | bs58 "^4.0.1" 1899 | iso-random-stream "^1.1.0" 1900 | keypair "^1.0.1" 1901 | libp2p-crypto-secp256k1 "~0.3.0" 1902 | multihashing-async "~0.5.1" 1903 | node-forge "~0.7.6" 1904 | pem-jwk "^2.0.0" 1905 | protons "^1.0.1" 1906 | rsa-pem-to-jwk "^1.1.3" 1907 | tweetnacl "^1.0.0" 1908 | ursa-optional "~0.9.10" 1909 | 1910 | lodash.camelcase@^4.3.0: 1911 | version "4.3.0" 1912 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1913 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 1914 | 1915 | lodash.get@^4.4.2: 1916 | version "4.4.2" 1917 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 1918 | integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 1919 | 1920 | lodash.kebabcase@^4.1.1: 1921 | version "4.1.1" 1922 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 1923 | integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= 1924 | 1925 | lodash.lowercase@^4.3.0: 1926 | version "4.3.0" 1927 | resolved "https://registry.yarnpkg.com/lodash.lowercase/-/lodash.lowercase-4.3.0.tgz#46515aced4acb0b7093133333af068e4c3b14e9d" 1928 | integrity sha1-RlFaztSssLcJMTMzOvBo5MOxTp0= 1929 | 1930 | lodash.lowerfirst@^4.3.1: 1931 | version "4.3.1" 1932 | resolved "https://registry.yarnpkg.com/lodash.lowerfirst/-/lodash.lowerfirst-4.3.1.tgz#de3c7b12e02c6524a0059c2f6cb7c5c52655a13d" 1933 | integrity sha1-3jx7EuAsZSSgBZwvbLfFxSZVoT0= 1934 | 1935 | lodash.pad@^4.5.1: 1936 | version "4.5.1" 1937 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 1938 | integrity sha1-QzCUmoM6fI2iLMIPaibE1Z3runA= 1939 | 1940 | lodash.padend@^4.6.1: 1941 | version "4.6.1" 1942 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 1943 | integrity sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4= 1944 | 1945 | lodash.padstart@^4.6.1: 1946 | version "4.6.1" 1947 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 1948 | integrity sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs= 1949 | 1950 | lodash.repeat@^4.1.0: 1951 | version "4.1.0" 1952 | resolved "https://registry.yarnpkg.com/lodash.repeat/-/lodash.repeat-4.1.0.tgz#fc7de8131d8c8ac07e4b49f74ffe829d1f2bec44" 1953 | integrity sha1-/H3oEx2MisB+S0n3T/6CnR8r7EQ= 1954 | 1955 | lodash.snakecase@^4.1.1: 1956 | version "4.1.1" 1957 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 1958 | integrity sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40= 1959 | 1960 | lodash.startcase@^4.4.0: 1961 | version "4.4.0" 1962 | resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" 1963 | integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= 1964 | 1965 | lodash.trim@^4.5.1: 1966 | version "4.5.1" 1967 | resolved "https://registry.yarnpkg.com/lodash.trim/-/lodash.trim-4.5.1.tgz#36425e7ee90be4aa5e27bcebb85b7d11ea47aa57" 1968 | integrity sha1-NkJefukL5KpeJ7zruFt9EepHqlc= 1969 | 1970 | lodash.trimend@^4.5.1: 1971 | version "4.5.1" 1972 | resolved "https://registry.yarnpkg.com/lodash.trimend/-/lodash.trimend-4.5.1.tgz#12804437286b98cad8996b79414e11300114082f" 1973 | integrity sha1-EoBENyhrmMrYmWt5QU4RMAEUCC8= 1974 | 1975 | lodash.trimstart@^4.5.1: 1976 | version "4.5.1" 1977 | resolved "https://registry.yarnpkg.com/lodash.trimstart/-/lodash.trimstart-4.5.1.tgz#8ff4dec532d82486af59573c39445914e944a7f1" 1978 | integrity sha1-j/TexTLYJIavWVc8OURZFOlEp/E= 1979 | 1980 | lodash.unescape@4.0.1: 1981 | version "4.0.1" 1982 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 1983 | integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= 1984 | 1985 | lodash.uppercase@^4.3.0: 1986 | version "4.3.0" 1987 | resolved "https://registry.yarnpkg.com/lodash.uppercase/-/lodash.uppercase-4.3.0.tgz#c404abfd1469f93931f9bb24cf6cc7d57059bc73" 1988 | integrity sha1-xASr/RRp+Tkx+bskz2zH1XBZvHM= 1989 | 1990 | lodash.upperfirst@^4.3.1: 1991 | version "4.3.1" 1992 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 1993 | integrity sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984= 1994 | 1995 | lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15: 1996 | version "4.17.19" 1997 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1998 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 1999 | 2000 | log-symbols@^2.2.0: 2001 | version "2.2.0" 2002 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 2003 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 2004 | dependencies: 2005 | chalk "^2.0.1" 2006 | 2007 | long@^4.0.0: 2008 | version "4.0.0" 2009 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 2010 | integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 2011 | 2012 | looper@^3.0.0: 2013 | version "3.0.0" 2014 | resolved "https://registry.yarnpkg.com/looper/-/looper-3.0.0.tgz#2efa54c3b1cbaba9b94aee2e5914b0be57fbb749" 2015 | integrity sha1-LvpUw7HLq6m5Su4uWRSwvlf7t0k= 2016 | 2017 | lru-cache@^5.1.1: 2018 | version "5.1.1" 2019 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 2020 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 2021 | dependencies: 2022 | yallist "^3.0.2" 2023 | 2024 | mafmt@^6.0.2, mafmt@^6.0.7: 2025 | version "6.0.8" 2026 | resolved "https://registry.yarnpkg.com/mafmt/-/mafmt-6.0.8.tgz#4a5997c29229ca3acbbc86c1e3887e2b1c079441" 2027 | integrity sha512-6oRO2fwNiqXXiby8Anq9ULLQpcrZUsfR3Bs+Yn1DWd/Zd65xGS9fobKzzSsnM9nqUdUA3IggG0b1R3WamVsatA== 2028 | dependencies: 2029 | multiaddr "^6.1.0" 2030 | 2031 | md5.js@^1.3.4: 2032 | version "1.3.5" 2033 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 2034 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== 2035 | dependencies: 2036 | hash-base "^3.0.0" 2037 | inherits "^2.0.1" 2038 | safe-buffer "^5.1.2" 2039 | 2040 | mime-db@1.40.0: 2041 | version "1.40.0" 2042 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" 2043 | integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== 2044 | 2045 | mime-types@^2.1.12, mime-types@~2.1.19: 2046 | version "2.1.24" 2047 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" 2048 | integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== 2049 | dependencies: 2050 | mime-db "1.40.0" 2051 | 2052 | mimic-fn@^1.0.0: 2053 | version "1.2.0" 2054 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2055 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 2056 | 2057 | mimic-response@^1.0.0: 2058 | version "1.0.1" 2059 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 2060 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 2061 | 2062 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 2063 | version "1.0.1" 2064 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 2065 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 2066 | 2067 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2068 | version "1.0.1" 2069 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2070 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 2071 | 2072 | minimatch@^3.0.2, minimatch@^3.0.4: 2073 | version "3.0.4" 2074 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2075 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2076 | dependencies: 2077 | brace-expansion "^1.1.7" 2078 | 2079 | minimist@0.0.8: 2080 | version "0.0.8" 2081 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2082 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2083 | 2084 | minimist@^1.2.0: 2085 | version "1.2.0" 2086 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2087 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2088 | 2089 | mkdirp@^0.5.1: 2090 | version "0.5.1" 2091 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2092 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2093 | dependencies: 2094 | minimist "0.0.8" 2095 | 2096 | ms@2.0.0: 2097 | version "2.0.0" 2098 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2099 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2100 | 2101 | ms@^2.1.1: 2102 | version "2.1.2" 2103 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2104 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2105 | 2106 | multiaddr@^6.0.3, multiaddr@^6.0.4, multiaddr@^6.1.0: 2107 | version "6.1.0" 2108 | resolved "https://registry.yarnpkg.com/multiaddr/-/multiaddr-6.1.0.tgz#1f93afce58a33db5cc32a5917d8a14105d94330e" 2109 | integrity sha512-+XTP3OzG2m6JVcjxA9QBmGDr0Vk8WwnohC/fCC3puXb5qJqfJwLVJLEtdTc6vK7ri/hw+Nn4wyT4LkZaPnvGfQ== 2110 | dependencies: 2111 | bs58 "^4.0.1" 2112 | class-is "^1.1.0" 2113 | hi-base32 "~0.5.0" 2114 | ip "^1.1.5" 2115 | is-ip "^2.0.0" 2116 | varint "^5.0.0" 2117 | 2118 | multiaddr@^6.0.6: 2119 | version "6.1.1" 2120 | resolved "https://registry.yarnpkg.com/multiaddr/-/multiaddr-6.1.1.tgz#9aae57b3e399089b9896d9455afa8f6b117dff06" 2121 | integrity sha512-Q1Ika0F9MNhMtCs62Ue+GWIJtRFEhZ3Xz8wH7/MZDVZTWhil1/H2bEGN02kUees3hkI3q1oHSjmXYDM0gxaFjQ== 2122 | dependencies: 2123 | bs58 "^4.0.1" 2124 | class-is "^1.1.0" 2125 | hi-base32 "~0.5.0" 2126 | ip "^1.1.5" 2127 | is-ip "^2.0.0" 2128 | varint "^5.0.0" 2129 | 2130 | multibase@~0.6.0: 2131 | version "0.6.0" 2132 | resolved "https://registry.yarnpkg.com/multibase/-/multibase-0.6.0.tgz#0216e350614c7456da5e8e5b20d3fcd4c9104f56" 2133 | integrity sha512-R9bNLQhbD7MsitPm1NeY7w9sDgu6d7cuj25snAWH7k5PSNPSwIQQBpcpj8jx1W96dLbdigZqmUWOdQRMnAmgjA== 2134 | dependencies: 2135 | base-x "3.0.4" 2136 | 2137 | multicodec@~0.5.0, multicodec@~0.5.1: 2138 | version "0.5.5" 2139 | resolved "https://registry.yarnpkg.com/multicodec/-/multicodec-0.5.5.tgz#55c2535b44eca9ea40a13771420153fe075bb36d" 2140 | integrity sha512-1kOifvwAqp9IdiiTKmpK2tS+LY6GHZdKpk3S2EvW4T32vlwDyA3hJoZtGauzqdedUPVNGChnTksEotVOCVlC+Q== 2141 | dependencies: 2142 | varint "^5.0.0" 2143 | 2144 | multihashes@~0.4.13, multihashes@~0.4.14, multihashes@~0.4.15: 2145 | version "0.4.15" 2146 | resolved "https://registry.yarnpkg.com/multihashes/-/multihashes-0.4.15.tgz#6dbc55f7f312c6782f5367c03c9783681589d8a6" 2147 | integrity sha512-G/Smj1GWqw1RQP3dRuRRPe3oyLqvPqUaEDIaoi7JF7Loxl4WAWvhJNk84oyDEodSucv0MmSW/ZT0RKUrsIFD3g== 2148 | dependencies: 2149 | bs58 "^4.0.1" 2150 | varint "^5.0.0" 2151 | 2152 | multihashing-async@~0.5.1: 2153 | version "0.5.2" 2154 | resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.5.2.tgz#4af40e0dde2f1dbb12a7c6b265181437ac26b9de" 2155 | integrity sha512-mmyG6M/FKxrpBh9xQDUvuJ7BbqT93ZeEeH5X6LeMYKoYshYLr9BDdCsvDtZvn+Egf+/Xi+aOznrWL4vp3s+p0Q== 2156 | dependencies: 2157 | blakejs "^1.1.0" 2158 | js-sha3 "~0.8.0" 2159 | multihashes "~0.4.13" 2160 | murmurhash3js "^3.0.1" 2161 | nodeify "^1.0.1" 2162 | 2163 | multihashing-async@~0.6.0: 2164 | version "0.6.0" 2165 | resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.6.0.tgz#c1fc6696a624b9bf39b160b0c4c4e7ba3f394453" 2166 | integrity sha512-Qv8pgg99Lewc191A5nlXy0bSd2amfqlafNJZmarU6Sj7MZVjpR94SCxQjf4DwPtgWZkiLqsjUQBXA2RSq+hYyA== 2167 | dependencies: 2168 | blakejs "^1.1.0" 2169 | js-sha3 "~0.8.0" 2170 | multihashes "~0.4.13" 2171 | murmurhash3js "^3.0.1" 2172 | nodeify "^1.0.1" 2173 | 2174 | multihashing-async@~0.7.0: 2175 | version "0.7.0" 2176 | resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.7.0.tgz#3234fb98295be84386b85bfd20377d3e5be20d6b" 2177 | integrity sha512-SCbfl3f+DzJh+/5piukga9ofIOxwfT05t8R4jfzZIJ88YE9zU9+l3K2X+XB19MYyxqvyK9UJRNWbmQpZqQlbRA== 2178 | dependencies: 2179 | blakejs "^1.1.0" 2180 | buffer "^5.2.1" 2181 | err-code "^1.1.2" 2182 | js-sha3 "~0.8.0" 2183 | multihashes "~0.4.13" 2184 | murmurhash3js-revisited "^3.0.0" 2185 | 2186 | murmurhash3js-revisited@^3.0.0: 2187 | version "3.0.0" 2188 | resolved "https://registry.yarnpkg.com/murmurhash3js-revisited/-/murmurhash3js-revisited-3.0.0.tgz#6bd36e25de8f73394222adc6e41fa3fac08a5869" 2189 | integrity sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g== 2190 | 2191 | murmurhash3js@^3.0.1: 2192 | version "3.0.1" 2193 | resolved "https://registry.yarnpkg.com/murmurhash3js/-/murmurhash3js-3.0.1.tgz#3e983e5b47c2a06f43a713174e7e435ca044b998" 2194 | integrity sha1-Ppg+W0fCoG9DpxMXTn5DXKBEuZg= 2195 | 2196 | mute-stream@0.0.7: 2197 | version "0.0.7" 2198 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2199 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 2200 | 2201 | nan@2.14.0, nan@^2.11.1, nan@^2.14.0: 2202 | version "2.14.0" 2203 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 2204 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 2205 | 2206 | napi-build-utils@^1.0.1: 2207 | version "1.0.1" 2208 | resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" 2209 | integrity sha512-boQj1WFgQH3v4clhu3mTNfP+vOBxorDlE8EKiMjUlLG3C4qAESnn9AxIOkFgTR2c9LtzNjPrjS60cT27ZKBhaA== 2210 | 2211 | natural-compare@^1.4.0: 2212 | version "1.4.0" 2213 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2214 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2215 | 2216 | "ndjson@github:hugomrdias/ndjson#feat/readable-stream3": 2217 | version "1.5.0" 2218 | resolved "https://codeload.github.com/hugomrdias/ndjson/tar.gz/4db16da6b42e5b39bf300c3a7cde62abb3fa3a11" 2219 | dependencies: 2220 | json-stringify-safe "^5.0.1" 2221 | minimist "^1.2.0" 2222 | split2 "^3.1.0" 2223 | through2 "^3.0.0" 2224 | 2225 | nice-try@^1.0.4: 2226 | version "1.0.5" 2227 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2228 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2229 | 2230 | node-abi@^2.7.0: 2231 | version "2.11.0" 2232 | resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.11.0.tgz#b7dce18815057544a049be5ae75cd1fdc2e9ea59" 2233 | integrity sha512-kuy/aEg75u40v378WRllQ4ZexaXJiCvB68D2scDXclp/I4cRq6togpbOoKhmN07tns9Zldu51NNERo0wehfX9g== 2234 | dependencies: 2235 | semver "^5.4.1" 2236 | 2237 | node-fetch@^2.3.0: 2238 | version "2.6.1" 2239 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 2240 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 2241 | 2242 | node-forge@~0.7.6: 2243 | version "0.7.6" 2244 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.6.tgz#fdf3b418aee1f94f0ef642cd63486c77ca9724ac" 2245 | integrity sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw== 2246 | 2247 | nodeify@^1.0.1: 2248 | version "1.0.1" 2249 | resolved "https://registry.yarnpkg.com/nodeify/-/nodeify-1.0.1.tgz#64ab69a7bdbaf03ce107b4f0335c87c0b9e91b1d" 2250 | integrity sha1-ZKtpp7268DzhB7TwM1yHwLnpGx0= 2251 | dependencies: 2252 | is-promise "~1.0.0" 2253 | promise "~1.3.0" 2254 | 2255 | noop-logger@^0.1.1: 2256 | version "0.1.1" 2257 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 2258 | integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= 2259 | 2260 | normalize-path@^3.0.0, normalize-path@~3.0.0: 2261 | version "3.0.0" 2262 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2263 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2264 | 2265 | npm-run-path@^2.0.0: 2266 | version "2.0.2" 2267 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2268 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2269 | dependencies: 2270 | path-key "^2.0.0" 2271 | 2272 | npmlog@^4.0.1: 2273 | version "4.1.2" 2274 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2275 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 2276 | dependencies: 2277 | are-we-there-yet "~1.1.2" 2278 | console-control-strings "~1.1.0" 2279 | gauge "~2.7.3" 2280 | set-blocking "~2.0.0" 2281 | 2282 | number-is-nan@^1.0.0: 2283 | version "1.0.1" 2284 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2285 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2286 | 2287 | oauth-sign@~0.9.0: 2288 | version "0.9.0" 2289 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2290 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 2291 | 2292 | object-assign@^2.0.0: 2293 | version "2.1.1" 2294 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" 2295 | integrity sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo= 2296 | 2297 | object-assign@^4.1.0: 2298 | version "4.1.1" 2299 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2300 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2301 | 2302 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2303 | version "1.4.0" 2304 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2305 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2306 | dependencies: 2307 | wrappy "1" 2308 | 2309 | onetime@^2.0.0: 2310 | version "2.0.1" 2311 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2312 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2313 | dependencies: 2314 | mimic-fn "^1.0.0" 2315 | 2316 | opencollective-postinstall@^2.0.0: 2317 | version "2.0.2" 2318 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" 2319 | integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== 2320 | 2321 | optimist@~0.3.5: 2322 | version "0.3.7" 2323 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" 2324 | integrity sha1-yQlBrVnkJzMokjB00s8ufLxuwNk= 2325 | dependencies: 2326 | wordwrap "~0.0.2" 2327 | 2328 | optionator@^0.8.2: 2329 | version "0.8.2" 2330 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2331 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 2332 | dependencies: 2333 | deep-is "~0.1.3" 2334 | fast-levenshtein "~2.0.4" 2335 | levn "~0.3.0" 2336 | prelude-ls "~1.1.2" 2337 | type-check "~0.3.2" 2338 | wordwrap "~1.0.0" 2339 | 2340 | ora@^3.4.0: 2341 | version "3.4.0" 2342 | resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" 2343 | integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== 2344 | dependencies: 2345 | chalk "^2.4.2" 2346 | cli-cursor "^2.1.0" 2347 | cli-spinners "^2.0.0" 2348 | log-symbols "^2.2.0" 2349 | strip-ansi "^5.2.0" 2350 | wcwidth "^1.0.1" 2351 | 2352 | os-homedir@^1.0.1: 2353 | version "1.0.2" 2354 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2355 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2356 | 2357 | os-tmpdir@~1.0.2: 2358 | version "1.0.2" 2359 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2360 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2361 | 2362 | p-finally@^1.0.0: 2363 | version "1.0.0" 2364 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2365 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2366 | 2367 | parent-module@^1.0.0: 2368 | version "1.0.1" 2369 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2370 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2371 | dependencies: 2372 | callsites "^3.0.0" 2373 | 2374 | parse-json@^4.0.0: 2375 | version "4.0.0" 2376 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2377 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2378 | dependencies: 2379 | error-ex "^1.3.1" 2380 | json-parse-better-errors "^1.0.1" 2381 | 2382 | path-is-absolute@^1.0.0: 2383 | version "1.0.1" 2384 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2385 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2386 | 2387 | path-key@^2.0.0, path-key@^2.0.1: 2388 | version "2.0.1" 2389 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2390 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2391 | 2392 | peer-id@~0.12.2: 2393 | version "0.12.4" 2394 | resolved "https://registry.yarnpkg.com/peer-id/-/peer-id-0.12.4.tgz#25708b0676ee0a8b0ce32d73fe9c68163ed747c2" 2395 | integrity sha512-AIAwL/6CmVc/VKbUhpA1rY3A/VJ3Z9ELvtvDQfl5cIi0A74L7lvsJ6LxQn5JSJVHM5Us2Ng9zMO523dO3FFnnw== 2396 | dependencies: 2397 | async "^2.6.3" 2398 | class-is "^1.1.0" 2399 | libp2p-crypto "~0.16.1" 2400 | multihashes "~0.4.15" 2401 | 2402 | peer-id@~0.12.3: 2403 | version "0.12.5" 2404 | resolved "https://registry.yarnpkg.com/peer-id/-/peer-id-0.12.5.tgz#b22a1edc5b4aaaa2bb830b265ba69429823e5179" 2405 | integrity sha512-3xVWrtIvNm9/OPzaQBgXDrfWNx63AftgFQkvqO6YSZy7sP3Fuadwwbn54F/VO9AnpyW/26i0WRQz9FScivXrmw== 2406 | dependencies: 2407 | async "^2.6.3" 2408 | class-is "^1.1.0" 2409 | libp2p-crypto "~0.16.1" 2410 | multihashes "~0.4.15" 2411 | 2412 | peer-info@~0.15.1: 2413 | version "0.15.1" 2414 | resolved "https://registry.yarnpkg.com/peer-info/-/peer-info-0.15.1.tgz#21254a7c516d0dd046b150120b9aaf1b9ad02146" 2415 | integrity sha512-Y91Q2tZRC0CpSTPd1UebhGqniOrOAk/aj60uYUcWJXCoLTAnGu+4LJGoiay8ayudS6ice7l3SKhgL/cS62QacA== 2416 | dependencies: 2417 | mafmt "^6.0.2" 2418 | multiaddr "^6.0.3" 2419 | peer-id "~0.12.2" 2420 | unique-by "^1.0.0" 2421 | 2422 | pem-jwk@^2.0.0: 2423 | version "2.0.0" 2424 | resolved "https://registry.yarnpkg.com/pem-jwk/-/pem-jwk-2.0.0.tgz#1c5bb264612fc391340907f5c1de60c06d22f085" 2425 | integrity sha512-rFxu7rVoHgQ5H9YsP50dDWf0rHjreVA2z0yPiWr5WdH/UHb29hKtF7h6l8vNd1cbYR1t0QL+JKhW55a2ZV4KtA== 2426 | dependencies: 2427 | asn1.js "^5.0.1" 2428 | 2429 | performance-now@^2.1.0: 2430 | version "2.1.0" 2431 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2432 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 2433 | 2434 | picomatch@^2.0.4: 2435 | version "2.0.7" 2436 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" 2437 | integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA== 2438 | 2439 | pkginfo@^0.4.1: 2440 | version "0.4.1" 2441 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" 2442 | integrity sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8= 2443 | 2444 | pluralize@^8.0.0: 2445 | version "8.0.0" 2446 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" 2447 | integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== 2448 | 2449 | prebuild-install@5.3.0: 2450 | version "5.3.0" 2451 | resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" 2452 | integrity sha512-aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg== 2453 | dependencies: 2454 | detect-libc "^1.0.3" 2455 | expand-template "^2.0.3" 2456 | github-from-package "0.0.0" 2457 | minimist "^1.2.0" 2458 | mkdirp "^0.5.1" 2459 | napi-build-utils "^1.0.1" 2460 | node-abi "^2.7.0" 2461 | noop-logger "^0.1.1" 2462 | npmlog "^4.0.1" 2463 | os-homedir "^1.0.1" 2464 | pump "^2.0.1" 2465 | rc "^1.2.7" 2466 | simple-get "^2.7.0" 2467 | tar-fs "^1.13.0" 2468 | tunnel-agent "^0.6.0" 2469 | which-pm-runs "^1.0.0" 2470 | 2471 | prelude-ls@~1.1.2: 2472 | version "1.1.2" 2473 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2474 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2475 | 2476 | prettier@^1.13.5, prettier@^1.18.2: 2477 | version "1.18.2" 2478 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" 2479 | integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== 2480 | 2481 | process-nextick-args@~2.0.0: 2482 | version "2.0.1" 2483 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2484 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2485 | 2486 | progress@^2.0.0: 2487 | version "2.0.3" 2488 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2489 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2490 | 2491 | promise-nodeify@^3.0.1: 2492 | version "3.0.1" 2493 | resolved "https://registry.yarnpkg.com/promise-nodeify/-/promise-nodeify-3.0.1.tgz#f0f5d9720ee9ec71dd2bfa92667be504c10229c2" 2494 | integrity sha512-ghsSuzZXJX8iO7WVec2z7GI+Xk/EyiD+JZK7AZKhUqYfpLa/Zs4ylUD+CwwnKlG6G3HnkUPMAi6PO7zeqGKssg== 2495 | 2496 | promise@~1.3.0: 2497 | version "1.3.0" 2498 | resolved "https://registry.yarnpkg.com/promise/-/promise-1.3.0.tgz#e5cc9a4c8278e4664ffedc01c7da84842b040175" 2499 | integrity sha1-5cyaTIJ45GZP/twBx9qEhCsEAXU= 2500 | dependencies: 2501 | is-promise "~1" 2502 | 2503 | promisify-es6@^1.0.3: 2504 | version "1.0.3" 2505 | resolved "https://registry.yarnpkg.com/promisify-es6/-/promisify-es6-1.0.3.tgz#b012668c4df3c965ce13daac2b3a4d1726a96346" 2506 | integrity sha512-N9iVG+CGJsI4b4ZGazjwLnxErD2d9Pe4DPvvXSxYA9tFNu8ymXME4Qs5HIQ0LMJpNM7zj+m0NlNnNeqFpKzqnA== 2507 | 2508 | protocol-buffers-schema@^3.3.1: 2509 | version "3.3.2" 2510 | resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz#00434f608b4e8df54c59e070efeefc37fb4bb859" 2511 | integrity sha512-Xdayp8sB/mU+sUV4G7ws8xtYMGdQnxbeIfLjyO9TZZRJdztBGhlmbI5x1qcY4TG5hBkIKGnc28i7nXxaugu88w== 2512 | 2513 | protons@^1.0.1: 2514 | version "1.0.1" 2515 | resolved "https://registry.yarnpkg.com/protons/-/protons-1.0.1.tgz#1c107144c07fc2d1cb8b6cb76451e6a938237676" 2516 | integrity sha512-+0ZKnfVs+4c43tbAQ5j0Mck8wPcLnlxUYzKQoB4iDW4ocdXGnN4P+0dDbgX1FTpoY9+7P2Tn2scJyHHqj+S/lQ== 2517 | dependencies: 2518 | protocol-buffers-schema "^3.3.1" 2519 | safe-buffer "^5.1.1" 2520 | signed-varint "^2.0.1" 2521 | varint "^5.0.0" 2522 | 2523 | psl@^1.1.24: 2524 | version "1.3.0" 2525 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.3.0.tgz#e1ebf6a3b5564fa8376f3da2275da76d875ca1bd" 2526 | integrity sha512-avHdspHO+9rQTLbv1RO+MPYeP/SzsCoxofjVnHanETfQhTJrmB0HlDoW+EiN/R+C0BZ+gERab9NY0lPN2TxNag== 2527 | 2528 | pull-defer@~0.2.3: 2529 | version "0.2.3" 2530 | resolved "https://registry.yarnpkg.com/pull-defer/-/pull-defer-0.2.3.tgz#4ee09c6d9e227bede9938db80391c3dac489d113" 2531 | integrity sha512-/An3KE7mVjZCqNhZsr22k1Tx8MACnUnHZZNPSJ0S62td8JtYr/AiRG42Vz7Syu31SoTLUzVIe61jtT/pNdjVYA== 2532 | 2533 | pull-stream@^3.2.3, pull-stream@^3.6.9: 2534 | version "3.6.14" 2535 | resolved "https://registry.yarnpkg.com/pull-stream/-/pull-stream-3.6.14.tgz#529dbd5b86131f4a5ed636fdf7f6af00781357ee" 2536 | integrity sha512-KIqdvpqHHaTUA2mCYcLG1ibEbu/LCKoJZsBWyv9lSYtPkJPBq8m3Hxa103xHi6D2thj5YXa0TqK3L3GUkwgnew== 2537 | 2538 | pull-to-stream@~0.1.1: 2539 | version "0.1.1" 2540 | resolved "https://registry.yarnpkg.com/pull-to-stream/-/pull-to-stream-0.1.1.tgz#fa2058528528e3542b81d6f17cbc42288508ff37" 2541 | integrity sha512-thZkMv6F9PILt9zdvpI2gxs19mkDrlixYKX6cOBxAW16i1NZH+yLAmF4r8QfJ69zuQh27e01JZP9y27tsH021w== 2542 | dependencies: 2543 | readable-stream "^3.1.1" 2544 | 2545 | pump@^1.0.0: 2546 | version "1.0.3" 2547 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" 2548 | integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== 2549 | dependencies: 2550 | end-of-stream "^1.1.0" 2551 | once "^1.3.1" 2552 | 2553 | pump@^2.0.1: 2554 | version "2.0.1" 2555 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2556 | integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== 2557 | dependencies: 2558 | end-of-stream "^1.1.0" 2559 | once "^1.3.1" 2560 | 2561 | pump@^3.0.0: 2562 | version "3.0.0" 2563 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2564 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2565 | dependencies: 2566 | end-of-stream "^1.1.0" 2567 | once "^1.3.1" 2568 | 2569 | punycode@^1.4.1: 2570 | version "1.4.1" 2571 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2572 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2573 | 2574 | punycode@^2.1.0: 2575 | version "2.1.1" 2576 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2577 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2578 | 2579 | qs@^6.5.2: 2580 | version "6.8.0" 2581 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.8.0.tgz#87b763f0d37ca54200334cd57bb2ef8f68a1d081" 2582 | integrity sha512-tPSkj8y92PfZVbinY1n84i1Qdx75lZjMQYx9WZhnkofyxzw2r7Ho39G3/aEvSUdebxpnnM4LZJCtvE/Aq3+s9w== 2583 | 2584 | qs@~6.5.2: 2585 | version "6.5.2" 2586 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2587 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 2588 | 2589 | ramda@^0.24.1: 2590 | version "0.24.1" 2591 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" 2592 | integrity sha1-w7d1UZfzW43DUCIoJixMkd22uFc= 2593 | 2594 | ramda@^0.25.0: 2595 | version "0.25.0" 2596 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9" 2597 | integrity sha512-GXpfrYVPwx3K7RQ6aYT8KPS8XViSXUVJT1ONhoKPE9VAleW42YE+U+8VEyGWt41EnEQW7gwecYJriTI0pKoecQ== 2598 | 2599 | ramdasauce@^2.1.0: 2600 | version "2.1.3" 2601 | resolved "https://registry.yarnpkg.com/ramdasauce/-/ramdasauce-2.1.3.tgz#acb45ecc7e4fc4d6f39e19989b4a16dff383e9c2" 2602 | integrity sha512-Ml3CPim4SKwmg5g9UI77lnRSeKr/kQw7YhQ6rfdMcBYy6DMlwmkEwQqjygJ3OhxPR+NfFfpjKl3Tf8GXckaqqg== 2603 | dependencies: 2604 | ramda "^0.24.1" 2605 | 2606 | rc@^1.2.7: 2607 | version "1.2.8" 2608 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2609 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2610 | dependencies: 2611 | deep-extend "^0.6.0" 2612 | ini "~1.3.0" 2613 | minimist "^1.2.0" 2614 | strip-json-comments "~2.0.1" 2615 | 2616 | "readable-stream@2 || 3", readable-stream@^3.0.0, readable-stream@^3.0.1, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0: 2617 | version "3.4.0" 2618 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" 2619 | integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== 2620 | dependencies: 2621 | inherits "^2.0.3" 2622 | string_decoder "^1.1.1" 2623 | util-deprecate "^1.0.1" 2624 | 2625 | readable-stream@^2.0.6, readable-stream@^2.3.0, readable-stream@^2.3.5: 2626 | version "2.3.7" 2627 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 2628 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 2629 | dependencies: 2630 | core-util-is "~1.0.0" 2631 | inherits "~2.0.3" 2632 | isarray "~1.0.0" 2633 | process-nextick-args "~2.0.0" 2634 | safe-buffer "~5.1.1" 2635 | string_decoder "~1.1.1" 2636 | util-deprecate "~1.0.1" 2637 | 2638 | readdirp@~3.2.0: 2639 | version "3.2.0" 2640 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" 2641 | integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ== 2642 | dependencies: 2643 | picomatch "^2.0.4" 2644 | 2645 | regenerator-runtime@^0.13.2: 2646 | version "0.13.3" 2647 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" 2648 | integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== 2649 | 2650 | regexpp@^2.0.1: 2651 | version "2.0.1" 2652 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 2653 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 2654 | 2655 | request@^2.88.0: 2656 | version "2.88.0" 2657 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 2658 | integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== 2659 | dependencies: 2660 | aws-sign2 "~0.7.0" 2661 | aws4 "^1.8.0" 2662 | caseless "~0.12.0" 2663 | combined-stream "~1.0.6" 2664 | extend "~3.0.2" 2665 | forever-agent "~0.6.1" 2666 | form-data "~2.3.2" 2667 | har-validator "~5.1.0" 2668 | http-signature "~1.2.0" 2669 | is-typedarray "~1.0.0" 2670 | isstream "~0.1.2" 2671 | json-stringify-safe "~5.0.1" 2672 | mime-types "~2.1.19" 2673 | oauth-sign "~0.9.0" 2674 | performance-now "^2.1.0" 2675 | qs "~6.5.2" 2676 | safe-buffer "^5.1.2" 2677 | tough-cookie "~2.4.3" 2678 | tunnel-agent "^0.6.0" 2679 | uuid "^3.3.2" 2680 | 2681 | resolve-from@^3.0.0: 2682 | version "3.0.0" 2683 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2684 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= 2685 | 2686 | resolve-from@^4.0.0: 2687 | version "4.0.0" 2688 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2689 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2690 | 2691 | restore-cursor@^2.0.0: 2692 | version "2.0.0" 2693 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2694 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2695 | dependencies: 2696 | onetime "^2.0.0" 2697 | signal-exit "^3.0.2" 2698 | 2699 | rimraf@2.6.3: 2700 | version "2.6.3" 2701 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2702 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2703 | dependencies: 2704 | glob "^7.1.3" 2705 | 2706 | rimraf@^2.6.3: 2707 | version "2.7.1" 2708 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2709 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 2710 | dependencies: 2711 | glob "^7.1.3" 2712 | 2713 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2714 | version "2.0.2" 2715 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2716 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== 2717 | dependencies: 2718 | hash-base "^3.0.0" 2719 | inherits "^2.0.1" 2720 | 2721 | rsa-pem-to-jwk@^1.1.3: 2722 | version "1.1.3" 2723 | resolved "https://registry.yarnpkg.com/rsa-pem-to-jwk/-/rsa-pem-to-jwk-1.1.3.tgz#245e76bdb7e7234cfee7ca032d31b54c38fab98e" 2724 | integrity sha1-JF52vbfnI0z+58oDLTG1TDj6uY4= 2725 | dependencies: 2726 | object-assign "^2.0.0" 2727 | rsa-unpack "0.0.6" 2728 | 2729 | rsa-unpack@0.0.6: 2730 | version "0.0.6" 2731 | resolved "https://registry.yarnpkg.com/rsa-unpack/-/rsa-unpack-0.0.6.tgz#f50ebd56a628378e631f297161026ce9ab4eddba" 2732 | integrity sha1-9Q69VqYoN45jHylxYQJs6atO3bo= 2733 | dependencies: 2734 | optimist "~0.3.5" 2735 | 2736 | run-async@^2.2.0: 2737 | version "2.3.0" 2738 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2739 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 2740 | dependencies: 2741 | is-promise "^2.1.0" 2742 | 2743 | rxjs@^6.4.0: 2744 | version "6.5.2" 2745 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" 2746 | integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== 2747 | dependencies: 2748 | tslib "^1.9.0" 2749 | 2750 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: 2751 | version "5.2.1" 2752 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2753 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2754 | 2755 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2756 | version "5.1.2" 2757 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2758 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2759 | 2760 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2761 | version "2.1.2" 2762 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2763 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2764 | 2765 | secp256k1@^3.6.2: 2766 | version "3.7.1" 2767 | resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-3.7.1.tgz#12e473e0e9a7c2f2d4d4818e722ad0e14cc1e2f1" 2768 | integrity sha512-1cf8sbnRreXrQFdH6qsg2H71Xw91fCCS9Yp021GnUNJzWJS/py96fS4lHbnTnouLp08Xj6jBoBB6V78Tdbdu5g== 2769 | dependencies: 2770 | bindings "^1.5.0" 2771 | bip66 "^1.1.5" 2772 | bn.js "^4.11.8" 2773 | create-hash "^1.2.0" 2774 | drbg.js "^1.0.1" 2775 | elliptic "^6.4.1" 2776 | nan "^2.14.0" 2777 | safe-buffer "^5.1.2" 2778 | 2779 | semver@^5.4.1, semver@^5.5.0: 2780 | version "5.7.1" 2781 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2782 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2783 | 2784 | semver@^6.1.1, semver@^6.1.2, semver@^6.2.0: 2785 | version "6.3.0" 2786 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2787 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2788 | 2789 | set-blocking@~2.0.0: 2790 | version "2.0.0" 2791 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2792 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2793 | 2794 | sha.js@^2.4.0, sha.js@^2.4.8: 2795 | version "2.4.11" 2796 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2797 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 2798 | dependencies: 2799 | inherits "^2.0.1" 2800 | safe-buffer "^5.0.1" 2801 | 2802 | shebang-command@^1.2.0: 2803 | version "1.2.0" 2804 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2805 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2806 | dependencies: 2807 | shebang-regex "^1.0.0" 2808 | 2809 | shebang-regex@^1.0.0: 2810 | version "1.0.0" 2811 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2812 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2813 | 2814 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2815 | version "3.0.2" 2816 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2817 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2818 | 2819 | signed-varint@^2.0.1: 2820 | version "2.0.1" 2821 | resolved "https://registry.yarnpkg.com/signed-varint/-/signed-varint-2.0.1.tgz#50a9989da7c98c2c61dad119bc97470ef8528129" 2822 | integrity sha1-UKmYnafJjCxh2tEZvJdHDvhSgSk= 2823 | dependencies: 2824 | varint "~5.0.0" 2825 | 2826 | simple-concat@^1.0.0: 2827 | version "1.0.0" 2828 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" 2829 | integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= 2830 | 2831 | simple-get@^2.7.0: 2832 | version "2.8.1" 2833 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" 2834 | integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== 2835 | dependencies: 2836 | decompress-response "^3.3.0" 2837 | once "^1.3.1" 2838 | simple-concat "^1.0.0" 2839 | 2840 | slice-ansi@^2.1.0: 2841 | version "2.1.0" 2842 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 2843 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 2844 | dependencies: 2845 | ansi-styles "^3.2.0" 2846 | astral-regex "^1.0.0" 2847 | is-fullwidth-code-point "^2.0.0" 2848 | 2849 | source-map-support@^0.5.11: 2850 | version "0.5.13" 2851 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2852 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2853 | dependencies: 2854 | buffer-from "^1.0.0" 2855 | source-map "^0.6.0" 2856 | 2857 | source-map@^0.6.0: 2858 | version "0.6.1" 2859 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2860 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2861 | 2862 | split2@^3.1.0: 2863 | version "3.1.1" 2864 | resolved "https://registry.yarnpkg.com/split2/-/split2-3.1.1.tgz#c51f18f3e06a8c4469aaab487687d8d956160bb6" 2865 | integrity sha512-emNzr1s7ruq4N+1993yht631/JH+jaj0NYBosuKmLcq+JkGQ9MmTw1RB1fGaTCzUuseRIClrlSLHRNYGwWQ58Q== 2866 | dependencies: 2867 | readable-stream "^3.0.0" 2868 | 2869 | sprintf-js@~1.0.2: 2870 | version "1.0.3" 2871 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2872 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2873 | 2874 | sshpk@^1.7.0: 2875 | version "1.16.1" 2876 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 2877 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 2878 | dependencies: 2879 | asn1 "~0.2.3" 2880 | assert-plus "^1.0.0" 2881 | bcrypt-pbkdf "^1.0.0" 2882 | dashdash "^1.12.0" 2883 | ecc-jsbn "~0.1.1" 2884 | getpass "^0.1.1" 2885 | jsbn "~0.1.0" 2886 | safer-buffer "^2.0.2" 2887 | tweetnacl "~0.14.0" 2888 | 2889 | stable@~0.1.8: 2890 | version "0.1.8" 2891 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 2892 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 2893 | 2894 | stream-to-pull-stream@^1.7.2: 2895 | version "1.7.3" 2896 | resolved "https://registry.yarnpkg.com/stream-to-pull-stream/-/stream-to-pull-stream-1.7.3.tgz#4161aa2d2eb9964de60bfa1af7feaf917e874ece" 2897 | integrity sha512-6sNyqJpr5dIOQdgNy/xcDWwDuzAsAwVzhzrWlAPAQ7Lkjx/rv0wgvxEyKwTq6FmNd5rjTrELt/CLmaSw7crMGg== 2898 | dependencies: 2899 | looper "^3.0.0" 2900 | pull-stream "^3.2.3" 2901 | 2902 | string-width@^1.0.1: 2903 | version "1.0.2" 2904 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2905 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 2906 | dependencies: 2907 | code-point-at "^1.0.0" 2908 | is-fullwidth-code-point "^1.0.0" 2909 | strip-ansi "^3.0.0" 2910 | 2911 | "string-width@^1.0.2 || 2", string-width@^2.1.0, string-width@^2.1.1: 2912 | version "2.1.1" 2913 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2914 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2915 | dependencies: 2916 | is-fullwidth-code-point "^2.0.0" 2917 | strip-ansi "^4.0.0" 2918 | 2919 | string-width@^3.0.0: 2920 | version "3.1.0" 2921 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2922 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 2923 | dependencies: 2924 | emoji-regex "^7.0.1" 2925 | is-fullwidth-code-point "^2.0.0" 2926 | strip-ansi "^5.1.0" 2927 | 2928 | string_decoder@^1.1.1, string_decoder@^1.2.0: 2929 | version "1.3.0" 2930 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2931 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2932 | dependencies: 2933 | safe-buffer "~5.2.0" 2934 | 2935 | string_decoder@~1.1.1: 2936 | version "1.1.1" 2937 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2938 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2939 | dependencies: 2940 | safe-buffer "~5.1.0" 2941 | 2942 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2943 | version "3.0.1" 2944 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2945 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 2946 | dependencies: 2947 | ansi-regex "^2.0.0" 2948 | 2949 | strip-ansi@^4.0.0: 2950 | version "4.0.0" 2951 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2952 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2953 | dependencies: 2954 | ansi-regex "^3.0.0" 2955 | 2956 | strip-ansi@^5.1.0, strip-ansi@^5.2.0: 2957 | version "5.2.0" 2958 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2959 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2960 | dependencies: 2961 | ansi-regex "^4.1.0" 2962 | 2963 | strip-eof@^1.0.0: 2964 | version "1.0.0" 2965 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2966 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2967 | 2968 | strip-json-comments@^3.0.1: 2969 | version "3.0.1" 2970 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" 2971 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== 2972 | 2973 | strip-json-comments@~2.0.1: 2974 | version "2.0.1" 2975 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2976 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 2977 | 2978 | supports-color@^5.3.0: 2979 | version "5.5.0" 2980 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2981 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2982 | dependencies: 2983 | has-flag "^3.0.0" 2984 | 2985 | table@^5.2.3: 2986 | version "5.4.6" 2987 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 2988 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 2989 | dependencies: 2990 | ajv "^6.10.2" 2991 | lodash "^4.17.14" 2992 | slice-ansi "^2.1.0" 2993 | string-width "^3.0.0" 2994 | 2995 | tar-fs@^1.13.0: 2996 | version "1.16.3" 2997 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" 2998 | integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== 2999 | dependencies: 3000 | chownr "^1.0.1" 3001 | mkdirp "^0.5.1" 3002 | pump "^1.0.0" 3003 | tar-stream "^1.1.2" 3004 | 3005 | tar-stream@^1.1.2: 3006 | version "1.6.2" 3007 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" 3008 | integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== 3009 | dependencies: 3010 | bl "^1.0.0" 3011 | buffer-alloc "^1.2.0" 3012 | end-of-stream "^1.0.0" 3013 | fs-constants "^1.0.0" 3014 | readable-stream "^2.3.0" 3015 | to-buffer "^1.1.1" 3016 | xtend "^4.0.0" 3017 | 3018 | tar-stream@^2.0.1: 3019 | version "2.1.0" 3020 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.0.tgz#d1aaa3661f05b38b5acc9b7020efdca5179a2cc3" 3021 | integrity sha512-+DAn4Nb4+gz6WZigRzKEZl1QuJVOLtAwwF+WUxy1fJ6X63CaGaUAxJRD2KEn1OMfcbCjySTYpNC6WmfQoIEOdw== 3022 | dependencies: 3023 | bl "^3.0.0" 3024 | end-of-stream "^1.4.1" 3025 | fs-constants "^1.0.0" 3026 | inherits "^2.0.3" 3027 | readable-stream "^3.1.1" 3028 | 3029 | text-table@^0.2.0: 3030 | version "0.2.0" 3031 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3032 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 3033 | 3034 | through2@^3.0.0, through2@^3.0.1: 3035 | version "3.0.1" 3036 | resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a" 3037 | integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww== 3038 | dependencies: 3039 | readable-stream "2 || 3" 3040 | 3041 | "through@>=2.2.7 <3", through@^2.3.6: 3042 | version "2.3.8" 3043 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3044 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3045 | 3046 | tmp@^0.0.33: 3047 | version "0.0.33" 3048 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3049 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 3050 | dependencies: 3051 | os-tmpdir "~1.0.2" 3052 | 3053 | to-buffer@^1.1.1: 3054 | version "1.1.1" 3055 | resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" 3056 | integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== 3057 | 3058 | to-regex-range@^5.0.1: 3059 | version "5.0.1" 3060 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3061 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3062 | dependencies: 3063 | is-number "^7.0.0" 3064 | 3065 | tough-cookie@~2.4.3: 3066 | version "2.4.3" 3067 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 3068 | integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== 3069 | dependencies: 3070 | psl "^1.1.24" 3071 | punycode "^1.4.1" 3072 | 3073 | tslib@^1.8.1, tslib@^1.9.0: 3074 | version "1.10.0" 3075 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 3076 | integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== 3077 | 3078 | tsutils@^3.14.0: 3079 | version "3.17.1" 3080 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 3081 | integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 3082 | dependencies: 3083 | tslib "^1.8.1" 3084 | 3085 | tunnel-agent@^0.6.0: 3086 | version "0.6.0" 3087 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3088 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 3089 | dependencies: 3090 | safe-buffer "^5.0.1" 3091 | 3092 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3093 | version "0.14.5" 3094 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3095 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 3096 | 3097 | tweetnacl@^1.0.0: 3098 | version "1.0.1" 3099 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.1.tgz#2594d42da73cd036bd0d2a54683dd35a6b55ca17" 3100 | integrity sha512-kcoMoKTPYnoeS50tzoqjPY3Uv9axeuuFAZY9M/9zFnhoVvRfxz9K29IMPD7jGmt2c8SW7i3gT9WqDl2+nV7p4A== 3101 | 3102 | type-check@~0.3.2: 3103 | version "0.3.2" 3104 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3105 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3106 | dependencies: 3107 | prelude-ls "~1.1.2" 3108 | 3109 | typescript@^3.5.2: 3110 | version "3.7.2" 3111 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.2.tgz#27e489b95fa5909445e9fef5ee48d81697ad18fb" 3112 | integrity sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ== 3113 | 3114 | unique-by@^1.0.0: 3115 | version "1.0.0" 3116 | resolved "https://registry.yarnpkg.com/unique-by/-/unique-by-1.0.0.tgz#5220c86ba7bc572fb713ad74651470cb644212bd" 3117 | integrity sha1-UiDIa6e8Vy+3E610ZRRwy2RCEr0= 3118 | 3119 | universalify@^0.1.0: 3120 | version "0.1.2" 3121 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3122 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3123 | 3124 | uri-js@^4.2.2: 3125 | version "4.2.2" 3126 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3127 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 3128 | dependencies: 3129 | punycode "^2.1.0" 3130 | 3131 | ursa-optional@~0.9.10: 3132 | version "0.9.10" 3133 | resolved "https://registry.yarnpkg.com/ursa-optional/-/ursa-optional-0.9.10.tgz#f2eabfe0b6001dbf07a78740cd0a6e5ba6eb2554" 3134 | integrity sha512-RvEbhnxlggX4MXon7KQulTFiJQtLJZpSb9ZSa7ZTkOW0AzqiVTaLjI4vxaSzJBDH9dwZ3ltZadFiBaZslp6haA== 3135 | dependencies: 3136 | bindings "^1.3.0" 3137 | nan "^2.11.1" 3138 | 3139 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 3140 | version "1.0.2" 3141 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3142 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3143 | 3144 | uuid@^3.2.1, uuid@^3.3.2: 3145 | version "3.3.3" 3146 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" 3147 | integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== 3148 | 3149 | v8-compile-cache@^2.0.3: 3150 | version "2.1.0" 3151 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" 3152 | integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== 3153 | 3154 | varint@^5.0.0, varint@~5.0.0: 3155 | version "5.0.0" 3156 | resolved "https://registry.yarnpkg.com/varint/-/varint-5.0.0.tgz#d826b89f7490732fabc0c0ed693ed475dcb29ebf" 3157 | integrity sha1-2Ca4n3SQcy+rwMDtaT7Uddyynr8= 3158 | 3159 | verror@1.10.0: 3160 | version "1.10.0" 3161 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3162 | integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 3163 | dependencies: 3164 | assert-plus "^1.0.0" 3165 | core-util-is "1.0.2" 3166 | extsprintf "^1.2.0" 3167 | 3168 | wcwidth@^1.0.1: 3169 | version "1.0.1" 3170 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 3171 | integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= 3172 | dependencies: 3173 | defaults "^1.0.3" 3174 | 3175 | which-pm-runs@^1.0.0: 3176 | version "1.0.0" 3177 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 3178 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 3179 | 3180 | which@^1.2.14, which@^1.2.9: 3181 | version "1.3.1" 3182 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3183 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3184 | dependencies: 3185 | isexe "^2.0.0" 3186 | 3187 | wide-align@^1.1.0: 3188 | version "1.1.3" 3189 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3190 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 3191 | dependencies: 3192 | string-width "^1.0.2 || 2" 3193 | 3194 | wordwrap@~0.0.2: 3195 | version "0.0.3" 3196 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3197 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 3198 | 3199 | wordwrap@~1.0.0: 3200 | version "1.0.0" 3201 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3202 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 3203 | 3204 | wrappy@1: 3205 | version "1.0.2" 3206 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3207 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3208 | 3209 | write@1.0.3: 3210 | version "1.0.3" 3211 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 3212 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 3213 | dependencies: 3214 | mkdirp "^0.5.1" 3215 | 3216 | xtend@^4.0.0: 3217 | version "4.0.2" 3218 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3219 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 3220 | 3221 | yallist@^3.0.2: 3222 | version "3.0.3" 3223 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3224 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 3225 | 3226 | yaml@^1.5.1: 3227 | version "1.7.2" 3228 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" 3229 | integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw== 3230 | dependencies: 3231 | "@babel/runtime" "^7.6.3" 3232 | 3233 | yargs-parser@^12.0.0: 3234 | version "12.0.0" 3235 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-12.0.0.tgz#18aa348854747dfe1002d01bd87d65df10d40a84" 3236 | integrity sha512-WQM8GrbF5TKiACr7iE3I2ZBNC7qC9taKPMfjJaMD2LkOJQhIctASxKXdFAOPim/m47kgAQBVIaPlFjnRdkol7w== 3237 | dependencies: 3238 | camelcase "^5.0.0" 3239 | decamelize "^1.2.0" 3240 | --------------------------------------------------------------------------------